Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to combine relations syntax

  • Thread starter Thread starter mr_amby
  • Start date Start date
M

mr_amby

Guest
Hi

How do you combine two parametres with a x in between the two parametres? What kind of syntax do I have to use for this?

I have this but it does not Work: Local_description=WIDTH "x" LENGTH

Thanks.
 
You need to convert number in to string first using 'itos'
e.g.
WIDTH1 = itos(WIDTH)
LENGTH1 = itos(LENGTH)
Local_description= WIDTH1 +" X " + LENGTH1
 
Thank you - just what I needed:)
 
Thank you - Just what I needed:-)
 

Part and Inventory Search

Sponsor

Back
Top