zxc3 Posted July 6, 2005 Posted July 6, 2005 (edited) Why in function MsgBox (flag, "title", "text" [, timeout]) timeout> =1 seconds?Whether it is possible to make jobs of the program was not late on a seal of the message?The delay in job of the program is not necessary for me at delivery of the message. Has printed the message and at once performance of the following command without timeout. Edited July 6, 2005 by zxc3
Valuater Posted July 6, 2005 Posted July 6, 2005 please try to re-phrase this partWhether it is possible to make, that the message was printed at least without a second delay of job of the programin other words ask again but different, ok8)
GaryFrost Posted July 6, 2005 Posted July 6, 2005 Why in function MsgBox (flag, "title", "text" [, timeout]) timeout> =1 seconds?Whether it is possible to make, that the message was printed at least without a second delay of job of the program?<{POST_SNAPBACK}>timeout is optional, and it is the amount of time the msgbox will be displayed before it closes automatically, for example:MsgBox(0,"test","this is a test",10)will display the message box for 10 seconds then close without the user having to hit ok. SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Valuater Posted July 6, 2005 Posted July 6, 2005 @ gafrost I knew you are sharp.... but, I didn't understand that question glad you did 8)
zxc3 Posted July 6, 2005 Author Posted July 6, 2005 @ gafrostI knew you are sharp.... but, I didn't understand that questionglad you did8)<{POST_SNAPBACK}>Excuse me for my English -The delay in job of the program is not necessary for me at delivery of the message.
blindwig Posted July 6, 2005 Posted July 6, 2005 Excuse me for my English -The delay in job of the program is not necessary for me at delivery of the message.<{POST_SNAPBACK}>The MsgBox will delay the program until the window is closed. There is no way to keep running the program in the background. If you want to have a message box up while the program runs, I think you're going to need to make your own MsgBox-style GUI display. My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
Valuater Posted July 6, 2005 Posted July 6, 2005 (edited) ok, i think, i understand the message box WILL "Stop" the program to deliver the message others will NOT "Stop" the program to deliver the message 1 tooltip 2 trayTip 2 SplashOn 4 GuiCtrlCreateLabel You need to read about these "4" in help If you display your "script" here, i can read it and help you 8) Edited July 6, 2005 by Valuater
zxc3 Posted July 6, 2005 Author Posted July 6, 2005 The MsgBox will delay the program until the window is closed. There is no way to keep running the program in the background. If you want to have a message box up while the program runs, I think you're going to need to make your own MsgBox-style GUI display.<{POST_SNAPBACK}>I have already understood it, but how it to make?
LxP Posted July 6, 2005 Posted July 6, 2005 I have already understood it, but how it to make?Perhaps Valuater's suggestion to search for SplashTextOn() in the help file was too small for you to notice. (Valuater, can't you see that we are meant to use size 14 text in this thread?) Regards,Alex Peters
blindwig Posted July 6, 2005 Posted July 6, 2005 others will NOT "Stop" the program to deliver the message1 tooltip2 trayTip2 SplashOn4 GuiCtrlCreateLabel<{POST_SNAPBACK}>ProgressOn() is another good one to use - it gives you a progress bar so you can show the user how far along your program is, if that is your intent. My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now