I successfully can access Get method of class by ActiveX, but can't access Let property.
QAxObject *p = new QAxObject( "MyApp.Application", 0 );
p->dynamicCall("Signals(const QString& )","Sig0");// this will issue GET
p->dynamicCall("Signals(const QString& ,int)","Sig0",1);// doesn't work
VB code :
Public Property Get Signal(ByVal Key As Variant) As Long
Debug.Print Key
End Property
Public Property Let Signal(ByVal Key As Variant, ByVal Value As Long)
Debug.Print Key _ Value
End Property
My goal is to issue Let method.