This group is pretty well targeting VB5 and VB6 ... you might want to try
one of these or some of the many other similarly-named groups devoted
exclusively to .net programming:
news://msnews.microsoft.com/microsof...dotnet.general news://msnews.microsoft.com/microsof...t.languages.vb news://msnews.microsoft.com/microsof....vsnet.general news://msnews.microsoft.com/microsof...studio.general news://msnews.microsoft.com/microsof....vstudio.setup
--
Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.
"curious" <EMAIL REMOVED> wrote in message
news:EMAIL REMOVED om...
:I am new to VB.NET and I need help in using timer control. Here is
: the scenario. I have 3 labels (label 1, label2, label 3), and a start
: button, all vertically aligned on the form.
:
: Using a timer control with interval value of 3000, i.e 3 second, I
: want to accomplish the following:
:
: - Initially, only START button is visible to the user, i.e the 3
: labels are set to be invisible.
: - When click on START button, the button disappear and label 3
: appears.
: - After 3 seconds, the label 3 disappear and label 2 appears.
: - After 3 seconds, the label 2 disappear and label 1 appears.
: - After 3 seconds, the label 1 disappear and the form closes.
:
: I am setting timer control's Enable property to "True" in Design
: time.
: I am setting timer control's Interval property value to 3000 in
: Design Time.
:
: I ***ume that I do all the coding in START button's click event,
: starting with making START button invisible when a user clicks it.
:
: Can anyone help me code what I want to accomplish?