Try using the Write # statement (see MapBasic Help for details).  If this
statement has limitations that you don't want, then how about appending to a
string variable, and then printing the variable in the end?

For example (this example assumes that you want to separate each input with
a space):

        Dim PrintString As String

        PrintString = start
        For
                ...
                PrintString = PrintString & " " & something else
                ...
        Next
        PrintString = PrintString & " " & end
        Print #1, PrintString

Hope this helps

Michael Hanna

-----Original Message-----
From: Ben Crane [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 16, 2002 10:40 AM
To: [EMAIL PROTECTED]
Subject: MI-L Character Return...stopping it!!!


Hi list,

How do you stop line feed using print #1 statements?

e.g:

print #1, start
for
...
print #1, something else
...
next
print #1,end

and have it ALL on one line?

Thanx
Ben

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

---------------------------------------------------------------------
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 4552

---------------------------------------------------------------------
List hosting provided by Directions Magazine | www.directionsmag.com |
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Message number: 4553

Reply via email to