Rick_Fla
Well-known member
Guess this is the best place of any to put this. What are they and why/where would they be used? I am still learning VB.NET and have just taking over a small application where I work. The previous developer here used these throughout the code, which cconfused me.
From what I could gather from my quick research, was they replace, or are used as booleans?
Sample of how this person used it:
Quest and MTR are drug collection companies if that makes any difference.
From what I could gather from my quick research, was they replace, or are used as booleans?
Sample of how this person used it:
Code:
Private Enum PID Field indexes for PID segment
Quest_AccessionNumber = 3
Quest_ChainOfCustodyNumber = 4
Quest_PatientName = 5
Quest_AccountNumber = 18
Quest_SSN = 19
MTR_ChainOfCustodyNumber = 2 See subfields below
MTR_AccessionNumber = 3 See subfields below
MTR_PatientName = 6
MTR_SSN = 19
End Enum
Quest and MTR are drug collection companies if that makes any difference.