Hi, how can i write this code..
Trying to find an easy way to collect text from a lot of textboxes to one String Variabel
Best Regreds
Trying to find an easy way to collect text from a lot of textboxes to one String Variabel
VB.NET:
Dim Index as Integer = 1
Dim Clipboard as String = ""
Do Until Index = 39
Clipboard = Clipboard + Textbox(Index).text
Index = Index + 1
Loop
Msgbox (Clipborad)
Best Regreds