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 - Susan Cryderman

#1
Exactly
#2
Sorry - my previous post should have read 'PxPlus 2023 Update 1'.
#3
Hi again Paula,

While we will investigate updating the NOMADS search you are using to also allow Dependency Logic to be searched, it occurred to me that there is another utility you may want to consider using.  For PxPlus 29023 Update 1, we added new functionality to the Library Bulk Edit and Search Utility to allow searches of NOMADS library files.

The utility you are currently using is only searching specific fields (corresponding to the selected check boxes) in the library files.  This Library Bulk and Search utility searches the entire contents of each record in the library file and displays matching records.  By examining the records it should be possible to determine the exact panel, control and attribute for each match.

For more information:
https://manual.pvxplus.com/PXPLUS/NOMADS%20Graphical%20Application/NOMADS%20Development/Maintaining%20Library%20Objects/Library%20Bulk%20Edit.htm

#4
We have opened a Support Ticket in your name - so you should be notified when we update the ticket.
#5
Hi Paula,

Thanks for bringing this to our attention.

We can duplicate the issue and will create a support ticket for tracking the fix required.
#6
Nomads / Re: Extended Class Validation - Padding Key Value
September 18, 2024, 02:11:48 PM
Thanks for the explanation.  Unfortunately, I don't think that there is currently any way to achieve this. 

However, can you tell me if you are using the Data Dictionary and if so - what is the Format for the element that is used for the key? 
#7
Nomads / Re: Maintenance Generation Error #26
September 18, 2024, 01:52:14 PM
Thanks very much for reporting this issue and the solution!  We will ensure the program is updated prior to the next release.

We will also review the code with respect to the performance issues you are seeing using WindX. 
#8
Hi Josh,

Thanks for your question.  Unfortunately the *obj/excel.pvc object does not yet have this functionality.  We will look into adding this for an upcoming release.
#9
Off Topic / Re: Possible error in query logic?
May 21, 2024, 10:54:18 AM
It looks like the query definition for the multi-line control is not quite correct.  To use *win/email and *win/url the query for the multi-line control should be defined with Query Type of Query Program rather than Non-Query Logic.


There is documentation about these 'service' queries at:

https://manual.pvxplus.com/PXPLUS/NOMADS%20Graphical%20Application/Dictionary-Based%20Development/Query%20Subsystem/Service%20Queries%20for%20Web,%20Email%20and%20Map.htm
#10
Phil,

The difficulty here is that (I'm assuming) the list or printers needed is variable.  Because of this, the data needed for the drop box needs to be written to a memory file.

I tried the following and it seems to work (although I have not coded a Printer_Validate method).

1) Edited the _fm_panel_iol$ hidden variable in the html file to include printer$
2) Included the following code for the printer drop box:

[row "*\[show usefile field=printer$\]:"][list printer$ size=20 event=Printer_Validate program=c:\webster\prog\tools][/list][/row]<br>

3) Coded the c:\webster\prog/tools program to load a memory file as follows:

! tools - load printer list
!
  ENTER fileno
!
  OPEN (HFN)"*memory*"
  fileno=LFO
!
  printer_list$="Printer A/Printer B/Printer C/"
  FOR val$ FROM printer_list$
  WRITE (fileno,KEY=val$)
  NEXT
!
  EXIT 

You would need to edit your Printer_List method accordingly.

Hope this helps!
#11
Phil,

Just for clarification - you may NOT want to use the File Maintenance Generator method for adding the hidden variable as this would over-write the previous edits you made to the html file.
#12
Hi Phil,

If I'm understanding this correctly - printer$ is the element in the data file being maintained and printerList$ is the delimited list of available printers (that is not an element in the data file).

I have not tried this - but it sounds like you might need to add a Hidden Variable to the form.  You can do this by adding a line using the [hide] short code to the generated html page that looks something like:

[hide printerList$ value=""]

- or -

If you are running PxPlus 2022 or later, you should be able to also do this from within the File Maintenance Generator.  Press the Hidden Variables button on Step 6 and add an Additional Variable of printerList$.
#13
Nomads / Re: Copying a Panel
January 18, 2024, 10:39:05 AM
I believe the only difference is that the "OK" button leaves the Copy Screen Objects dialog while the "Apply" button leaves you in the dialog,
#14
We are having some difficulty determining the exact window you are referring to.

Could you perhaps detail the exact steps you follow to display the window or, better yet, attach a screen shot of the the window that is too short?   

Thanks!
#15
Programming / Re: DEF OBJECT WORD
November 06, 2023, 09:53:39 AM
Not sure if this will help - but in PxPlus 2017 we added a PxPlus Word Object to simplify interactions with Word.  It may make translating your existing code easier.

You should be able to see the documentation for this object at the link below:

https://manual.pvxplus.com/PXPLUS/PxPlus%20User%20Guide/External%20Components/PxPlus%20COM%20Support/Word%20Object.htm