PxPlus User Forum

Twitter Twitter Twitter

Author Topic: LIST OF OBJECTS  (Read 1480 times)

joe

  • Silver Member
  • ***
  • Posts: 30
    • View Profile
LIST OF OBJECTS
« on: May 27, 2020, 04:15:43 PM »
I have an old XP machine where I can enter DEF OBJECT X, "[WDX]*" and get a long list of objects I can connect to.
On a windows 7 machine the list is far shorter and I don't see the one I need. I have tried to re-register the OCX to no avail.
Any tips on register an OCX for use with WINDX.

joe

  • Silver Member
  • ***
  • Posts: 30
    • View Profile
Re: LIST OF OBJECTS
« Reply #1 on: May 28, 2020, 12:32:44 PM »
A little more info on this subject. It appears it may be windx issue. The machine that fails is running version 9.10

hopefully that will jog a memory from some of the old timers.  ;)

Josh Fake

  • Member
  • **
  • Posts: 13
    • View Profile
    • Earnest & Associates
Re: LIST OF OBJECTS
« Reply #2 on: June 02, 2020, 12:45:16 PM »
I am not sure when the introduction of powershell was introduced to windows, but I have also found the same command def object x,"*" to be very limiting regardless if on the server or via a windx client.

If the Windows 7 client has powershell, you can always use the following command to retrieve a list of ActiveX objects you can instantiate although many are O/S specific.

gci HKLM:\Software\Classes -ea 0| ? {$_.PSChildName -match '^\w+\.\w+$' -and
(gp "$($_.PSPath)\CLSID" -ea 0)} | ft PSChildName

Hope this helps!

Mike King

  • Diamond Member
  • *****
  • Posts: 3810
  • Mike King
    • View Profile
    • BBSysco Consulting
Re: LIST OF OBJECTS
« Reply #3 on: June 02, 2020, 01:34:16 PM »
This functionality still works on Windows 10.

Perhaps the OCX you are looking for is not installed or available on the PC that is running WindX.

What specific OCX are you looking for?
Mike King
President - BBSysco Consulting
eMail: mike.king@bbsysco.com

Peter.Higgins

  • Diamond Member
  • *****
  • Posts: 124
    • View Profile
Re: LIST OF OBJECTS
« Reply #4 on: August 18, 2020, 05:40:22 PM »
Thanks Josh,
I saved your answer for a rainy day.  Hope you are doing well.