My users need to have their GUI (7.30) set to high speed for my Excel VBA script to execute properly. I declared the public property IsLowSpeedConnection as shown below. I check the property once the connection is made and it always returns 0 regardless of the actual speed.
Public Property Get IsLowSpeedConnection() As Byte
End Property
If IsLowSpeedConnection <> 0 Then . . .
It seemed so simple when I started. Any suggestions where I've gone wrong?
Regards,
Jim