Can a message box written in VBScript have its own title without being concatenated with the text VBScript. Can the text VBScript be avoided or is it displayed by default?. Please could you let me know of some way by which i can display my message making use of a message box without having a title without VBScript.

Re: Avoiding VbScript text in title of a message box by Peter

Peter
Wed Feb 11 08:48:10 CST 2004

Hi

Yes it can, try:
msgbox "Hello", ,"My Title"

HTH + Cheers - Peter


"=?Utf-8?B?cGF0c3k=?=" <anonymous@discussions.microsoft.com> wrote in
news:07F197BF-81B4-44E2-A7FB-5097BE445D50@microsoft.com:

> Can a message box written in VBScript have its own title without being
> concatenated with the text VBScript. Can the text VBScript be avoided or
> is it displayed by default?. Please could you let me know of some way by
> which i can display my message making use of a message box without
> having a title without VBScript.
>


Re: Avoiding VbScript text in title of a message box by Tom

Tom
Wed Feb 11 10:42:41 CST 2004

No, it cannot be removed - at least not in the context I
assume this is asked - that is, in HTML client side
scripting. (Though your approach works for stand alone.)

It is a security issue. The problem being that it is
dangerous to allow a web based app to present a popup that
looks like a Windows system popup.

Tom Lavedas
===========

>-----Original Message-----
>Hi
>
>Yes it can, try:
> msgbox "Hello", ,"My Title"
>
>HTH + Cheers - Peter
>
>
>"=?Utf-8?B?cGF0c3k=?="
<anonymous@discussions.microsoft.com> wrote in
>news:07F197BF-81B4-44E2-A7FB-5097BE445D50@microsoft.com:
>
>> Can a message box written in VBScript have its own
title without being
>> concatenated with the text VBScript. Can the text
VBScript be avoided or
>> is it displayed by default?. Please could you let me
know of some way by
>> which i can display my message making use of a message
box without
>> having a title without VBScript.
>>
>
>.
>