PaulSieben 0 Newbie Poster

Hi this is my first post here.

I am working in VB 6.0, creating my own ActiveX OCX to replace the MS COM and/or PDQ COM OCX for communication with a physical or virtual RS232 port. To be able to drop my new OCX right into an existing application built around one of the other two OCX's, I prefer to maintain the same names for properties, methods, and events.

I have a problem though with the .Input property, as "Input" is apparently a reserved word in VB 6.0. Is there a way for me to code a

Public Property Get Input As Byte()
...
End Property

, using the word Input, or must I alter the property name, and therefore also make a change in the application code which uses the OCX?

Paul