- Aug
- 2,799
- 144
Code does not work in v36, but worked in v35.
test.btm
Joe
test.btm
Code:
pshell /s "$jlc = new-object -com jlcUtils.clsMath"
pshell /s "$jlc | Get-Member"
Code:
E:\Utils>ver
TCC 35.00.21 x64 Windows 10 [Version 10.0.19045.7058]
E:\Utils>r:\test.btm
pshell /s "$jlc = new-object -com jlcUtils.clsMath"
pshell /s "$jlc | Get-Member"
TypeName: System.__ComObject#{6952cf31-c8e9-40a2-8e84-e3b7d2122072}
Name MemberType Definition
---- ---------- ----------
ppp Method Variant ppp (Variant)
vb6Val Method double vb6Val (string)
World Method Variant World (string)
Code:
R:\>ver
TCC 36.00.17 x64 Windows 10 [Version 10.0.19045.7058]
R:\>test.btm
pshell /s "$jlc = new-object -com jlcUtils.clsMath"
pshell /s "$jlc | Get-Member"
PSHELL: You must specify an object for the Get-Member cmdlet.
Joe