metropoj
5th February 2009, 17:05
I want to print the "Trademark" symbol based on some conditions we have set out in the product constraints.

From MS Word, I have attained that ASCII(153) is TM symbol ...

Has anyone ever embedded these into syntax ?

Any suggestions would be appreciated thanks !

p.cole
6th February 2009, 02:24
assign the character to a string variable

string copyright

!copyright = chr$(153)


Putting a ! infront of a line gives you full access to all the stanard Baan functions, powerful but dangerous.

metropoj
6th February 2009, 15:25
Ah, OK. We use a lot of "!" code in our constraints already.

I'll take my current text assignment and then simply do an "&copyright" to append it into the end of my stmt and that should do it.

Thanks for the guidance! usually when I try something like this it is harder than it looks ;) ...