View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
jasminesy jasminesy is offline
external usenet poster
 
Posts: 18
Default multiline inputbox or msgbox message

Thank You. This was actually what I had, but I forgot the second "&".

"Die_Another_Day" wrote:

Dim FruitBasket As String
FruitBasket = Application.InputBox("Which Do you Want:" & vbCrLf & "A
for Apple" & vbCrLf & "B for Banana" & vbCrLf & "C for Coconut", "I'm a
basket Case :)", , , , , , 2)

HTH

Die_Another_Day
jasminesy wrote:
Is there a piece of code that allows you to have a multiline message in an
inputbox or msgbox so that it appears as such:

Which do you want:
A for Apples
B for Bananna
c for Coconut

Thanks!