Click here to Skip to main content
15,909,898 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: datagridview in vb.net Pin
priya_p23315-Jan-07 0:54
priya_p23315-Jan-07 0:54 
QuestionRe: datagridview in vb.net Pin
priya_p23315-Jan-07 1:04
priya_p23315-Jan-07 1:04 
AnswerRe: datagridview in vb.net [modified] Pin
amaneet15-Jan-07 1:10
amaneet15-Jan-07 1:10 
QuestionRe: datagridview in vb.net Pin
priya_p23315-Jan-07 1:35
priya_p23315-Jan-07 1:35 
AnswerRe: datagridview in vb.net Pin
amaneet15-Jan-07 17:41
amaneet15-Jan-07 17:41 
GeneralRe: datagridview in vb.net Pin
priya_p23315-Jan-07 18:45
priya_p23315-Jan-07 18:45 
Questionquestion on Statusbar ToolStripStatusLabel Animation Pin
priya_p23314-Jan-07 20:05
priya_p23314-Jan-07 20:05 
AnswerRe: question on Statusbar ToolStripStatusLabel Animation Pin
nlarson1115-Jan-07 6:22
nlarson1115-Jan-07 6:22 
might not be the best way to do it, but this is one way:

Imports System.Timers

Public Class Form1

Private Delegate Sub ScrollText()

Private moTimer As Timer
Private moDelegate As ScrollText = New ScrollText(AddressOf MoveIt)

Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
moTimer.Stop()
moTimer.Dispose()
moTimer = Nothing
End Sub


Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.Text = "this is a test of the scrolling feature. "

moTimer = New Timer(500)
moTimer.AutoReset = True
AddHandler moTimer.Elapsed, AddressOf Timer_Event
moTimer.Start()

End Sub

Private Sub MoveIt()
Me.Text = Mid(Me.Text, 2, Me.Text.Length) & Mid(Me.Text, 1, 1)
End Sub

Private Sub Timer_Event(ByVal sende As Object, ByVal e As System.Timers.ElapsedEventArgs)

Me.Invoke(moDelegate)
End Sub

End Class

QuestionZip and Unzip Pin
fmlove14-Jan-07 20:01
fmlove14-Jan-07 20:01 
AnswerRe: Zip and Unzip Pin
xingla14-Jan-07 20:43
xingla14-Jan-07 20:43 
QuestionDifference between Leave and LostFocus events of textbox in vb.net? Pin
Khushvadan14-Jan-07 20:00
Khushvadan14-Jan-07 20:00 
AnswerRe: Difference between Leave and LostFocus events of textbox in vb.net? Pin
Navneet Hegde14-Jan-07 23:08
Navneet Hegde14-Jan-07 23:08 
QuestionTV Tuner Pin
densti14-Jan-07 19:50
densti14-Jan-07 19:50 
QuestionResource file Pin
nitin_ion14-Jan-07 19:41
nitin_ion14-Jan-07 19:41 
QuestionDETECT LAST PAGE WHEN PRINT..PLS HELP Pin
vbbeg14-Jan-07 19:30
vbbeg14-Jan-07 19:30 
AnswerRe: Msg for DAVE KRESKOWIAK Pin
Colin Angus Mackay14-Jan-07 22:32
Colin Angus Mackay14-Jan-07 22:32 
GeneralRe: Msg for DAVE KRESKOWIAK Pin
Colin Angus Mackay15-Jan-07 1:39
Colin Angus Mackay15-Jan-07 1:39 
QuestionTry-Catch blocks? Pin
Rahithi14-Jan-07 16:48
Rahithi14-Jan-07 16:48 
AnswerRe: Try-Catch blocks? Pin
Christian Graus14-Jan-07 18:21
protectorChristian Graus14-Jan-07 18:21 
AnswerRe: Try-Catch blocks? Pin
The ANZAC14-Jan-07 19:30
The ANZAC14-Jan-07 19:30 
AnswerRe: Try-Catch blocks? Pin
vengaqua14-Jan-07 21:19
vengaqua14-Jan-07 21:19 
AnswerRe: Try-Catch blocks? Pin
roo42615-Jan-07 1:50
roo42615-Jan-07 1:50 
AnswerRe: Try-Catch blocks? Pin
Rahithi15-Jan-07 17:11
Rahithi15-Jan-07 17:11 
QuestionConnecting to Access Database on remote server Pin
fatali814-Jan-07 12:03
fatali814-Jan-07 12:03 
AnswerRe: Connecting to Access Database on remote server Pin
Dave Kreskowiak14-Jan-07 13:10
mveDave Kreskowiak14-Jan-07 13:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.