Jun 11, 2001 #1 NevG Programmer Joined Oct 10, 2000 Messages 162 Location 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 Joined Mar 30, 2001 Messages 24 Location 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 Joined Jul 3, 2001 Messages 2 Location 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 Joined Jun 27, 2001 Messages 2 Location 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