Normal Topic Print E-Mail Adress (Read 456 times)
Roland
Member
*
Offline


No personal text

Posts: 7
Joined: Jun 29th, 2004
Print E-Mail Adress
Jul 7th, 2009 at 7:09pm
Print Post Print Post  
Hallo all,
I need your help.
In Version 1 I print my e-mail adress with printstring("Firstname.Lastname@gmx.at", 20 , 400, 0, "BArial", 16, 0)
if I do this in Version 2 the printer prints only Fistname.Lastname
Also I testet it with printstring("Firstname.Lastname" + @chr(64) + "gmx.at", 20 , 400, 0, "BArial", 16, 0) but its the same. 
Thanks
  
Back to top
 
IP Logged
 
The Cow
YaBB Administrator
*****
Offline



Posts: 2530
Joined: Nov 22nd, 2002
Re: Print E-Mail Adress
Reply #1 - Jul 7th, 2009 at 8:27pm
Print Post Print Post  
Roland wrote on Jul 7th, 2009 at 7:09pm:
Hallo all,
I need your help.
In Version 1 I print my e-mail adress with printstring("Firstname.Lastname@gmx.at", 20 , 400, 0, "BArial", 16, 0)
if I do this in Version 2 the printer prints only Fistname.Lastname
Also I testet it with printstring("Firstname.Lastname" + @chr(64) + "gmx.at", 20 , 400, 0, "BArial", 16, 0) but its the same.  
Thanks


You need to double the "@" sign:
Code
Select All
PrintString("Firstname.Lastname@@gmx.at", 20 , 400, 0, "BArial", 16, 0)
 



So that Sesame will not interpret the "@" as the beginning of a formatting code.
  

Mark Lasersohn&&Programmer&&Lantica Software, LLC
Back to top
IP Logged
 
Roland
Member
*
Offline


No personal text

Posts: 7
Joined: Jun 29th, 2004
Re: Print E-Mail Adress
Reply #2 - Jul 7th, 2009 at 9:25pm
Print Post Print Post  
Danke schön Mark,
it works fine
  
Back to top
 
IP Logged