Can i display the text scrolling in bottom of my form in vb.net. if can then plz anyone suggest me how to do. i want to display some texts scrolling at the bottom of my form when i load it. how can i do it in vb.net
jagdish.ind 0 Newbie Poster
Recommended Answers
Jump to Postuse timer and label.
try this following code :Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick lbl1.Text = Microsoft.VisualBasic.Right _ (lbl1.Text, 1) & Microsoft.VisualBasic.Left _ (lbl1.Text, Len(lbl1.Text) - 1) End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles …
Jump to PostDock your label to the bottom of the form.
All 6 Replies
Jx_Man 987 Nearly a Senior Poster Featured Poster
jagdish.ind 0 Newbie Poster
waynespangler 63 Posting Pro in Training
Jx_Man 987 Nearly a Senior Poster Featured Poster
jagdish.ind 0 Newbie Poster
bector -3 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.