juster21
Well-known Member
- Joined
- Jun 3, 2005
- Messages
- 867
I am trying to get a function to work but the argument passed to it is a user defined type.
How do I create the argument which gets passed to the function?
and the function is...
How do I call the function???
How do I create the argument which gets passed to the function?
Code:
Public Type Employee
Name as string
Role as string
Salary as string
End Type
and the function is...
Code:
Public Function GetEmployeeInfo(ByRef EmpDescription as Employee) as String
How do I call the function???