Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.lang.visual.basic    |    MS Visual Basic discussions, NOT dot-net    |    10,840 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 9,810 of 10,840    |
|    George Bashore to Roy Harbert    |
|    Re: Rotating text    |
|    30 Dec 05 08:59:37    |
      From: gbashore@bcpl.net              Roy try this with a textbox multiline = True and a command button.              Option Explicit              Private Sub Command1_Click()       Dim myStr As String       Dim myStrLen As Long       Dim myLoop As Long       Dim myEndStr As String       myStr = Text1.Text       myStrLen = Len(myStr)       For myLoop = 1 To myStrLen       myEndStr = myEndStr & (Mid$(myStr, myLoop, 1) & vbNewLine)       Next myLoop       Text1.Text = myEndStr       Command1.Visible = False       End Sub              Private Sub Form_Load()       Text1.Text = "HELLO WORLD"       End Sub              George                            "Roy Harbert" |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca