NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - urayoan

Pages: 1 ... 13 14 [15]
211
debra, i did something similar the way you want. I can publish an example by monday. The trick is use CSS to define the places in the page.

In my case i define header, left_menu, content and footer.


212
Web Server - Ask For Help / Re: Progress Indicator for a Report
« on: November 01, 2013, 05:58:29 AM »
Your welcome Bruce and johanco123 :)

johanco, are you trying to make one big report or to append different reports to one PDF?


213
Web Server - Ask For Help / Re: Progress Indicator for a Report
« on: October 31, 2013, 07:24:25 AM »
Hi johanco

I modify the example web72 from Bruce and added a report using the progress bar. I think Bruce have a webinar showing the progress with a report.

I am using the Soft Velocity Report to PDF Global Template to generate the PDF (included in Clarion Enterprise) but if you are using PDF Tools is all about the same.

Let me know if its works.

The example includes the app dtc and some tps to generate the report. Was made in Clarion 6 to keep compatibility.



[attachment deleted by admin]

214
Web Server - Ask For Help / Re: How do I call Procedure in code
« on: October 31, 2013, 06:00:31 AM »
johanco, in my case o resolve that problem using a progress bar.

Another function that works is using p_web.noop but visually for the client, the progress bar is helpful let them knows that something is happen behind the scenes.

Cheers

215
Web Server - Ask For Help / Re: Disable menu in mobile
« on: October 02, 2013, 12:18:19 PM »
Didn't try yet but maybe in the in the Menu Extension / Menu Condition

p_web.IsMobile() = 0



If you put
p_web.IsMobile() = 1
should be included in Mobile

216
Web Server - Ask For Help / Re: Validating email address
« on: September 27, 2013, 09:56:03 PM »
Casey, in a form i set a local variable to loc:eMailFrom (entry field) and in embed point Validate All the following code

X# =  MATCH(UPPER(CLIP(loc:eMailFrom)),|
    '^[-A-Z0-9._]+@{{[-A-Z0-9._]+\.}+[A-Z][A-Z][A-Z]?[A-Z]?$', Match:Regular)

IF X# <> 1             
  loc:invalid = 'loc:eMailFrom'
  p_web.SetValue('retry','EmailFormControl')
  loc:Alert = 'Invalid eMail.'       
ELSE 
!Procedure to send the eMail
  SendEmail(eMailParams)
END!If

217
Web Server - Ask For Help / Re: Error in PageFooterTag p_web.Script
« on: September 24, 2013, 04:41:42 AM »
Your welcome mtabakin. That change is documented by Bruce here if you need aditional information:

http://capesoft.com/docs/NetTalk7/NetTalk7Upgrade.htm#Embeds

Another one that i have problems is using <CR,LF> in some hand code. If you get problems use this p_web.CRLF

218
Web Server - Ask For Help / Re: Error in PageFooterTag p_web.Script
« on: September 23, 2013, 04:38:15 PM »
Change this line
packet = clip(packet) & p_web.Script('startCountDown('& int(p_web.site.SessionExpiryAfterHS/100) &',"'& clip(p_web.site.LoginPage) &'","countdown");')

For this
 p_web.Script('startCountDown('& int(p_web.site.SessionExpiryAfterHS/100) &',"'& CLIP(p_web.site.LoginPage) &'","countdown");')

Or delete the bold text.

Cheers
Ura

219
Web Server - Ask For Help / Re: SSL Problem
« on: August 27, 2013, 05:47:26 AM »
Hello olu:
  I was looking at the site (very elegant btw), and found something that cause me similar problems with the certificates.

  First, fix the mixed content like Bruce suggest.

  Then go to this web site and to verify the certificate installation.

http://www.sslshopper.com/ssl-checker.html

  At least in the test, like happen to me a few days ago, it is looking for intermediate certificate and in some browsers cause me problems. This is very easy to fix following the instructions Bruce provide me:

http://capesoft.com/docs/NetTalk7/NetTalkWebSecure.htm#UsingIntermediateCertificates

This in the site from GeoTrust to download the intermediate certificates

https://knowledge.geotrust.com/support/knowledge-base/index?page=content&actp=CROSSLINK&id=AR1421

Hopes this info helps you. Let us know how it goes.

Cheers @ Urayoan


Pages: 1 ... 13 14 [15]