Click here to Skip to main content
15,886,873 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralThread Problem Pin
Sumit Domyan8-Nov-04 18:14
Sumit Domyan8-Nov-04 18:14 
GeneralRe: Thread Problem Pin
Fade (Amit BS)10-Nov-04 16:31
Fade (Amit BS)10-Nov-04 16:31 
GeneralRe: Thread Problem Pin
Sumit Domyan10-Nov-04 18:10
Sumit Domyan10-Nov-04 18:10 
GeneralRe: Thread Problem Pin
Fade (Amit BS)13-Nov-04 22:30
Fade (Amit BS)13-Nov-04 22:30 
GeneralCapture an HTML document as an image Pin
ddd ssss8-Nov-04 17:52
ddd ssss8-Nov-04 17:52 
GeneralDisplay non duplicate data in combobox Pin
CelesterMok8-Nov-04 15:22
CelesterMok8-Nov-04 15:22 
GeneralQuestions Pin
Tech 4 a dummy8-Nov-04 14:57
Tech 4 a dummy8-Nov-04 14:57 
GeneralRe: Questions Pin
Tom John9-Nov-04 3:08
Tom John9-Nov-04 3:08 
Place a timer and a label on a form. Set the timer interval to 10,000 and enabled to true. Then add the following event handler:

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

Static counter As Integer = 20

If counter > 10 Then
counter -= 10
If counter = 10 Then Timer1.Interval = 1000
Label1.Text = counter.ToString
ElseIf counter > 1 Then
counter -= 1
Label1.Text = counter.ToString
Else
Label1.Text = "Blast Off!"
Timer1.Enabled = False
End If

End Sub

Hope this helps

Tom
GeneralRe: Questions Pin
Tech 4 a dummy9-Nov-04 13:44
Tech 4 a dummy9-Nov-04 13:44 
GeneralRe: Questions Pin
Tom John9-Nov-04 22:25
Tom John9-Nov-04 22:25 
GeneralToolbar button images not being diplayed Pin
Verolix8-Nov-04 13:16
Verolix8-Nov-04 13:16 
GeneralDisabling combobox items... Pin
Tim8w8-Nov-04 12:28
Tim8w8-Nov-04 12:28 
GeneralRe: Disabling combobox items... Pin
Dave Kreskowiak8-Nov-04 17:53
mveDave Kreskowiak8-Nov-04 17:53 
GeneralRe: Disabling combobox items... Pin
Tom John9-Nov-04 7:36
Tom John9-Nov-04 7:36 
GeneralVery simple question Pin
Boniolopez8-Nov-04 12:15
Boniolopez8-Nov-04 12:15 
GeneralRe: Very simple question Pin
beowulfagate8-Nov-04 13:17
beowulfagate8-Nov-04 13:17 
GeneralRe: Very simple question Pin
axiomillies14-Nov-04 19:16
axiomillies14-Nov-04 19:16 
GeneralConvert Sprite Sheets to Animations Pin
maykut20998-Nov-04 12:05
maykut20998-Nov-04 12:05 
GeneralForm.ShowDialog() problem Pin
genosis8-Nov-04 7:39
genosis8-Nov-04 7:39 
GeneralRe: Form.ShowDialog() problem Pin
CodeWell17-Nov-04 20:56
CodeWell17-Nov-04 20:56 
GeneralRe: Form.ShowDialog() problem Pin
genosis18-Nov-04 5:07
genosis18-Nov-04 5:07 
GeneralRe: Form.ShowDialog() problem Pin
CodeWell18-Nov-04 13:17
CodeWell18-Nov-04 13:17 
GeneralVB.NET from XP SP2 to Win2k Pin
StrayGrey8-Nov-04 6:35
StrayGrey8-Nov-04 6:35 
GeneralUrgent Help Needed Vb.Net ReportViewer Pin
partt8-Nov-04 6:09
partt8-Nov-04 6:09 
GeneralJoin Team FreeSoft. Join the team! Pin
Mickiecp8-Nov-04 5:58
Mickiecp8-Nov-04 5:58 

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.