PxPlus User Forum

Twitter Twitter Twitter

Recent Posts

Pages: 1 ... 8 9 [10]
91
Programming / Re: IT editor: Go To line focus
« Last post by Len Vassos on March 01, 2024, 11:01:37 AM »
Paula,

Have you tried setting 'List from top after Goto' option found in the Options menu selection? 
92
Programming / IT editor: Go To line focus
« Last post by PMM_CAI on March 01, 2024, 10:14:25 AM »
(I wasn't sure how to word the subject line)  ;)

In the IT editor, if I go to a particular line -- let's say the first line in a routine/method -- is there a way to have the line load at the top of the display? The line in question loads partway down the screen, and I often have to scroll down to see the entirety of a routine that I might not need to if that first line appeared at the top. (By the way, we use line numbers in our installation.)

Just wondering if there's a way, for efficiency's sake. Thanks in advance!

Paula McKeever
CAI Software LLC
93
Webster Plus / Re: EZWeb takes approx 20 seconds for actions
« Last post by Mike King on February 29, 2024, 04:04:02 PM »
That sounds like it would work.  The actual waiting page could be generated by Webster+ since a page that is being displayed and idle waiting to request an update itself would not consume a user slot.  Basically the user slot will only be used while Webster generates the page, not while its displayed.  Actually this is one of main benefits of developing using Webster+.  Less active resources used on the server.

Now if you only need to update the display every 5 minutes (300 seconds) and assuming your logic can generate the response in 1/2 second (which is likely an overkill) for 1000 users you likely only need a 2-3 user license (with 1/2 second processing 300 seconds will allow for 600 requests).

Let us know if you need any help.
94
ODBC / Re: UPdtae table send me message column not found
« Last post by eldonfsr on February 29, 2024, 11:41:26 AM »
Thanks so much for your replay  i appreciate this.
 
there a way from command line run utility to fix that problem... because i don't have nomads  for 32 bits...the version i have is 64 bits and don't know could affect all information on table.
95
ODBC / Re: UPdtae table send me message column not found
« Last post by EVa on February 29, 2024, 05:44:45 AM »
I can't help you with that - you need to contact whoever created the file/dictionary entry as it looks like these do not match.
96
Webster Plus / Re: EZWeb takes approx 20 seconds for actions
« Last post by jhendrickx00 on February 28, 2024, 03:32:05 PM »
Hi Mike thanks for your (very) valuable feedback; the 'background problem' can arise because some of this 'notifications' can be money-related (Money on place/The delivery took the money/Money at warehouse/Money left place X/...), and of course, this could be very atractive to someone with 'not so clear intentions', so the security is important ... we consider to develop a HTML page (no Webster/PxP+) and refresh it every 5 minutes or so, then call the Webster+page, if there changes, show the changed, update the results and be back to the 'wating page', but still we're just gathering info; my first goal was to try to keep the development with an all-pxplus solution, but perhaps using a mix one should get better results.

Jean H//
97
Webster Plus / Re: EZWeb takes approx 20 seconds for actions
« Last post by Mike King on February 28, 2024, 10:35:43 AM »
I was thinking about your issue last night and wondering if perhaps the easiest solution for you would be to use RSS.

There are a number of free RSS readers for Windows and other platforms, many of which can reside in the task bar or run in the background and display an alert when an RSS feed changes. 

On the server you could create RSS files and have your  internet web server (Apache, IIS, etc) simply serve up the RSS file.  Depending on your needs you could have multiple RSS feeds, a global for all users, company specific feeds, even user specific feeds.  These RSS files could be updated on the server as required using PxPlus either as the events occur or by a background task.  As for load, most servers can easily handle 1000s of requests per minute if all they are doing is forwarding a data file (the RSS feed).  This avoids you having to worry about how many PxPlus licenses you might need as PxPlus would not be directly involved in the RSS request.

Of course a lot of this depends on exactly what your application requirements are, but using RSS might be a real simple solution.

BTW: Another solution might be to use something like WhatsApp to send messages.  This is something I am looking at presently.



98
ODBC / Re: UPdtae table send me message column not found
« Last post by eldonfsr on February 28, 2024, 09:26:13 AM »
The dictionary is of mas90 countrycode is string 3  and look only accept 2...
99
ODBC / Re: UPdtae table send me message column not found
« Last post by eldonfsr on February 28, 2024, 09:22:05 AM »
Thanks for you time and help me here image of my test and file definition... some look is take country as length of 2 but is 3 characters string..
100
ODBC / Re: UPdtae table send me message column not found
« Last post by EVa on February 28, 2024, 03:20:45 AM »
Doesn't happen here, but I don't have your dictionary information.  When my table has this data:

1:dump
ADDRESSLINE1$="addressline #1"
ADDRESSLINE2$="addressline #2"
ADDRESSLINE3$="addressline #3"
CITY$="City"
COUNTRYCODE$="USA"
CUSTOMERNAME$="Customer CMS00"
CUSTOMERNUMBER$="CMS"
DIVISION$="00"
STATE$="NY"

and I execute this update:  UPDATE AR1_CustomerMaster SET CustomerName='California Metal Services Inc ' ,AddressLine1= '1428 W Mission Road ',AddressLine2= '1430 ',AddressLine3= ' ',City='ESCONDIDO ' ,State= 'CA ' ,CountryCode= 'SA ' where   Division='00' and CustomerNumber='CMS'

the table then has this data:

1:dump
ADDRESSLINE1$="1428 W Mission Road "
ADDRESSLINE2$="1430 "
ADDRESSLINE3$=" "
CITY$="ESCONDIDO "
COUNTRYCODE$="SA "
CUSTOMERNAME$="California Metal Services Inc "
CUSTOMERNUMBER$="CMS"
DIVISION$="00"
STATE$="CA "

which is correct.  If this doesn't work for you, I would suspect that the dictionary information isn't correct.
Pages: 1 ... 8 9 [10]