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.
Pages: [1] 2
1
Web Server - Ask For Help / Using <!-- Net: to call form or procedure
« on: January 14, 2015, 09:36:28 PM »
Hi,
is there an example around which shows how to call a procedure or form by using <!-- Net:... --> ?
TIA
Hector
is there an example around which shows how to call a procedure or form by using <!-- Net:... --> ?
TIA
Hector
2
Web Server - Ask For Help / Change template port number
« on: January 12, 2015, 10:29:17 AM »
Hi,
Is there a way to change on the fly, the port number assigned in the NT template?
I want to read the listening port from a file instead of assigning it in the template.
TIA
Hector
Is there a way to change on the fly, the port number assigned in the NT template?
I want to read the listening port from a file instead of assigning it in the template.
TIA
Hector
3
Web Server - Ask For Help / Identify from which location a record is saved
« on: December 31, 2014, 09:41:35 AM »
Hi,
I have a customer with various locations. He wants to identify on which location a record is
created.
I though to have a code in the user record, but a user can be rotated from on location to another. So, the supervisor must amnually change the location in the user record. Is the record is not updated, then the wrong location will
be on each record saved by the user.
The other approach is to identify the PC which is inserting the record, and use the IP as the location identifier.
The PC is most likely not being moved from one location to other.
Is there a way to get the local computer IP address, name or other information?
TIA
Hector
I have a customer with various locations. He wants to identify on which location a record is
created.
I though to have a code in the user record, but a user can be rotated from on location to another. So, the supervisor must amnually change the location in the user record. Is the record is not updated, then the wrong location will
be on each record saved by the user.
The other approach is to identify the PC which is inserting the record, and use the IP as the location identifier.
The PC is most likely not being moved from one location to other.
Is there a way to get the local computer IP address, name or other information?
TIA
Hector
4
Web Server - Ask For Help / Re: p_web.FileToSessionQueue seems not to be working
« on: October 06, 2014, 01:36:25 PM »
Hi Bruce,
Thanks for help.
It works as a charm!
Thanks for help.
It works as a charm!
5
Web Server - Ask For Help / Re: p_web.FileToSessionQueue seems not to be working
« on: October 05, 2014, 09:55:47 AM »
Hi Robert,
Maybe I'm using the wrong embed, as it does not seem to work even tough I can read the record.

Maybe is a bug in version 7.6.
Maybe I'm using the wrong embed, as it does not seem to work even tough I can read the record.

