gstylianou
Registered User.
- Local time
- Tomorrow, 01:16
- Joined
- Dec 16, 2013
- Messages
- 359
I have a Public Function like the example below. X is a String inside the function and takes value from a field in a form. The question is how can I refer to String X through another function or through a another form? I want to use another function to refer to the result of X in SetValuesFromForm, can something like this be done?
Public Function SetValuesFromForm()
Dim X As String
X= Forms!Form1.TextField1
End Function
Public Function SetValuesFromForm()
Dim X As String
X= Forms!Form1.TextField1
End Function