NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Alberto on March 04, 2020, 07:25:31 AM
-
How to change the button text when a proccess has been finished?
Or how to open a popup message when the procces are finished?
-
https://www.capesoft.com/docs/NetTalk11/NetWebReports.htm#ReportProgressBars
-
When making a Report the user knows its ready because it sees it.
My subject "Progress and Start button" is wrong.
I use the FileUpload to upload a file, this works ok.
then I have button to proccess this file importing it to a data base.
How to message the user to inform that the import proc has been finished OK or has some error or so?
-
The concept for the progress field is the same for processing your import as procesing records for a report.
In your import procedure, just set the progress value per the docs as usual.
Then, in the form where your progress field is located, find where the progress is updated. You should find a variable called Loc:Progress. If I remember correctly, you should find a condition like:
If Loc:Progress = 100 ...
Add your code based on that condition to call a popup message or inform the user with the generated "hyperlink."
Good luck,
Don