Originally Posted by
ISAWHIM
You are saying...
xprint (B, "/", a)
xprint (Parameter1, Parameter2, Parameter3)
EG, 3 seporate parameters... but it expects only Parameter1 and then ")"
... not ", more, more)"
Functions use "," to seporate parameters.
EG, Distance(x,y) = Distance( Parameter1, Parameter2 )
Use this...
xprint (B & "/" & a)
OR, if A and B are numbers
xprint (STR$(B) & "/" & STR$(a))
That is (String1 append String2 append String3)
If A or B are numeric strings... be sure to use STR$(a) & "SomeText" & STR$(b)... or it will try to ADD them.
EG, (a & b) is (a + b) as numbers not ("ab") as strings
EG, (7 & 2) is (9) not (72) as numbers
EG, ("7" & "2") is ("72") as strings
Bookmarks