cyseng10
May 15th, 2001, 11:33 PM
is there any code for hide a message box.
example,
message ("asdd");
how to hide this message
Regards,
Wilson Chai
example,
message ("asdd");
how to hide this message
Regards,
Wilson Chai
|
Click to See Complete Forum and Search --> : Hide cyseng10 May 15th, 2001, 11:33 PM is there any code for hide a message box. example, message ("asdd"); how to hide this message Regards, Wilson Chai Iouri May 16th, 2001, 07:08 AM You cannot hide the message box. You can make it disappear automatically. 'add reference to Windows Scripting host Object model Dim wshShell As New IWshShell_Class Dim lngReturn As Long Dim intSeconds2Wait As Integer intSeconds2Wait = 1 lngReturn = wshShell.Popup("Place Your Text Here", intSeconds2Wait) Iouri Boutchkine iouri@hotsheet.com codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |