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
Programming / Dialogue Create Failure
« on: November 14, 2018, 10:55:09 AM »
Here's an interesting one: I've been creating a working command window on my 1920x1080 screen using:

Code: [Select]
print 'dialogue'(66,16,82,25,"Work Window",opt="-cX"),'show'(1),'sr','cs','black','_white','cs','df','black','_white','cs','df',
It works fine, but no menu bar. When I change the opt= to "-cMX", I get an Error message box window stating only "Create failure". However, it does seem to be partly created, as the cursor is now at the top of the creating window, but nothing is erased, and nothing echoes when typed, though the cursor moves. Popping the window returns me to where I started.

Any ideas?

PxPlus 13.10, Linux 5 server, WindX on Win7Pro

272
Wish List / Re: Enumeration Sequencing
« on: October 25, 2018, 11:26:53 AM »
That's an interesting approach, though I would probably make it a global object that's established on login without any dependencies. That way, we don't have to instantiate it when we want to use it; that's already done.

Also, to Thomas Bock's request, I might suggest an 'Assign (and possibly 'Assign$) method to use the first argument as the value to assign to the remaining list. I'm sure we can figure that part out from here.

Thanks for the different perspective!

273
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,...

274
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

275
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.

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

277
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?

278
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!

279
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 ...?

280
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!

281
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.

282
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!)

283
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.

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

285
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!

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