putting marquee in vb.net

The solution for “putting marquee in vb.net” can be found here. The following code will assist you in solving the problem.

‘Class-level variables.
Private m_intMarqueeCounter As Integer = 1
Private m_bolMarqueeIncrementUp As Boolean = True

Private Sub YourMarqueeTimer_Tick()

‘You can decide what number is best for your app.
If m_intMarqueeCounter = 10 Then

m_bolMarqueeIncrementUp = False

End If

If m_intMarqueeCounter = 0 Then

m_bolMarqueeIncrementUp = True

End If

Dim intX As Integer
For intX = 0 to m_intMarqueeCounter

frmYourForm.Text = ” ” & “Your Title”

Next

If m_bolMarqueeIncrementUp Then

m_intMarqueeCounter += 1

Else

m_intMarqueeCounter -= 1

End If

End Sub

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts