I would appreciate some help with this code...I am trying to write a program that accepts four words as input from input boxes, then displays those words in the opposite order ie starting with the last one that was input and finishing with the first.
Here is what I have come up with so far...
Dim strInput As String
Dim intCount As Integer
For intCount = 1 To 4
strInput = InputBox("Enter word: " & CStr(intCount))
ListBox.Items.Add(strInput)
Next intCount

New Topic/Question
Reply



MultiQuote



|