Insert a [Enter] in a String
-
Helo Im new to VB-programming but im a good on ASP (VB-script). In ASP I inserted a chr(13) if i wanted a [enter] in my HTML-kod. But concating a chr(13) in a String ends up whit a square. HELP !!!
You could try
Chr(10)
, this may work. Are you using VB6 or VB.NET Nick Parker
-
You could try
Chr(10)
, this may work. Are you using VB6 or VB.NET Nick Parker
-
Helo Im new to VB-programming but im a good on ASP (VB-script). In ASP I inserted a chr(13) if i wanted a [enter] in my HTML-kod. But concating a chr(13) in a String ends up whit a square. HELP !!!
Hi Friend, Try this for better. Text1.Text = "Anbu" & VbNewLine & "Selvan" Have a nice coding. P.Anbuselvan
-
Helo Im new to VB-programming but im a good on ASP (VB-script). In ASP I inserted a chr(13) if i wanted a [enter] in my HTML-kod. But concating a chr(13) in a String ends up whit a square. HELP !!!
-
Yes in VB6 but in VB.NET it´s System.Windows.Forms.Key.Return ---- The I moved on to RichTextBox and found this nice sample - using XHTML to RTF-format a RichTextBox http://www.gotdotnet.com/userarea/keywordsrch.aspx?keyword=xhtml (XHTML is well-formated HTML => XML) no unclosed tags (ex:
is in XHTML
)