PxPlus User Forum

Twitter Twitter Twitter

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.


Messages - Cedric

Pages: 1 [2]
16
Thin Client/WindX / Re: Windx Memory access violation?
« on: March 06, 2021, 10:30:00 AM »
Hey guys,

just a quick note that we still struggle with this problem.  I'm pretty sure something is wrong in PVX17...  I had another customer which was using V11 for a cupple of years without any issues.  Now, I have updated their server and Windx to the latest V17.10 and suddenly some users are facing that error (freezes and process stops responding on Client's PC).  It's not all users though....  I've noticed that users that had older computers with less RAM and are using Ms Teams has the issue.(it crashes 7-8 times a day)  I have disabled MsTeams and rebooted the PC and the problem seemed to have disapeared.   Now, not sure if the problem is with MsTeams or just the fact the MsTeams uses lots of Ram ( on a 4Gb Win7 64bits PC ) and causing the issue with PVX.  But, the problem wasn't present with V11 though...  Anyway, if someone reads this and knows about this, your help would be appreciated!

thanks

17
Thin Client/WindX / Re: Windx Memory access violation?
« on: November 30, 2020, 05:07:04 PM »
I'm using V16.20 on server side... The error is random... Normally, users call me just after the fact, so I rarely see it from my eyes!  I've experienced it once last week and it was while loading the main page. That screen is basically just buttons, menus, text and frames.  The buttons all have an icon (some are pvx native icons, but some are images (ICO, GIF, BMP, PNG or JPG) stored on the client PC).


18
Thin Client/WindX / Windx Memory access violation?
« on: November 30, 2020, 02:42:25 PM »
Am I the only one having problems with "memory access violation" randomly on the client side (windx) while loading a screen since updated to V16.  It's not necessarily the same screen loading... could be any screen.  Some day, users don't experience the issues at all,  but other days it could happen 5-6 times a day.  Not all client has the issues, but I'd say probably 50 out of 90 clients has reported the problem.

Somebody understands the log attached? (from windx)

19
Programming / Re: JSON - now array in V16?
« on: September 22, 2020, 06:29:24 PM »
Cool!  That works!  Thanks!

20
Programming / JSON - now array in V16?
« on: September 20, 2020, 10:28:16 AM »
Hey guys,

I'm struggling with JSON strings!  PxPLus has changed something at some point and the format is now different causing my third party applications (mobile app and website) to not work with this newer Pxplus version.

Here's a simple code:

test$["44451"]="dfgdfgd"
test$["66662"]="tttteeee"
print Dim(List test${ALL})            


In PxPLus V15 or lower it returns:
{"44451":"dfgdfgd","66662":"tttteeee"}

In PxPLus V16 or Higher, it returns:
["dfgdfgd","tttteeee"]


Evertime the key is a number, it does that!?  This is causing big issues as we use JSONs a lot to send structured data.  I have patched a few of my critical functions to add some special characters in front of the key to remove it after the Json string generation.  But this requires me to revise all my programs which is far from ideal!

Is there a fix for this?




21
Programming / Re: *Browser object full screen?
« on: September 08, 2020, 06:12:44 PM »
non Nomads...

22
Programming / Re: *Browser object full screen?
« on: September 08, 2020, 07:28:21 AM »
No, I mean... Create a window that contains the Browser object that can be resizable and maximized if needed. (just like a normal browser)
In other words, make the Browser object grow within the window?

23
Programming / *Browser object full screen?
« on: September 04, 2020, 10:45:29 AM »
Hi,

wondering if possible to open a Browser object in full screen just like a normal window/browser?

24
Programming / Dragging cells within table
« on: August 28, 2020, 04:59:17 AM »
Hi,

I'm trying to make my appointment module a bit more user friendly and was trying to use the drag and drop feature within the same table.  Is that even doable in Pxplus?  I think not since cells do not have IDs?   

25
Programming / Re: search installed Excel
« on: July 11, 2018, 01:52:00 PM »
Why not just try to open an Excel object?  If it fails, Excel isn't available?

while 1
  ExcelAvailable=0
  def object EXCEL,"[WDX]Excel.Application",err=*break
  delete object EXCEL,err=*next
  ExcelAvailable=1
  break
wend

Pages: 1 [2]