Click here to Skip to main content
15,892,298 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Set Permission for a folder in network with vb.net Pin
Dave Kreskowiak4-Dec-06 2:56
mveDave Kreskowiak4-Dec-06 2:56 
QuestionProblem with date type variable or field Pin
pathak783-Dec-06 18:12
pathak783-Dec-06 18:12 
AnswerRe: Problem with date type variable or field Pin
MatrixCoder3-Dec-06 19:17
MatrixCoder3-Dec-06 19:17 
Question[Message Deleted] Pin
CHELA FE3-Dec-06 15:50
CHELA FE3-Dec-06 15:50 
AnswerRe: question??? Pin
Paul Conrad3-Dec-06 15:57
professionalPaul Conrad3-Dec-06 15:57 
AnswerRe: question??? Pin
CHELA FE3-Dec-06 16:32
CHELA FE3-Dec-06 16:32 
GeneralRe: question??? Pin
Christian Graus3-Dec-06 16:50
protectorChristian Graus3-Dec-06 16:50 
Questionloops? Pin
jady843-Dec-06 9:15
jady843-Dec-06 9:15 
Hi,
I want to show multiple forms at different times.
for example after say 10secs form1 pops up, then after say 25 secs form2 pop ups.
I'm using the timer function to help me, however I think i may need a certain type of loop embedded within a loop. the code below currently shows both forms at once.

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If numberofcalls = 0 Then
Dim popup As New Alternative1
popup.Show()
numberofcalls = 1
Timer1.Interval = 25000
End If

If numberofcalls = 1 Then
Dim popup2 As New Alternative2
popup2.Show()
numberofcalls = 2
Timer1.Interval = 30000
End If

thanks in advance.
GeneralRe: loops? Pin
Guffa3-Dec-06 11:43
Guffa3-Dec-06 11:43 
GeneralRe: loops? Pin
jady843-Dec-06 12:22
jady843-Dec-06 12:22 
GeneralRe: loops? Pin
Christian Graus3-Dec-06 14:22
protectorChristian Graus3-Dec-06 14:22 
AnswerRe: loops? Pin
MatrixCoder3-Dec-06 13:09
MatrixCoder3-Dec-06 13:09 
AnswerRe: loops? Pin
Taylor Kobani4-Dec-06 23:54
Taylor Kobani4-Dec-06 23:54 
Questiontimer Pin
bapu28893-Dec-06 7:30
bapu28893-Dec-06 7:30 
AnswerRe: timer Pin
Guffa3-Dec-06 8:48
Guffa3-Dec-06 8:48 
QuestionRe: timer Pin
bapu28894-Dec-06 8:20
bapu28894-Dec-06 8:20 
AnswerRe: timer Pin
Dave Kreskowiak3-Dec-06 12:13
mveDave Kreskowiak3-Dec-06 12:13 
QuestionRegarding Crystal report Pin
Rmesh3-Dec-06 3:59
Rmesh3-Dec-06 3:59 
AnswerRe: Regarding Crystal report Pin
pathak783-Dec-06 18:31
pathak783-Dec-06 18:31 
GeneralRe: Regarding Crystal report Pin
Rmesh4-Dec-06 0:43
Rmesh4-Dec-06 0:43 
NewsCan't find ComponentModel.Design.MultilineStringEditor Pin
Malhavoc3-Dec-06 2:45
Malhavoc3-Dec-06 2:45 
GeneralRe: Can't find ComponentModel.Design.MultilineStringEditor Pin
visualhint4-Dec-06 2:18
visualhint4-Dec-06 2:18 
GeneralRe: Can't find ComponentModel.Design.MultilineStringEditor Pin
Malhavoc4-Dec-06 2:30
Malhavoc4-Dec-06 2:30 
Questionsql statement Pin
obarahmeh2-Dec-06 23:45
obarahmeh2-Dec-06 23:45 
AnswerRe: sql statement Pin
Tamimi - Code2-Dec-06 23:57
Tamimi - Code2-Dec-06 23:57 

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.