Announcement

Collapse
No announcement yet.

imbedding tabs

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Michael Mattias
    replied
    > Search for: "built-in string equates" ...

    If that program compiled, also search for #DIM ALL. That would have told you "TAB$" was not a built-in equate and CHR() was an un-defined array.

    If you are new, the use of #DIM ALL is IMO a very good habit to acquire.


    MCM

    Leave a comment:


  • Peter Lameijn
    replied
    Search for: "built-in string equates"

    Leave a comment:


  • Richard Schroeder
    replied
    Wow, that compiled, thanks.

    Now I have to test and take a look at the output, but the compiler liked that syntax.

    But where do you find any reference to $TAB in the help file?

    Search did not find it, and I could not find anything that started with a $.

    Thanks,

    RCS

    Leave a comment:


  • Paul Squires
    replied
    ... or CHR$(9)

    Leave a comment:


  • Paul Squires
    replied
    I believe you need to use $TAB instead of TAB$

    Leave a comment:


  • Richard Schroeder
    started a topic imbedding tabs

    imbedding tabs

    I need to write a line to a file that has data separated by tabs.

    I thought that it would be something like:

    sData = string1+TAB$+string2+TAB$ . . . etc.

    This will not compile. I have tried CHR((9) - same result.

    Evidently this is not how TAB$ works, but how do I do this?

    Help will be appreciated.

    Thanks

    RC Schroeder
Working...
X