What I am missing here I got this code
VB Code:
Public Enum ProcesorType PLC3 = 0 PLC5_250 = 1 PLC5 = 2 SLC500 = 3 MicroLogix1000 = 4 End Enum Public Property Let ProcessorType(ByVal vData As ProcesorType) On Error Resume Next mvarProcessorType = vData End Property Public Property Get ProcessorType() As ProcesorType On Error Resume Next ProcessorType = mvarProcessorType End Property
My problem is why I am getting for example a 4 when I am requesting the value of the ProcessorType Property rather than MicroLogix1000
Any help would be appreciated
Best regards Hidroilio Pérez![]()




Reply With Quote