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.


Topics - skyong38

Pages: [1]
1
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

2
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

3
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

4
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

5
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

6
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

7
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

8
Hi,

I have search the forum, and knowing that the Postinsert/postupdate is the place to embed code before save.

LocUserID = p_web.GetSessionValue('LoginName')
I want to assign some value to field, I tried :-
1) p_web.SetSessionValue('JSDW:CreatedUserID', LocUserID)
Or
2) JSDW:CreatedUserID = LocUserID

Both doesn't write the value to file.

Where am I goes wrong?

Thank you.

Regards,
Nelson



9
Hi,

My client is using my desktop application right now, she want allow her salesman to use Mobile App to issue Bill to customer, and lock the quantity base on first come first served basic. So, salesman need to know the real time quantity level and push it to client, and locked the quantity once customer confirmed.

From what I understand, Nettalk Mobile App is operate in disconnected mode. So, may I know whether Nettalk Mobile App can cater my customer business requirement?

Thank you.

Regards,
Nelson

10
Dear All,

I unchecked "Generate for Disconnected App".  Mobile Web browser can see the record, but mobile app cant.
Will  <!-- Core plugins --> be issue?

For mbuild, the default
"<!-- Core plugins -->
  <gap:plugin name="org.apache.cordova.battery-status" />"

is not acceptable by adobe phone gap, so that I change "gap:plugin" to
"plugin"
"<!-- Core plugins -->
  <plugin name="cordova-plugin-battery-status" spec="~1.2.4" />"
it can be successfully compiled. Does this affect?

Thank you.


Best Regards,
Nelson

11
Hi,

The easiest way to implement parent-child for Nettalk is add an Auto-Increment Filed. It works fine.

Now, I want to extend it, to consolidate few database into one at HQ, so I choose Replicate. If Replicate, I need to add GUID + Auto-Increment Filed as unique, after this, can Nettalk still works?

Please advice.

Thank you.


Regards,
Nelson

12
Web Server - Ask For Help / Recommed PDF Tools for Web Reports!
« on: November 17, 2012, 05:49:30 AM »
Hi,

I am using Clarion 8 Professional, so it doesn't come with any PDF tools. As I know, I got two options, one is  SV PDF tool (USD199) and  PDF-Tools SDK, from Tracker Software (USD599).

Can anyone advice on these, for the value and money. And which one is easier to implement?

Do we have any sample website can show how the report works?

Thank you.

Regards,
Nelson

13
Hi,

I need to read a file to get the last running number and put it to current form invoice number, may I know how and where can I embed to read the other file value and assign to invoice number?

Another question is, from the example I know that invoice ID must be unique and auto number, in order to link to child file when inserting record. My current file structure is not cater for this and already got stable Win app running. So, can I assign the value to invoice number, then user must Save then only continue on invoice item section? How can I press Save and remain on the form and unhide invoice detail section?

Sorry, I am just new to Nettalk, and rushing program to meet deadline, so post question here.

Thank you.

Pages: [1]