i'm having a problem with the Microsoft Communications Controller - ie the serial/modem ocx (mine is from VB6)
the problem is trying to read the input buffer ...
...
DataRead := msComm.Input;
...
my code works 100% in VB, but Navision seems to think that the .Input command requires a parameter ...
[VARIANT Input :=] msComm.Input(VARIANT Input)
if I try the following syntax ...
msComm.INPUT(DataRead);
then the ocx complains that .INPUT is read only
and no the following doesn't work either
DataRead := msComm.INPUT(DataRead); //try anything!
Hope you can help!
Darrell
0
Comments
You should write an OCX wrapper ...
Ludo