Normal Topic Report (Read 574 times)
SpencerWulwick
Senior Member
Members
*****
Offline



Posts: 677
Location: Wilton Manors, Florida
Joined: Jan 16th, 2005
Report
Nov 8th, 2013 at 7:51pm
Print Post Print Post  
I have a report with a with a Program Layout for Words:: On Print

It ends with:

words = "<font size = 4><font color = @chr(34)red@chr(34)><b><i><TT><P ALIGN=CENTER></TT> <font color = red><br><br>That's " + words + " (" + @int(vamount) + ") " + "people so far.  HOW ABOUT " + "<font size = 5><U><i>YOU</i></U>!" +  "<font color = @chr(34)black@chr(34)></b>"
+
"<p><hr><p><dd><font size = 2><TT><P ALIGN=CENTER></TT>For additional information, go back to the Reunion Tab and pick another topic.<p>"

I want to replace the line that reads:  For additional information, go back to the Reunion Tab and pick another topic. 

with a hyperlink, something like

<a href="http://www.myfamily.com/isapi.dll?c=content&htx=view&siteid=1C3CAM&contentid=ZZZ...">For additional information, click here</a>

I get an error code after the =Quote . . .

I think I have to tell Sesame that I want it to enter a literal quotation mark . . . 

I need to know how to do that.

Thanks!


  

- Spencer

    ** Practice random kindness & senseless acts of beauty!
Back to top
IP Logged
 
The Cow
YaBB Administrator
*****
Offline



Posts: 2530
Joined: Nov 22nd, 2002
Re: Report
Reply #1 - Nov 8th, 2013 at 10:58pm
Print Post Print Post  
Yup.

Replace double quotes that are already in a quoted constant with @chr(34) - which is the ascii code for a double quote.

Like this:

Bob = "Hello " + @chr(34) + "John" + @chr(34)

producing: Hello "John"
  

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



Posts: 677
Location: Wilton Manors, Florida
Joined: Jan 16th, 2005
Re: Report
Reply #2 - Nov 9th, 2013 at 12:54am
Print Post Print Post  
I just came on line to tell you I had found it - lol - thanks much - that's exactly what I did.

Smiley
  

- Spencer

    ** Practice random kindness & senseless acts of beauty!
Back to top
IP Logged