Maybe is a bug in version 7.6.
6
Web Server - Ask For Help / p_web.FileToSessionQueue seems not to be working
« on: October 03, 2014, 08:31:13 AM »
Hi,
I'm trying to read data from a form to a secondary file. It seems that is reading the second file but
when displaying data from the second file, it is just blank. Using NTWS 7.26.
Here is the code I'm using:
DO OPENFILES
INS1:NumSoc= PEN:NumSoc
Get(INFSOCW,INS1:KeyNumSoc)
message(PEN:NumSoc) !Correct number is displayed
p_web._LoadRecord(Infsocw,INS1:KeyNumSoc)
message(INS1:Dir1) ! Data is displayed
p_web.FileToSessionQueue(INFSOCW)
p_web.SSV('dir1',INS1:Dir1)
message(p_web.GSV('Dir1')) ! Blanks are displayed
DO CLOSEFILES
Thanks for any help.
I'm trying to read data from a form to a secondary file. It seems that is reading the second file but
when displaying data from the second file, it is just blank. Using NTWS 7.26.
Here is the code I'm using:
DO OPENFILES
INS1:NumSoc= PEN:NumSoc
Get(INFSOCW,INS1:KeyNumSoc)
message(PEN:NumSoc) !Correct number is displayed
p_web._LoadRecord(Infsocw,INS1:KeyNumSoc)
message(INS1:Dir1) ! Data is displayed
p_web.FileToSessionQueue(INFSOCW)
p_web.SSV('dir1',INS1:Dir1)
message(p_web.GSV('Dir1')) ! Blanks are displayed
DO CLOSEFILES
Thanks for any help.
7
Web Server - Ask For Help / Re: Filter browse by date
« on: October 18, 2012, 07:34:51 PM »
Hi ron,
Are there any calendar control that I can place in a form so the user can select dates?
Hector
Are there any calendar control that I can place in a form so the user can select dates?
Hector
8
Web Server - Ask For Help / Re: Filter browse by date
« on: October 18, 2012, 12:24:50 PM »
Hi Bruce,
any sample with date control handling? I want the user select select the date range.
Regards
Hector
any sample with date control handling? I want the user select select the date range.
Regards
Hector
9
Web Server - Ask For Help / Filter browse by date
« on: October 17, 2012, 12:20:33 PM »
Hi,
How can I filter a browse by using date control?
TIA
Hector Pabon
How can I filter a browse by using date control?
TIA
Hector Pabon
10
Web Server - Ask For Help / Re: Delete session variables if user doesn't click logout
« on: June 29, 2012, 06:54:27 AM »
Hi Bruce,
If the user turn of the browser, it means that variables simply are cleaned by itself?
If that the case, then there will be nothing to worry about some values stay in memory. Correct?
Regards
Hector
If the user turn of the browser, it means that variables simply are cleaned by itself?
If that the case, then there will be nothing to worry about some values stay in memory. Correct?
Regards
Hector
11
Web Server - Ask For Help / Re: Delete session data from file if user doesn't use log out
« on: June 29, 2012, 06:48:25 AM »
Hi Rob,
I don't think session time-out will work here, as closing the browser is not the normal flow when you do a log in.
Then, consider the PC OS freezing and user has to reboot. That is like closing abruptly the browser.
Closing the browser without log in out is not a normal event or processing. And I need to clean what ever data is in the file for that session or user after a non-normal session closing.
If its there no way to clean files when the user does not log out and simply close the browse, then garbage will stay for ever in the file.
Hector
I don't think session time-out will work here, as closing the browser is not the normal flow when you do a log in.
Then, consider the PC OS freezing and user has to reboot. That is like closing abruptly the browser.
Closing the browser without log in out is not a normal event or processing. And I need to clean what ever data is in the file for that session or user after a non-normal session closing.
If its there no way to clean files when the user does not log out and simply close the browse, then garbage will stay for ever in the file.
Hector
12
Web Server - Ask For Help / Delete session data from file if user doesn't use log out
« on: June 28, 2012, 08:18:14 PM »
Hi all,
How to delete session data from a TPS file if the user
doesn't click the log out button?
Regards
Hector
How to delete session data from a TPS file if the user
doesn't click the log out button?
Regards
Hector
13
Web Server - Ask For Help / Delete session variables if user doesn't click logout
« on: June 28, 2012, 07:56:07 PM »
Hello,
How can I delete the session values if the user does not click "log out" and
simply closes the browser?
TIA
Hector
How can I delete the session values if the user does not click "log out" and
simply closes the browser?
TIA
Hector
14
Web Server - Ask For Help / Re: Display values/fields in top of form
« on: June 23, 2012, 06:59:32 PM »
Hi,
I found the answer to my question:
<DIV class="wp-nombre-div">
<!-- Net:s:MyName -->
<!-- Net:s:MyAddress -->
</DIV>
And then play with the .CSS file.
I found the answer to my question:

<DIV class="wp-nombre-div">
<!-- Net:s:MyName -->
<!-- Net:s:MyAddress -->
</DIV>
And then play with the .CSS file.
15
Web Server - Ask For Help / Re: Display values/fields in top of form
« on: June 23, 2012, 06:34:18 PM »
Hi Don,
Thanks for the reply.
Now, how can I position the fields in a specific position?
Thanks in advance.
Thanks for the reply.
Now, how can I position the fields in a specific position?
Thanks in advance.
Pages: [1] 2