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 - James Zukowski

Pages: 1 ... 17 18 [19] 20 21
271
Wish List / Re: Enumeration Sequencing
« on: October 25, 2018, 10:13:21 AM »
And there's also binary bit-flag generation to consider:

Flag.1=1,Flag.2=2*Flag.1,Flag.3=2*Flag.2,Flag.4=2*Flag.3

Not quite sure how to "translate" that.

Perhaps an extension of the SET--- directives might work. E.g.,

SETFLAGS Flag.1,Flag.2,Flag.3,Flag.4,...

and for enumerations:

SETENUM Opt.1,Opt.2,Opt.3,Opt.4,...

272
Nomads / Re: Folder Control
« on: October 25, 2018, 09:45:40 AM »
I'm not sure exactly what you're looking for, but have you looked into the Preserve Controls option on the Folder Tabs Definitions page?
https://manual.pvxplus.com/PXPLUS/NOMADS%20Graphical%20Application/Creating%20Panel%20Controls/Folder%20Controls/Folder%20Properties.htm

273
Programming / Re: slow msgbox
« on: October 10, 2018, 10:25:20 AM »
I've seen slow objects on non-local clients. We have a couple of remote locations around the country that experience some delays with folders, etc. Those are typically about 1 second per additional WindX transaction.

The creation of a MSGBOX - depending on options - can be multiple transactions. The first is the creation of the window. The second may be using a 'CAPTION' to set the title.

274
Nomads / Re: External-Only Data Elements
« on: October 09, 2018, 03:20:31 PM »
I agree.
Legacy programming.
'Nuf said.

275
Wish List / Enumeration Sequencing
« on: October 09, 2018, 11:39:30 AM »
There are times I'd like to have an ENUMeration-type directive available. I know the LET gets things done, but not having to repeat variable names would help.

E.g., instead of:

Code: [Select]
Opt.1=1,Opt.2=Opt.1+1,Opt.3=Opt.2+1,Opt.4=Opt.3+1
we would have something like:

Code: [Select]
ENUM Opt.1,Opt.2,Opt.3,Opt.4
Possibility?

276
Nomads / External-Only Data Elements
« on: October 08, 2018, 11:19:25 AM »
Since a NOMADS Data Element marked as External-Only is not supposed to take up space in the record, does it matter where in the list of data elements such a field is identified? Beginning, end, middle, mixed?

Thanks!

277
Wish List / Re: Non-Wildcard Search in Documentation
« on: September 18, 2018, 09:53:48 AM »
So there's no way to quote characters or strings? Nothing like "*star" or \*star ...?

278
Wish List / Non-Wildcard Search in Documentation
« on: September 17, 2018, 05:33:32 PM »
I wanted to help someone understand what was available with *next, *same, etc. Unfortunately, when I type *next or "*next" into the Search For box, it responds:
Quote
Words in your query may not start with the wild-card characters "?" or "*".
Can something be done to allow this type of entry for a search?
Thanks!

279
Language / Re: Radio Button Logic
« on: August 28, 2018, 09:56:36 AM »
Even after cleaning up the double-processing of the turning off the RB's (see https://forum1.pvxplus.com/index.php?topic=150.0), I still can't seem to get the When Receiving Focus logic to fire (msgbox "Pre-Op"; perform ...).

NOMADS panel on PxPlus 13.10 on RedHat Linux.

280
Language / Re: Radio Button Disabling
« on: August 27, 2018, 05:44:45 PM »
Your code worked here, too, so I took it even SLOOOOOOWer...

It turns out I was calling the reset routine twice: first when a Button is clicked, and again when the Tab exits. The first one worked fine (it had a valid value set). The second one failed (No longer a valid value, so it Errored). This has been corrected.

Thank you for your insistence! (And assistance!)

281
Language / Re: Radio Button Disabling
« on: August 27, 2018, 10:32:16 AM »
Mike:
The Enable/Disable Control works perfectly. Thanks!
The null assignment, however, not so much. Yes, it does clear the RB's, but it also throws Error #65.
I've also tried setting the 'ID to 0, but not apparent effect.

282
Language / Re: Radio Button Disabling
« on: August 27, 2018, 09:55:39 AM »
Any insights?

283
Language / Radio Button Disabling
« on: August 23, 2018, 06:55:35 PM »
A couple of questions on this:
  • Is it possible to Disable or Enable an entire Radio Button group with one statement, other than setting the group up in Group Assignment and using *wingrp?
  • Is it possible to "uncheck" all of the Radio Buttons in a group once one of them has been selected?
Thanks!

284
Language / Re: Radio Button Logic
« on: August 23, 2018, 03:55:54 PM »
Mike:
I've got that much down; thanks.
The problem I'm encountering is that when I tab into the RB group, the On Focus doesn't fire.
Perhaps it ties into the tabless folder. Tabbing out of the last control on the tab is supposed to go to the RB group. It seems, however, to ignore any remaining (non-visible) tabs, returning to the first defined tab (which is an empty page, and that's OK). The focus then lands on the RB group, with the last selected entry highlighted.

285
Language / Radio Button Logic
« on: August 23, 2018, 02:28:26 PM »
I'm setting up a panel with a set of Radio Buttons to control which Tab on a Tabless Folder to use. I've included a Perform routine for the RB's "When Receiving Focus" logic, but it never seems to execute. (ESCAPE as first statement doesn't happen.)
Is there something I'm missing?

Pages: 1 ... 17 18 [19] 20 21