CALCULO
Pessoal, tenho Chr(61) e gostaria de coloca-lo 100 vezes na tela, como vazer esse calculo?
Tentei Chr(61) * 100, mas não é isso.
Tentei Chr(61) * 100, mas não é isso.
você ira precisar fazer um LOOP pode ser assim
Espero ter ajudado
private Function Print_Char61() as string
Dim sStr as String
Dim i as Integer
sStr = [Ô][Ô]
For i = 1 to 100
sStr = sStr & Chr$(61)
Next
Print_Char61 = sStr
End Function
[ô]Para Chamar a funcção faça o seguinte
msgbox Print_Char61()
[ô]ou
txtChr61.Text = Print_Char61()
Espero ter ajudado
assim é melhor
Private Function Print_Char61() As String
Dim sStr As String
sStr = [Ô][Ô]
sStr = String(100, Chr$(61))
Print_Char61 = sStr
End Function
Isso mesmo amigos!
Grato pela dica.
Grato pela dica.
Tópico encerrado , respostas não são mais permitidas