Hello,
I made a programm which print value 1 to 10 by for loop on form it is printing vertically is there a way to print horizontlly
best regards
Printable View
Hello,
I made a programm which print value 1 to 10 by for loop on form it is printing vertically is there a way to print horizontlly
best regards
Sure, seperate it with semi-colons:
VB Code:
Dim i As Integer For i = 1 To 10 Print i; Next