Rick Rice wrote/ schreef:
> How do I use tabstops and tabkey to put the contents of two variables into a
> field? I tried:
> set the tabstops of cd field 1 to "10,50"
> put variable 1 & tabkey & variable 2 into cd field 1
Guess you have a 1-word variable name instead of 'variable 1' and 'variable
2', because the names of variables cannot contain spaces.
The constant containing the tab character is not 'tabkey', but 'tab'. So it
would be:
put variable1 & tab & variable2 into cd field 1
> All I get is an error message.
> Thanks
> Rick
Hope this helps,
Sjoerd
Archives: http://www.mail-archive.com/[email protected]/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.