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.
1
E-Mail - Ask For Help / Re: Send Email function not working at all PCs
« on: November 01, 2023, 10:31:29 PM »
Hi Bruce,
I have installed VC runtime, but issue still persist.
Does it means I need upgrade to Nettalk 14 in order to solve this issue?
Thank you.
Regards,
Nelson
I have installed VC runtime, but issue still persist.
Does it means I need upgrade to Nettalk 14 in order to solve this issue?
Thank you.
Regards,
Nelson
2
E-Mail - Ask For Help / Re: Send Email function not working at all PCs
« on: October 31, 2023, 09:38:37 PM »
Hi Bruce,
I am using Clarion 11.0.13505, Nettalk 11.55
Thank you
Regards,
Nelson
I am using Clarion 11.0.13505, Nettalk 11.55
Thank you
Regards,
Nelson
3
E-Mail - Ask For Help / Send Email function not working at all PCs
« on: October 26, 2023, 07:38:02 PM »
Hi,
I have implemented send email function to my client. But I found that, same application, send email function works on some PC, some are not (email log, send_date & send_time is NULL).
May I know what am I missing? Need install windows feature for send email? Or any DLL missing?
Thank you.
Regards,
Nelson
I have implemented send email function to my client. But I found that, same application, send email function works on some PC, some are not (email log, send_date & send_time is NULL).
May I know what am I missing? Need install windows feature for send email? Or any DLL missing?
Thank you.
Regards,
Nelson
4
Web Server - Ask For Help / How to hand code "loc:formaction"?
« on: April 22, 2019, 10:55:39 PM »
Hi,
I want the insert Form show save button as "Create", after user click "Create", it remain on Form screen and change to Change Mode.
CASE Loc:Act
OF Net:INSERTRECORD
p_web.site.SaveButton.TextValue = 'CREATE'
ELSE
p_web.site.SaveButton.TextValue = 'SAVE'
END
"Create" & "Save" able to do thru hand code.
How about loc:FormAction? I only manage to fill it at General page, URL on Save, and code generated as below:-
If loc:formaction = 'stay'
loc:FormAction = p_web.Requestfilename
Else
loc:formaction = 'UpdateInv?change_btn=change&_bidv_='&_web.AddBrowseValue('UpdateInv','Invoice',Inv:RefNo_Key)
End
How can I hand code loc:formaction?
If loc:formaction = 'stay'
loc:FormAction = p_web.Requestfilename
Else
If Loc:Act = Net:INSERTRECORD
loc:formaction = 'UpdateInv?change_btn=change&_bidv_='&_web.AddBrowseValue('UpdateInv','Invoice',Inv:RefNo_Key)
Else
loc:formaction = p_web.getsessionvalue('SaveReferUpdateInv')
End
End
Thank you.
Regards,
Nelson
I want the insert Form show save button as "Create", after user click "Create", it remain on Form screen and change to Change Mode.
CASE Loc:Act
OF Net:INSERTRECORD
p_web.site.SaveButton.TextValue = 'CREATE'
ELSE
p_web.site.SaveButton.TextValue = 'SAVE'
END
"Create" & "Save" able to do thru hand code.
How about loc:FormAction? I only manage to fill it at General page, URL on Save, and code generated as below:-
If loc:formaction = 'stay'
loc:FormAction = p_web.Requestfilename
Else
loc:formaction = 'UpdateInv?change_btn=change&_bidv_='&_web.AddBrowseValue('UpdateInv','Invoice',Inv:RefNo_Key)
End
How can I hand code loc:formaction?
If loc:formaction = 'stay'
loc:FormAction = p_web.Requestfilename
Else
If Loc:Act = Net:INSERTRECORD
loc:formaction = 'UpdateInv?change_btn=change&_bidv_='&_web.AddBrowseValue('UpdateInv','Invoice',Inv:RefNo_Key)
Else
loc:formaction = p_web.getsessionvalue('SaveReferUpdateInv')
End
End
Thank you.
Regards,
Nelson
5
Web Server - Ask For Help / Re: 3 Print Button with different embed code, but always execute the 1st code
« on: April 18, 2019, 05:52:21 PM »
Problem solved, because all 3 buttons have the same name ('print_btn').
Thank you
Thank you
6
Web Server - Ask For Help / 3 Print Button with different embed code, but always execute the 1st code
« on: April 16, 2019, 12:28:30 AM »
Hi,
I have 3 Print Button(Inv, D/O, D/O2) - embed different code at "Server Side code when button pressed".
No matter which button I press, it always execute Inv button embed code. But, the button will direct to correct report format.
Any idea about this?
Thank you.
Regards,
Nelson
I have 3 Print Button(Inv, D/O, D/O2) - embed different code at "Server Side code when button pressed".
No matter which button I press, it always execute Inv button embed code. But, the button will direct to correct report format.
Any idea about this?
Thank you.
Regards,
Nelson
7
Web Server - Ask For Help / Re: Browse Total will reset if got few pages, any new solutions?
« on: April 08, 2019, 06:08:46 PM »
Hi Robert,
Thanks for advice. Tried, doesn't works.
Hi Bruce,
I am using SQL, I will try on method you suggested.
Thank you.
Nelson
Thanks for advice. Tried, doesn't works.
Hi Bruce,
I am using SQL, I will try on method you suggested.
Thank you.
Nelson
8
Web Server - Ask For Help / Browse Total will reset if got few pages, any new solutions?
« on: April 04, 2019, 11:42:14 PM »
Hi,
I embeded the following code at Set Queue Record :-
CASE T:DrCr
OF 'D'
LocDrAmt = T:Amount
LocBalance += T:Amount
OF 'C'
LocCrAmt = T:Amount
LocBalance -= T:Amount
END
The LocBalance will reset every new page.
I search thru previous post on June 25, 2012, it can be solved by using File Load, but it will be very slow when records huge.
Just wonder, any new solution for this after so many years?
Thank you.
Regards,
Nelson
I embeded the following code at Set Queue Record :-
CASE T:DrCr
OF 'D'
LocDrAmt = T:Amount
LocBalance += T:Amount
OF 'C'
LocCrAmt = T:Amount
LocBalance -= T:Amount
END
The LocBalance will reset every new page.
I search thru previous post on June 25, 2012, it can be solved by using File Load, but it will be very slow when records huge.
Just wonder, any new solution for this after so many years?
Thank you.
Regards,
Nelson
9
Web Server - Ask For Help / Generate ServerWebServiceMethodWizard, parameter missing!
« on: November 28, 2018, 12:02:15 AM »
Hi,
I use ServerWebServiceMethodWizard to generate syncCustomer.
But under parameter tab, 4 parameters is missing, just show [String], [String], [Number], [Number].
Need goes in individual to re-select parameter field.
Is it Wizard forgot to assign, or is standard way to do it.
Thank you.
Regards
Nelson
I use ServerWebServiceMethodWizard to generate syncCustomer.
But under parameter tab, 4 parameters is missing, just show [String], [String], [Number], [Number].
Need goes in individual to re-select parameter field.
Is it Wizard forgot to assign, or is standard way to do it.
Thank you.
Regards
Nelson
10
Web Server - Ask For Help / Re: Where to embed the code to update record status after printed?
« on: November 26, 2018, 07:21:51 PM »
Hi Bruce,
I have create a sample app to show my problem.
Please have a look and correct me the problem.
Thank you.
regards,
Nelson
I have create a sample app to show my problem.
Please have a look and correct me the problem.
Thank you.
regards,
Nelson
11
Web Server - Ask For Help / Re: Where to embed the code to update record status after printed?
« on: November 16, 2018, 03:51:08 AM »
Hi Bruce,
Yes, this is what I want.
Even I have click the "Refresh other column at the same row" and added "Printed" field. It also won't refresh. Need manual press F5 to refresh.
Please advice. Thank you.
Regards,
Nelson
Yes, this is what I want.
Even I have click the "Refresh other column at the same row" and added "Printed" field. It also won't refresh. Need manual press F5 to refresh.
Please advice. Thank you.
Regards,
Nelson
12
Web Server - Ask For Help / Where to embed the code to update record status after printed?
« on: November 15, 2018, 06:03:34 AM »
Hi,
May I know where is the correct embed point to write the code to update record status after printed button clicked and direct refresh browser?
I have tried few days, embed at Report procedure, it wont direct refresh the browse. Embed at "Server-side code when pressed" also not function.
Please advice. Thank you.
Regards,
Nelson
May I know where is the correct embed point to write the code to update record status after printed button clicked and direct refresh browser?
I have tried few days, embed at Report procedure, it wont direct refresh the browse. Embed at "Server-side code when pressed" also not function.
Please advice. Thank you.
Regards,
Nelson
13
Web Server - Ask For Help / Re: How can I save & print Chinese Character? (Clarion 11 & Nettalk 10.35)
« on: October 30, 2018, 10:50:31 PM »
I serach thru the forum, under "WebServer"->Setting->Advanced tab, change the Charset='DB2312', Store Data As = utf-8.
Now I able to display and save chinese character under NetWebBrowse & NetWebForm, but Clarion Report & FRB still can't display chinese character.
Any idea?
Thank you.
Best Regards,
Nelson
Now I able to display and save chinese character under NetWebBrowse & NetWebForm, but Clarion Report & FRB still can't display chinese character.
Any idea?
Thank you.
Best Regards,
Nelson
14
Web Server - Ask For Help / How can I save & print Chinese Character? (Clarion 11 & Nettalk 10.35)
« on: October 30, 2018, 10:11:30 PM »
Hi,
My desktop application is running and able to do these, when I convert to Nettalk, all the chinese character save in MSSQL can't display and print correctly. Any setting I miss out? Please advice.
Thank you.
Best regard,
Nelson
My desktop application is running and able to do these, when I convert to Nettalk, all the chinese character save in MSSQL can't display and print correctly. Any setting I miss out? Please advice.
Thank you.
Best regard,
Nelson
15
Web Server - Ask For Help / Re: Pls advice that Nettalk Mobile App suitable my client situation?
« on: May 15, 2018, 10:03:21 PM »
Hi Bruce,
I have full set application running at desktop, moving to web right now (in progress).
Some function like take order is done by salesman, they feel open browse is outdated, they want mobile app.
From our view, there is no different, but from customer view, they want advance technology(feeling).
That's why I forced to create some function in Mobile App.
BTW, can Mobile App have Non-Disconnected version?
Thank you.
Regards,
Nelson
I have full set application running at desktop, moving to web right now (in progress).
Some function like take order is done by salesman, they feel open browse is outdated, they want mobile app.
From our view, there is no different, but from customer view, they want advance technology(feeling).
That's why I forced to create some function in Mobile App.
BTW, can Mobile App have Non-Disconnected version?
Thank you.
Regards,
Nelson