المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : New Line VS2005 Installer's BodyText



C# Programming
03-27-2009, 07:21 PM
How do I create a new line for my text in the BodyText field of a Dialog in Visual Studio 2005 Installer's User Interface?

In C#: BodyText = "This is line one.\r\nThis is line two."

In VB: BodyText = "This is line one." + vbCrLf + "This is line two."

HTML: BodyText = "This is line one
This is line two."

I don't know how to text the VB version, because the BodyText field does not include quotes.

The C# and HTML versions both fail whenever I create my setup files.