Does anybody know whats the are differences between a *.txt file wrote with BMAX or BBPlus?
BMAX Code:
BBPlus Code:
I´ve tried it with "~t" too
the problem is, Outlook Dataimport (Windows TAB separated)
will not accept the BMAx written File
, especially the TAB Separators in the first line to get the table
In Hexeditors like HxD ore a Mac OS Hexeditor the files seems already the same
BMAX Code:
Local Writedatei:TStream = WriteFile("outlookdatei\BW3X_MAIL.txt") For Local zielfeld:TZielfeld = EachIn Zielfelderlist zwert = zwert + zielfeld.name + Chr$(9) Next zwert = LSet$(zwert,Len(zwert)-1) ' delete last TAB WriteLine Writedatei, zwert
BBPlus Code:
zielfile = WriteFile(Dateiname_Ziel) For Z.Ziele = Each Ziele zstring$ = zstring$ + Z\Zielname + Chr$(9) Next zlaenge = Len(zstring$) zstring$ = LSet$(zstring$,zlaenge-1) WriteLine (zielfile,zstring$)
I´ve tried it with "~t" too
the problem is, Outlook Dataimport (Windows TAB separated)
will not accept the BMAx written File
, especially the TAB Separators in the first line to get the table
In Hexeditors like HxD ore a Mac OS Hexeditor the files seems already the same