http://windevdesenvolvimento.blogspot.com.br/2015/03/windev-repeatstring-function-repeticoes.html
Dat_hora_solici is string = 20150304154034
Q is int = 17 - Length(Dat_hora_solici)
Info("Q =>"+Q)
Info("Q =>"+Dat_hora_solici)
Dat_hora_solici = Dat_hora_solici + RepeatString("0", Q)
Info("Q =>"+Dat_hora_solici)
res is string
res = RepeatString("x", 4)
Info(" X , 4" + res)
res = RepeatString("EU", 5)
Info(" EU , 5" + res)
res = RepeatString("ZERO", 2)
Info(" ZERO ,2" + res)
res = RepeatString("UM", 0)
Info(" UM , 0" + res)