wait window

  • Thread starter Thread starter Agnes
  • Start date Start date
A

Agnes

As the user click 'save' , i want to show a little prompt' Record is saved"
(for 1-2 secs) , then it will closed automically,
In my previous vfp application, there is a function "wait window" .
In .net, is there any similar features ?
Thanks
From AGnes
 
Create a form ( Dialog Size ) and a label on it. Drag a timer to the form
and double click to create the tick event. In which you put Me.Close()

from the calling code


Dim f as New MyDialogBoxForm

f.showDialog()


Thats it !

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing
 
* "Agnes said:
As the user click 'save' , i want to show a little prompt' Record is saved"
(for 1-2 secs) , then it will closed automically,
In my previous vfp application, there is a function "wait window" .
In .net, is there any similar features ?

There is no such feature. You will have to write the wait dialog
yourself.
 
There is no such feature. You will have to write the wait dialog
yourself.
Agnes when you want to see how, you can look at the message that OHM sand 3
hours before in this thread.

:-)

Cor
 
* "Cor Ligthert said:
Agnes when you want to see how, you can look at the message that OHM sand 3
hours before in this thread.

I assume that Agnes is able to read both messages herself/himself.

:-)
 
I assume that Agnes is able to read both messages herself/himself.

:-)
I assume that Agnes is even able to read one. Because the first one was more
complete in my opinion. Maybe we get a second opinion from Terry,

:-)

Cor
 
Mine works

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing
 
Terry,

I had assumed something more, the ball was before the goal the only thing
you needed to do was kick.

:-)

Cor
 
My kicking foot is tired, so is my head. I'm out of contract again now, but
I hope to get something soon.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing
 
Cor,

* "Cor Ligthert said:
I assume that Agnes is even able to read one. Because the first one was more
complete in my opinion. Maybe we get a second opinion from Terry,

Terry posted a working solution, but he did not say anything about the
initial question. So, the intention for posting my message was to
provide a more complete answer together with Terry's reply.
 
Herfried,
Terry posted a working solution, but he did not say anything about the
initial question. So, the intention for posting my message was to
provide a more complete answer together with Terry's reply.

When there was a working solution than Terry would have told.

However do not take it to hard, it was only meant to let me and Terry play a
little bit with you, however he is not in the mood now he says.

I assume you knew that already.

:-)

Cor
 
i am sorry that It seems fail... the little form didn't close by itself
I had already set the timinterval in "2" .
 
:-)

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me

Time flies when you don't know what you're doing
 
Herfried K. Wagner said:
There is no such feature. You will have to write the wait dialog
yourself.

Can't you just display the box, turn a timer on and in it's tick event close
the box and disable the timer?
 
Back
Top