-->
Page 2 of 3

Re: Update variables instantly

PostPosted: Mon Oct 24, 2016 9:13 am
by Mmiscool
A simple method is to create a textbox with the variable.

When ever the variable is updated so will the textbox.

print and wprint will add text to the bottom of the page.

Re: Update variables instantly

PostPosted: Tue Oct 25, 2016 10:59 am
by rodrigocirilo
Mmiscool wrote:A simple method is to create a textbox with the variable.

When ever the variable is updated so will the textbox.

print and wprint will add text to the bottom of the page.


Thank you, I'm using this way !!

Re: Update variables instantly

PostPosted: Wed Oct 26, 2016 11:09 am
by tcpipchip
How to force in the WPRINT command to print quotes " for create a html webpage ?

Re: Update variables instantly

PostPosted: Wed Oct 26, 2016 11:53 am
by bugs
You can use the vertical bar characteras an alternative to ".

e.g. wprint |<script type="text/javascript">|

From the help file:-
String Literals : it’s possible to use the “ or the | as string literals;

This permits to include the “ or | inside a string; example

A = |this is a “string”|

B = “this is a |string|”

:|