DataForm Pause

  • Thread starter Thread starter Nitromuse
  • Start date Start date
N

Nitromuse

After showing a DataForm how do you pause the code from
continuing to run until the user clicks a button after
all the data has been entered ?
Thank you for your help!!
 
Nitromuse said:
After showing a DataForm how do you pause the code from
continuing to run until the user clicks a button after
all the data has been entered ?
Thank you for your help!!

DataForm.Showdialog?
 
* "Nitromuse said:
After showing a DataForm how do you pause the code from
continuing to run until the user clicks a button after
all the data has been entered ?

Disable the controls and check if all data is entered if the user enters
some data (that's a bad idea, I know, but I don't understand what's your
problem).
 
Hi Nitromuse,

When you look in the task manager you wil see that it is not really running.

Messages are send in your computer from your screen to the parts from your
program where you have the input.

When the user pushes a button on which you have placed an event (or
something else that throws an event) that part of your program does the
procedures that it has to do and stops again.

Only when you do something as
do until 1=2
loop

Then your program is constantly running (and if you do not something between
that blocked)

I hope this helps?

Cor
 
Back
Top