Re: Create HTML file from rev app

2010-08-25 Thread Jim Ault
In HTML, these two chars work the same "' dbl single if you start a string with a single quote, it continues until the next single quote if you start a string with a dbl quote, it continues until the next dbl quote so var = 'a phrase containing a " char is kept intact'

Re: Create HTML file from rev app

2010-08-25 Thread Andre Garzia
William, Merge is king! Another cool command is "format" which is like C printf() function. It can be used like this: put format("my title%s", fld "link", fld "link") into tHTML keep notice that you can use " inside a quoted format string if you escape them like \" You can use %s place holders

Re: Create HTML file from rev app

2010-08-25 Thread sales
William, Thanks, I'll try to remember that. Boy I have a lot to learn. I think I need an extra terabyte HD in my head. Bruce - Original Message - From: "William de Smet" To: "How to use Revolution" Sent: Wednesday, August 25, 2010 4:37 AM Subject: Re: Crea

Re: Create HTML file from rev app

2010-08-25 Thread William de Smet
Thanks Richard, That looks so much easier. I never used 'merge' before. I will definitely use this. Greetings, William 2010/8/25 Richard Gaskin : > William de Smet wrote: > >> It's been a while since my last question but working hard on some apps. >> For my daily job I needed a quick app to c

Re: Create HTML file from rev app

2010-08-25 Thread Richard Gaskin
William de Smet wrote: It's been a while since my last question but working hard on some apps. For my daily job I needed a quick app to create a HTML file. In the app I have some fields and in one of them I put a URL (just www.domainname.com). In some hidden fields I put the needed HTML and the

Re: Create HTML file from rev app

2010-08-25 Thread William de Smet
Hi Mark, Now it works! You're helpful as always. @Bruce: in HTML you use "e; to get ". I thought I had to use this in Rev as well. groeten, William 2010/8/25 Mark Schonewille : > Hi William, > > You got it almost right: > > "http://";  & fld "link" & quote & " target=" & quote & > "_blank"

Re: Create HTML file from rev app

2010-08-25 Thread sales
quote symbol " ' could be you just nee to add the 'e' at the end of the word quote Bruce - Original Message - From: "William de Smet" To: "How to use Revolution" Sent: Wednesday, August 25, 2010 4:03 AM Subject: Create HTML file from rev app

Re: Create HTML file from rev app

2010-08-25 Thread Mark Schonewille
Hi William, You got it almost right: "http://"; & fld "link" & quote & " target=" & quote & "_blank" & quote & " >" & fld "link" &"" after tData -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.c

Create HTML file from rev app

2010-08-25 Thread William de Smet
Hi there all, It's been a while since my last question but working hard on some apps. For my daily job I needed a quick app to create a HTML file. In the app I have some fields and in one of them I put a URL (just www.domainname.com). In some hidden fields I put the needed HTML and the all come to