NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: astahl on May 23, 2014, 05:45:51 AM
-
Hi Bruce,
Getting this error when compiling the Web12 Calandar app;
Expression cannot be picture - C:\Clarion9.1\accessory\examples\Capesoft\NetTalk\Web Server\Hotdates (12)\web12023.clw:346,52
pointing to this line of code;
p_web.PlannerQueue.Name = p_web.mformat(loc:time,@t1)
Ashley
-
thanks for the report – it's a bug in the template.
close all apps, then edit \clarion9\accessory\template\win\netweb.tpw
Line 9946 (or there'abouts) reads;
p_web.PlannerQueue.Name = p_web.mformat(loc:time,@t1)
there should be quotes around the picture – ie
p_web.PlannerQueue.Name = p_web.mformat(loc:time,'@t1')
-
Bruce ,
Very good and thank you.
Ashley