J
John
The database that I am using contains 4 public variables listed below.
Public EmuID As String
Public PMR As String
Public FirstN As String
Public LastN As String
Function GetValueFirstN()
GetValueFirstN = FirstN
End Function
Function GetValueLastN()
GetValueLastN = LastN
End Function
Function GetValuePMR()
GetValuePMR = PMR
End Function
Function GetValueEmuID()
GetValueEmuID = EmuID
End Function
Should I be using Dim statements with each vairable such as
Dim EmuID as String?
I tried this earlier, but it did not seem to work. Maybe I was doing
something wrong.
Thanks for you help
Public EmuID As String
Public PMR As String
Public FirstN As String
Public LastN As String
Function GetValueFirstN()
GetValueFirstN = FirstN
End Function
Function GetValueLastN()
GetValueLastN = LastN
End Function
Function GetValuePMR()
GetValuePMR = PMR
End Function
Function GetValueEmuID()
GetValueEmuID = EmuID
End Function
Should I be using Dim statements with each vairable such as
Dim EmuID as String?
I tried this earlier, but it did not seem to work. Maybe I was doing
something wrong.
Thanks for you help