.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
new line with vbCrLf is not work?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
149 Views, 3 Replies
03-13-2012 12:18 AM
Dear All,
To write for Single line text
in VB6 when we use vbCrLf it work and come in new line but in .net it is not working
is therre any other way to do same thing.
Dim Str1 As String = " This is Test for First Line"
Dim str2 As String = " This is Test for Second Line"
Dim Str3 As String = Str1 & vbCrLf & str2
Dim acText As DBText = New DBText()
acText.SetDatabaseDefaults()
acText.Position = ed.GetPoint("click Point To Insert").Value
acText.Height = 1
acText.TextString = Str3.ToString
acBlkTblRec.AppendEntity(acText)
acTrans.AddNewlyCreatedDBObject(acText, True)Thanks for help.
Re: new line with vbCrLf is not work?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-13-2012 02:02 AM in reply to:
Amrit.shr
I may be wrong, but I didn't think Text used formatting characters.
What does the actual string look like when it's added ??
Regards
//-------------------------------------------------------
class keyThumper<T> : Lazy<T>; another Swamper
I do not endorse the social media app links below![]()
Re: new line with vbCrLf is not work?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-13-2012 03:05 AM in reply to:
Amrit.shr
You have to use MText istead
~'J'~
_____________________________________
C6309D9E0751D165D0934D0621DFF27919
C6309D9E0751D165D0934D0621DFF27919
Re: new line with vbCrLf is not work?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-15-2012 09:54 AM in reply to:
Hallex
thanks
