NetTalk Central

Author Topic: Web12 Calandar App errors  (Read 1469 times)

astahl

  • Sr. Member
  • ****
  • Posts: 308
    • View Profile
    • Email
Web12 Calandar App errors
« 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

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11191
    • View Profile
Re: Web12 Calandar App errors
« Reply #1 on: May 23, 2014, 07:39:52 AM »
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')

astahl

  • Sr. Member
  • ****
  • Posts: 308
    • View Profile
    • Email
Re: Web12 Calandar App errors
« Reply #2 on: May 23, 2014, 08:00:21 AM »
Bruce ,

Very good and thank you.


Ashley