http://imfiles.com/downloadview-deta ... #dldetails
The problem I am having is that when lets say the user chooses the 10 seconds brake between each message, And when the program is in action and they decide to stop it it freezes.
lol dont know it got to do with some timer thing, like when the process start is hard to stop or some shit, dont know
so is there some thing i can put like between each message here is the code anyways for the 10 seconds message brake in a timer
- Code: Select all
If Check1.Value = 1 Then
Call RoomSend(RichTextBox1.TextRTF)
DoEvents
Sleep 10000
End If
If Check2.Value = 1 Then
Call RoomSend(RichTextBox2.TextRTF)
DoEvents
Sleep 10000
End If
If Check3.Value = 1 Then
Call RoomSend(RichTextBox3.TextRTF)
DoEvents
Sleep 10000
End If
If Check4.Value = 1 Then
Call RoomSend(RichTextBox4.TextRTF)
DoEvents
Sleep 10000
End If
If Check5.Value = 1 Then
Call RoomSend(RichTextBox5.TextRTF)
DoEvents
Sleep 10000
End If
Thanks




