Forum: Visual Basic 4 / 5 / 6 Aug 28th, 2008 |
| Replies: 28 Views: 5,967 'Posi ' variable is used to track as when to move to the next line to print the body or arms or legs of the hangman.
when 'Posi' is 2 (i.e) when 2nd wrong guess is made, the '|' character must go... |
Forum: Visual Basic 4 / 5 / 6 Aug 26th, 2008 |
| Replies: 28 Views: 5,967 UCASE Converts the given string to uppercase.
Ex
Dim x as string
x = "America"
text1.text = UCase(x)
here text1 will display the word in variable x but in upper case "AMERICA" |
Forum: Visual Basic 4 / 5 / 6 Aug 24th, 2008 |
| Replies: 2 Views: 1,485 Try this code
Dim Fso As New FileSystemObject
Dim Fl As TextStream
Dim fName as String
fName = App.Path & "\" & "MyFile.txt" |
Forum: Visual Basic 4 / 5 / 6 Aug 13th, 2008 |
| Replies: 27 Views: 3,362 |