Hello!!
Is there an alternative to the constant vbCrLf
I want to show to the user an msgbox using several rows of information. I found the vbCrLf constant that is defined inside microsoft.visualbasic namespace.
Thanks in advanced
Jose Eloy
Mexico
Hello!!
Is there an alternative to the constant vbCrLf
I want to show to the user an msgbox using several rows of information. I found the vbCrLf constant that is defined inside microsoft.visualbasic namespace.
Thanks in advanced
Jose Eloy
Mexico
alternative to VbCrLf
Daring
I you insist on not using stuff in the Microsoft.VisualBasic namespace, you can try System.Environment.NewLine.
Best regards,
Johan Stenberg
Adam Finster
hi,
i use this
messagebox.show("some text here" & vbnewline & " the newline text here" & vbnewline & " the third line here")
Baskar Joshi
Thanks in advanced.
Jose Eloy