• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Contributor
    Amrit.shr
    Posts: 13
    Registered: ‎03-14-2011

    new line with vbCrLf is not work?

    144 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.

     

     

     

    Please use plain text.
    Valued Mentor
    KerryBrown
    Posts: 259
    Registered: ‎11-29-2008

    Re: new line with vbCrLf is not work?

    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:smileyembarrassed:

    Please use plain text.
    *Expert Elite*
    Hallex
    Posts: 1,331
    Registered: ‎10-08-2008

    Re: new line with vbCrLf is not work?

    03-13-2012 03:05 AM in reply to: Amrit.shr

    You have to use MText istead

     

    ~'J'~

    _____________________________________
    C6309D9E0751D165D0934D0621DFF27919
    Please use plain text.
    Contributor
    Amrit.shr
    Posts: 13
    Registered: ‎03-14-2011

    Re: new line with vbCrLf is not work?

    03-15-2012 09:54 AM in reply to: Hallex
    thanks
    Please use plain text.