|
Asp/VB Script Source Codes
working with progress bar
declaration part:
dim i as integer = 0
dim j as integer = 0
click install button event:
timer1.enabled = true
label2.visible = true
tick event:
progressbar1.value = i
label2.text = " time remaining: " + cst(50-j) + "seconds"
i=i+2
j=j+1
if i>100 then
end
end if
click event of cancel button:
end
<<<----- Return to
Asp/VB Script Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Microsoft .Net Interview Questions
for more Microsoft
.Net Interview Questions with Answers.
Check
.Net Database Interview
Questions for more .Net Database Interview Questions with answers
Check
Job Interview Questions
for more Interview Questions with Answers
|