News:

Official release of PxPlus 2025 Update 1 (version 22.10)  NOW available for download.

Main Menu

Recent posts

#81
Thin Client/WindX / Re: Auth Failure error
Last post by Mike King - November 04, 2025, 11:48:53 AM
You are most welcome.
#82
Thin Client/WindX / Re: Auth Failure error
Last post by yonman - November 04, 2025, 10:16:15 AM
Thank you Mike....in all the years, I never needed to this resolution.  And thank you for posting it!  Worked for me.

As per Mike:
Try removing the WindX INI file which contains the authorization information.

It should be:

C:\Users\<username>\AppData\Roaming\PxPlus\windxcfg.ini

Thank you, Mike!
#83
General Announcements / PVX Plus October 2025 Update
Last post by PxPlus - November 03, 2025, 08:12:13 PM
Keep up to date with what's happening at PVX Plus.  Please see our latest newsletter where you will find links to our DireXions+ 2025 presentations.

October 2025 Newsletter
#84
Programming / Re: JSON get_num validation
Last post by martinp - November 03, 2025, 01:13:45 PM
Hey, I was having an issue with this but with GET_STR$

I see now if I pass GET_STR$(X$,1)  It returns null and no longer errors out. 

If I pass GET_STR$(X$,0) and X$ was not found in the data, the the error 11 isn't trapped

a serious error in: json.pvc 0484 error 11 results.  Shouldn't that  be trapped either way or did you want a hard error there?

Shouldn't the ,DOM=*NEXT   directive work there or?

Thanks for clarifying.
#85
Language / Re: Dialog Background Color
Last post by Devon Austen - November 03, 2025, 08:23:10 AM
PRINT 'DIALOGUE'(0, 0, 60, 10, "Sample", 'WHITE' + '_BLUE', OPT="-mMSXZ")


This sets the foreground color to white and the background color to blue. You can replace 'WHITE' and 'BLUE' with any other valid color names as supported by PxPlus.
#86
Language / Dialog Background Color
Last post by CW - October 31, 2025, 06:56:12 PM
When creating a popup window using PRINT 'DIALOG"(), how do you change the background color of the window?
#87
Nomads / Sort / Hidden Rows
Last post by Jeffrey Ferreira - October 28, 2025, 11:18:56 AM
Hello List,

I have a grid where some of the rows are hidden. But when they click on Header Sort. Those rows become visible. I have developed a work around to deal with this but it is kind of clunky. Question when a user clicks a header on a grid to sort does it send any kind of signal that i can trap for an re-evaluate which rows should be hidden?

i hide the rows because of filters and it takes so long to load data into grid.

thanks

jeff
#88
General Announcements / DireXions+ 2025
Last post by PxPlus - October 27, 2025, 11:55:25 AM
Thank You for Joining DireXions+ 2025!

We want to extend a huge thank you to everyone who attended our Virtual DireXions+ 2025 Conference!

Over the course of three days, we welcomed more than 100 attendees who joined us to explore the latest innovations from PVX Plus. Participants learned about our powerful .NET Interface, the flexibility of our new JSON Object, the exciting potential of our AI Assistant and much more.

We appreciate your engagement, questions, and enthusiasm — your participation made this year's event a great success!

Here's to continuing innovation and connection throughout the year ahead.

#89
Off Topic / Re: Letting AI Write, Fix, and...
Last post by Kevin - October 27, 2025, 06:51:56 AM
We've released a significant update to our claude-pxplus-template that improves performance, context efficiency, and accuracy.
 
What's New:
 
🚀 Dedicated MCP Server
- Moved from embedded documentation to a specialized MCP server for PxPlus.
- Reduced context usage - documentation is now fetched on-demand via indexed search instead of Claude having to scan through markdown files.
- Faster response times - Claude can now quickly search through all PxPlus docs without context overhead
- Built-in syntax checking for PxPlus files (when PxPlus executable path is configured)
- Built-in compilation tool for PxPlus files (when PxPlus executable path is configured)
 
📦 One-Command Installation & Updates for VSCode
bash -c "$(curl -sSL https://raw.githubusercontent.com/Astecom/claude-pxplus-template/master/install.sh)"
- Automated setup process checks prerequisites and installs everything
- Run the same command to update to the latest version
- Smart CLAUDE.md handling - creates new or appends to existing without removing your custom instructions
#90
Programming / Re: JSON get_num validation
Last post by Aaron Woodhouse - October 24, 2025, 09:14:52 AM
Hi Rob!

Using the get_num function normally without the no_validation flag will return an error 11 if the key doesn't exist. It does some checks within the object's keys to make sure your provided key will work.

If you use the no_validation flag, it will skip this initial key check, and instead return an error 23 since it can't actually find the value.

It will return an error either way, but the key validator would tell you the issue is due to the key, not that there is no value.