wait window

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
 
O

One Handed Man \( OHM - Terry Burns \)

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
 
H

Herfried K. Wagner [MVP]

* "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.
 
C

Cor Ligthert

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
 
H

Herfried K. Wagner [MVP]

* "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.

:)
 
C

Cor Ligthert

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
 
O

One Handed Man \( OHM - Terry Burns \)

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
 
C

Cor Ligthert

Terry,

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

:)

Cor
 
O

One Handed Man \( OHM - Terry Burns \)

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
 
H

Herfried K. Wagner [MVP]

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.
 
C

Cor Ligthert

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
 
A

Agnes

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

One Handed Man \( OHM - Terry Burns \)

:)

--

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

Time flies when you don't know what you're doing
 
R

Ricky W. Hunt

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top