Menu

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.

Show posts Menu

Messages - Devon Austen

#1
Programming / Re: 90wres32.dll
Today at 09:44:35 AM
That dll is a Sage dll and PxPlus does not reference it itself.

It is likely that you have a START_UP program or ini file that references it.

Or you are running an application that references it.

The error is either it can't find it or it can't load it maybe because the pxplus is 64-bit and the dll is 32-bit?
#2
The v23 PxPlus was actually built on Tahoe. The downloads page was not updated correctly and we will fix that.

The file is technically a TGZ file but has the TAZ extension.

If you do a Open With and select the Archive Utility it will extract the contents. You can also from the terminal extract it with the command

tar -xzvf pxp2300-0000-MM1-64.taz

Instructions for UNIX/Linux PxPlus installation and be found here: https://manual.pvxplus.com/page/PxPlus%20Installation%20and%20Configuration/Installation%20Instructions/UNIX%20and%20Linux%20Installation.htm
#3
The errors in your program is because of the new lines.

In pxplus the if block of code needs to be 1 line of code.

You can fix it by doing something like

if a=b then {
a=1
b=2
} else {
a=0
b=0
}

You can also just get rid of the new lines and have it be one line of code. If in the preferences you set edited list it will display it as multiple lines of code.


Also QrySelcia:companycode$="" is not correct syntax. What are you trying to check with the if condition?

maybe you just want companycode$=""?


#4
Is this what you are trying to do?

PROCESS "MY_QUERY","mylib.en", SelectedVal$
! After the query closes, SelectedVal$ holds what the user selected
IF SelectedVal$ <> "" THEN %MY_GLOBAL$ = SelectedVal$
#5
Try closing vs code and reopening it. Maybe got in a bad state from previous attempt with bad config.
#6
Try specifying winterm and the ssh pxplus path from the vs code settings in the connection manager as well.
#7
Can you make a ssh connection from the pxplus windx connection manager using the same info?
#8
/home/palenik/pxp23

This looks like it is pointing to a directory and not the pxplus executable.

Try

/home/palenik/pxp23/pxplus

assuming you haven't renamed the PxPlus executable.

Also make sure you click the link to save the ssh password.
#9
So that error tells you the issue may be in your settings.

1) Verify that the path to PxPlus points to the install directory of the WindX 2026 plug-in. The path should be that of the directory where you would find pxplus.exe but not include pxplus.exe in the path i.e. (C:\PVX Plus Technologies\WindX Plugin-64 2026).

2) Verify that you have set WindX to SSH and that you have pointed it to the correct server url

3) Verify you specified the correct port for SSH almost always 22. The default port is 4093 which is the simple cs port not the ssh port.

4) Verify that the ssh specific settings are correct i.e username, make sure you click the link to set the ssh password

5) Verify the path to pxplus is the path to the pxplus on the Linux server i.e. /pxplus64/pxplus (note this time the path should include the executable name).

If after verifying all of the above and you still have issues you click the gear icon on the bottom left, then click settings, then in the window opened click the Open Settings (JSON) button. It is on the top right corner of the window the left most button of the group of buttons.

You can then copy and paste the results here making sure to scrub the output of any urls, usernames, passwords, sensitive paths etc.

Then we can see what all your settings are to help find the issue.
#10
Have you used the PxPlus icon on the top right or from the explorer view added a PxPlus workspace folder?

#11
Have you opened up a PxPlus workspace in vs code before trying to create a pxplus program?

If you open up a existing program does it work do you get a error?
#12
Hi Martin,

When creating a button and not customizing it PxPlus will use a default Windows button that is 3d looking and rounded and has a hover color around the border.

As soon as you start customizing the look of the button PxPlus has to draw that button itself. This means that all the colors are controlled by the properties. By default there is no hover border color but it can be set. You can set it via the HoverBorderColor$ property via code (Post display logic) or you can set it via a visual class/theme. There is also a hover color attribute that will change the color of the text on hover for you if you like that instead of the border color change.
#13
Have you tried to use PxPlus to access it and are getting and error or are you asking what to use?

Any version of PxPlus should be able to open and read the old PVX data file. You could also use the PxPlus SQL ODBC driver if you want to be able to access the data using software that supports ODBC like Excel.

#14
Programming / Re: PVX.ini
May 11, 2026, 03:53:22 PM
Here is the doc that describes the different options that can be in the INI file.

https://manual.pvxplus.com/page/PxPlus%20Installation%20and%20Configuration/Customizing%20PxPlus/INI%20Contents.htm

If you added more things to the screen and it no longer fits why not make the screen bigger?

Changing the font can allow you to fit more on the screen. Is this what you are thinking of?
#15
Programming / Re: XCOPY
May 08, 2026, 10:10:38 AM
If you want to transfer a file you can use:


CALL "*plus/wdx/util;Get_from_wdx", windx_file$, host_file$, asciiflg


https://manual.pvxplus.com/page/windx/autoload.htm#manual