473,513 Members | 8,991 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

wait window

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
Nov 21 '05 #1
15 2559
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" <ag***@dynamictech.com.hk> wrote in message
news:eo**************@TK2MSFTNGP10.phx.gbl...
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

Nov 21 '05 #2
* "Agnes" <ag***@dynamictech.com.hk> scripsit:
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.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #3
>
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
Nov 21 '05 #4
* "Cor Ligthert" <no**********@planet.nl> scripsit:
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.


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

:-)

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #5
>
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
Nov 21 '05 #6
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

"Cor Ligthert" <no**********@planet.nl> wrote in message
news:OH**************@tk2msftngp13.phx.gbl...

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

Nov 21 '05 #7
Terry,

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

:-)

Cor
Nov 21 '05 #8
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 Ligthert" <no**********@planet.nl> wrote in message
news:el**************@TK2MSFTNGP09.phx.gbl...
Terry,

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

:-)

Cor

Nov 21 '05 #9
Cor,

* "Cor Ligthert" <no**********@planet.nl> scripsit:
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,


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.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #10
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
Nov 21 '05 #11
> I'm out of contract again now, but
I hope to get something soon.


I got the idea already, a lot of success of course.

Cor
Nov 21 '05 #12
i am sorry that It seems fail... the little form didn't close by itself
I had already set the timinterval in "2" .
"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> ¦b¶l¥ó
news:%2***************@TK2MSFTNGP10.phx.gbl ¤¤¼¶¼g...
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" <ag***@dynamictech.com.hk> wrote in message
news:eo**************@TK2MSFTNGP10.phx.gbl...
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


Nov 21 '05 #13
I am so stupid that I forgot to set the timer 's enabled = true
-_-
Thanks OHM

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> ¦b¶l¥ó
news:%2***************@TK2MSFTNGP10.phx.gbl ¤¤¼¶¼g...
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" <ag***@dynamictech.com.hk> wrote in message
news:eo**************@TK2MSFTNGP10.phx.gbl...
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


Nov 21 '05 #14
:-)

--

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" <ag***@dynamictech.com.hk> wrote in message
news:%2***************@tk2msftngp13.phx.gbl...
I am so stupid that I forgot to set the timer 's enabled = true
-_-
Thanks OHM

"One Handed Man ( OHM - Terry Burns )" <news.microsoft.com> ¦b¶l¥ó
news:%2***************@TK2MSFTNGP10.phx.gbl ¤¤¼¶¼g...
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" <ag***@dynamictech.com.hk> wrote in message
news:eo**************@TK2MSFTNGP10.phx.gbl...
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



Nov 21 '05 #15
"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:ex*************@tk2msftngp13.phx.gbl...
* "Agnes" <ag***@dynamictech.com.hk> scripsit:
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.


Can't you just display the box, turn a timer on and in it's tick event close
the box and disable the timer?
Nov 21 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
12874
by: GTi | last post by:
Hello... I have a page located in a frame. This page contains a form. When the user submit this form I want to popup a "Please Wait" window popup window The post may take some time for the...
3
13456
by: Kannan | last post by:
Hello, I have a requirement that specifies that I display a "Please Wait..." window (preferably modal) along with a gif that mimics a progress bar during a save operation. The dialog needs to be...
4
4897
by: Aaron Fude | last post by:
Hi, I have report that takes about 5-10 seconds to generate depending on the load. I want to show the user a progress bar while it is being generated and when it's done, forward the browser to...
3
4614
by: John Dalberg | last post by:
Hi I have a form that opens a new window for the results. Because the results might take a few seconds due to server processing, I would like to display a message "please wait" in the new...
4
9492
by: coolsti | last post by:
I am aware of the setInterval and setTimeout functions for Javascript, but I can't seem to find an example that lets me do what I need to. I have a script that needs to wait until a certain...
5
2530
by: Donius | last post by:
I am making some popup windows, and then trying to load content into them. It can be as few as two windows, and as many as 15 or so. I'm running into a problem where firefox cannot find the...
9
3323
by: John Walker | last post by:
Hi, I have a datagrid with a radiobutton template column, with AutoPostBack set to TRUE. When the user clicks on a radiobutton the application will PostBack, and in the PostBack there will be...
0
1698
by: NvrBst | last post by:
I want to send a bunch of keys to an external window using PostMessage. I send a "KEYDOWN" message (then have to wait for the program to produce the CHAR message) then send the "KEYUP" message. ...
4
11075
by: Eddie | last post by:
I am opening a windows (well, technically a greybox() call GB_show() which shows a nicer window than normal), and want to wait until that window is closed before moving to the next command. ...
40
29301
by: =?Utf-8?B?Um9iZXJ0IEUuIEZsYWhlcnR5?= | last post by:
What is the C# command to wait for a specified period of time? I am writing a windows service that will process a file once it has beed created or changed. I'm using the fileSystemWatcher to...
0
7254
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7153
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7373
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
7094
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7519
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
5079
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3218
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1585
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
452
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.