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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Want to popup list of email addresses in a MsgBox but it formats

Status
Not open for further replies.

SBendBuckeye

Programmer
May 22, 2002
2,166
US
I would like to popup a list of email addresses in a MsgBox. But it interprets the first couple @ as special line formatting characters. Is there anyway around this?

Thanks in advance for any help and have a great day!
 
Call MsgBox("1" & Chr(64) & "3")

will display 1@3.

You also might want to consider using a form/subform or form with a listbox, if you want your users to be able to choose between the items listed.

Jeremy =============
Jeremy Wallace
AlphaBet City Dataworks

Take a look at the Developers' section of the site for some helpful fundamentals.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top