vb6 Help
Started by
TwiztidNinja
, Jun 13 2005 11:25 AM
#1
Posted 13 June 2005 - 11:25 AM
#2
Posted 13 June 2005 - 12:54 PM
you could get it to sleep look on google 4 this
#3
Posted 13 June 2005 - 12:57 PM
i did look on google but sleep is jsut for an amount of time i want it to be like once the input is enterewd it comes back to life
#4
Posted 13 June 2005 - 03:27 PM
anyone :-(
#5
Posted 14 June 2005 - 02:01 PM
I don't know if its the same for VB but in C++ to pause a program so that it doesn't come up and disappear again you use:
system("PAUSE");
Probably won't help since VB and C++ are two completely different languages...
Anyway, good luck and happy surfin!
- Maverick
system("PAUSE");
Probably won't help since VB and C++ are two completely different languages...
Anyway, good luck and happy surfin!
- Maverick
#6
Posted 14 June 2005 - 04:23 PM
MaverickSidewinder... unfortunatley that code doesn't work in VB, they are two different languages.
TwiztidNinja... I'm confused on what you want. So you're opening another form (form.Show), and want the main form to stop executing code? Couldn't you just hide it? (me.hide)
TwiztidNinja... I'm confused on what you want. So you're opening another form (form.Show), and want the main form to stop executing code? Couldn't you just hide it? (me.hide)
#7
Posted 14 June 2005 - 06:14 PM
Thought so....
Im useless....
Useless but happy
- Maverick
Im useless....
Useless but happy
- Maverick
#8
Posted 14 June 2005 - 07:35 PM
no because i want it top finish executing the code when im done with the new form
Bu]nch of code
stop here until done with new form
Continue here when done with new form
Bunch of code
Bu]nch of code
stop here until done with new form
Continue here when done with new form
Bunch of code
#9
Posted 15 June 2005 - 08:21 AM
I found a solution to this without pausing the code ill just brake it up amoungs the forums and save the data in text files
#10
Posted 08 July 2005 - 03:28 PM
Open the new form as Application modal. Even if you are in a loop the loop will stop when the new form appears. Then when the new form is closed code resumes on the first line AFTER the call to show window.
#11
Posted 09 July 2005 - 08:49 AM
if you are talking of visual basic 6:
assuming you have the cmdOK button, when click event is activated this codes will be useful:
Private Sub cmdOk_Click()
' This will show the next form
form2.show
' This will disable the previous form thus pausing any running operations
form1.enable = false
End Sub
Supposed at form2 you had again another cmdClose button, click event is activated
Private Sub cmdClose_Click()
' This will hide form2
form2.hide
' This will show the next form
form1.show
' This will disable the previous form thus pausing any running operations
form1.enable = true
End Sub
assuming you have the cmdOK button, when click event is activated this codes will be useful:
Private Sub cmdOk_Click()
' This will show the next form
form2.show
' This will disable the previous form thus pausing any running operations
form1.enable = false
End Sub
Supposed at form2 you had again another cmdClose button, click event is activated
Private Sub cmdClose_Click()
' This will hide form2
form2.hide
' This will show the next form
form1.show
' This will disable the previous form thus pausing any running operations
form1.enable = true
End Sub
Edited by kool808, 09 July 2005 - 08:50 AM.
#12
Posted 11 July 2005 - 09:12 PM
hello, i need help in vb6 and i dunno where to go for help.
im doing a small crm application for my company. how many users are able to access to the system or application at the same time? is 20 users able to access to the system at the same time, where the db is kept in the server.
if no one can help me here..at least tell me where i can go to get the answer..plz..
thank you very much
im doing a small crm application for my company. how many users are able to access to the system or application at the same time? is 20 users able to access to the system at the same time, where the db is kept in the server.
if no one can help me here..at least tell me where i can go to get the answer..plz..
thank you very much
#13
Posted 12 July 2005 - 07:46 PM
ermm..sorry for interruption as in i just post a question here..sorry
Similar Topics
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users