Click here to Skip to main content
15,885,546 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Timer problem with windows service Pin
Dave Kreskowiak8-Oct-08 2:09
mveDave Kreskowiak8-Oct-08 2:09 
GeneralRe: Timer problem with windows service Pin
Ma tju8-Oct-08 18:48
Ma tju8-Oct-08 18:48 
QuestionHow to get the value of dropdown list Pin
meki_21187-Oct-08 20:26
meki_21187-Oct-08 20:26 
AnswerRe: How to get the value of dropdown list Pin
nishkarsh_k8-Oct-08 0:19
nishkarsh_k8-Oct-08 0:19 
GeneralRe: How to get the value of dropdown list Pin
meki_21188-Oct-08 15:29
meki_21188-Oct-08 15:29 
GeneralRe: How to get the value of dropdown list Pin
nishkarsh_k10-Oct-08 22:11
nishkarsh_k10-Oct-08 22:11 
QuestionHow to use Timer control Pin
Johndas7-Oct-08 19:46
Johndas7-Oct-08 19:46 
AnswerRe: How to use Timer control Pin
Rupesh Kumar Swami7-Oct-08 20:05
Rupesh Kumar Swami7-Oct-08 20:05 
on button click event enable the timer and set it interval properties. Also set it tick event accordingly

for example if you set interval properties to 1000 then set a global variable like

dim i as integer
and on tick event of timer

private sub timer1_tick()

if i=5 then
label1.visible=false
timer1.enabled=false
else
i=i +5
endif
end sub

hope this helps

Rupesh Kumar Swami
Software Developer,
Integrated Solution,
Bikaner (India)

My Company
Award: Best VB.NET article of June 2008: Create Column Charts Using OWC11

GeneralRe: How to use Timer control Pin
Johndas7-Oct-08 20:31
Johndas7-Oct-08 20:31 
Questioni need to make a sha512 Pin
moonshaddow7-Oct-08 18:26
moonshaddow7-Oct-08 18:26 
AnswerRe: i need to make a sha512 Pin
Dave Kreskowiak7-Oct-08 18:44
mveDave Kreskowiak7-Oct-08 18:44 
QuestionRe: i need to make a sha512 Pin
moonshaddow7-Oct-08 19:27
moonshaddow7-Oct-08 19:27 
AnswerRe: i need to make a sha512 Pin
Ashfield7-Oct-08 21:51
Ashfield7-Oct-08 21:51 
AnswerRe: i need to make a sha512 Pin
Dave Kreskowiak8-Oct-08 2:06
mveDave Kreskowiak8-Oct-08 2:06 
AnswerRe: i need to make a sha512 Pin
Mark Churchill8-Oct-08 17:04
Mark Churchill8-Oct-08 17:04 
AnswerRe: i need to make a sha512 Pin
Colin Angus Mackay8-Oct-08 2:12
Colin Angus Mackay8-Oct-08 2:12 
AnswerRe: i need to make a sha512 Pin
jzonthemtn8-Oct-08 3:09
jzonthemtn8-Oct-08 3:09 
AnswerRe: i need to make a sha512 Pin
moonshaddow8-Oct-08 12:52
moonshaddow8-Oct-08 12:52 
Question[Message Deleted] Pin
vTeng Lee7-Oct-08 16:56
vTeng Lee7-Oct-08 16:56 
AnswerRe: Where Can I Download A Visual Basic.NET(VB.NET) Multilayer Feedforward Neural Network With Backpropagation Algorithm Pin
Dave Kreskowiak7-Oct-08 18:47
mveDave Kreskowiak7-Oct-08 18:47 
QuestionCreating An IDE... How Difficult Is It? Pin
Saul Johnson7-Oct-08 9:20
Saul Johnson7-Oct-08 9:20 
AnswerRe: Creating An IDE... How Difficult Is It? Pin
Wendelius7-Oct-08 9:51
mentorWendelius7-Oct-08 9:51 
GeneralRe: Creating An IDE... How Difficult Is It? Pin
Saul Johnson8-Oct-08 5:32
Saul Johnson8-Oct-08 5:32 
GeneralRe: Creating An IDE... How Difficult Is It? Pin
Wendelius8-Oct-08 7:00
mentorWendelius8-Oct-08 7:00 
QuestionRe: Creating An IDE... How Difficult Is It? Pin
jzonthemtn8-Oct-08 3:11
jzonthemtn8-Oct-08 3:11 

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.