Basic and programming questions


[Prev][Next][Index][Thread]

Basic and programming questions



Hey, I've been doing some simple BASIC programming on the TI-82 for a few
years now, and i've been recently doing some VB programming on the computer.
There seem to be some differences, but my first question is this:

How do i put multiple strings on one line?  For instance, I want it to
display X and Y as:
(X,Y)

In VB I would do this:

lblAnswer.Caption = "(" & Str$(X) & ", " & Str$(Y) & ")"

Which prints:

(2, 3)

On the TI i've had to break it up into four lines.

Disp "X= ",X
Disp "Y= ",Y

Which prints:

X=
                        2
Y=
                        3

Thanks for any help,

Xaos
80 97 116 114 105 99 107 32 77 99 71 105 110 110


Follow-Ups: