メインコンテンツへスキップ

検索

検索

Cr = Ctrl + Enter? How Do I Get Enter?

コメント

2件のコメント

  • Avatar
    Ian Cummings
    モデレータ

    Leaving aside what you CAD software requires, what exactly are you wanting to do inside of BarTender?  Are you wanting BarTender to read in a data file where a field delimiter is marked by a CR/LF and a record is marked by some other character as the delimiter?

     

    If yes to the above then this is not possible.  BarTender ALWAYS will use CR/LF as a record delimiter.  You would therefore need to modify the text file prior to BarTender reading it in order to transform the file into a format that BarTender understands.

    0
  • Avatar
    Legacy Poster

    I found that using the OnProcessData event in the btw file and inserting the following single line of VB Script

    Value = Replace(Value, "<CR>", VbCrLf)

    solves the problem because the CR character is not imbedded in the commander text

     

    Just insert the literal characters <CR> (not the CR + LF characters) into the data in place of Cr + Lf and the bartender format file will convert all occurances of <CR> to a CrLf at print time. 

    0

サインインしてコメントを残してください。