Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Window.Alert Command - (paragraphs)

Status
Not open for further replies.

Tamrak

MIS
Jan 18, 2001
213
US
Good morning:

I have a command called "Window.Alert" and would like to enhance it.

1. How can I put them into two or three paragraphs? For example:

Window.alert ("Thank you for ..........

In a meantime,............. ")

I would like the pop-up box to contain two or three paragraphs.

2. Will the hyperlink work in the Window.alert command?

For example:

Window.alert ("Thank you for ..............

In a meantime, please visit "

Please let me know. I hope this will not be too difficult. Thank you.
 
What is the code for Window.Alert?

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
Good morning,

What I am looking is to have the window.alert given me three paragraphs.

It can be something like this:

Window.alert(" Thank you for coming to the party. <I want the next sentence to be on another paragraph> You can visit us further at: http// <another paragraph followed> Respectfully, <another paragraph> My name."

I would like to see the pop-up look like this:

Thank you for coming to the party.

You can visit us further at:
Respectfully,


Name


Please let me know if you have questions. Thank you.
 
If believe Winow.Alert is a JavaSript function. I would recommend posting this question in the JavaScript forum:
forum216

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
As you post in the VBScript forum, here a VBS answer:
MsgBox " Thank you for coming to the party." & vbCrLf & " You can visit us further at: http// & vbCrLf & " Respectfully," & vbCrLf & " My name."

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
PHV,

Thank you.

I have already posted the question in the VBScript and I do appreciate your response. By the way, I got of what I have been looking for.

Thanks again for the code. You have earned another star.

Tamrak
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top