Jun 11, 2001 #1 NevG Programmer Oct 10, 2000 162 GB Hi Dudes and dudettes Can someone please tell me how to remove the VBScript: from the title of the msgbox I have tried putting my own in but the title is just prefixed with this stupid bloody msg. Thanks for any help Nev G
Hi Dudes and dudettes Can someone please tell me how to remove the VBScript: from the title of the msgbox I have tried putting my own in but the title is just prefixed with this stupid bloody msg. Thanks for any help Nev G
Jun 11, 2001 #2 stevepuri Programmer Mar 30, 2001 24 US Hey, Have you tried this?: Code: MsgBox "My message", vbSystemModal, "My title" Steve. Upvote 0 Downvote
Hey, Have you tried this?: Code: MsgBox "My message", vbSystemModal, "My title" Steve.
Jun 25, 2001 #3 itay Programmer Jul 3, 2001 2 IL you cant change this. this is microsoft security for ie5 or higher. this is by design.you can only bypass it by using modal window or dhtml msgboxes. Upvote 0 Downvote
you cant change this. this is microsoft security for ie5 or higher. this is by design.you can only bypass it by using modal window or dhtml msgboxes.
Jun 27, 2001 #4 jstockton MIS Jun 27, 2001 2 US You can do this Dim WshShell, rvShowMessage Set WshShell = CreateObject( "WScript.Shell" ) rvShowMessage = WshShell.PopUp( strMessage,0 , "YOUR MESSAGE HERE", strButtons ) ' Clear objects Set WshShell = Nothing Upvote 0 Downvote
You can do this Dim WshShell, rvShowMessage Set WshShell = CreateObject( "WScript.Shell" ) rvShowMessage = WshShell.PopUp( strMessage,0 , "YOUR MESSAGE HERE", strButtons ) ' Clear objects Set WshShell = Nothing