philbullock1223
Registered User.
- Local time
- Today, 16:21
- Joined
- Dec 31, 2011
- Messages
- 55
I need to add a value a the form field Notes from a public function... the issue is that the form I add it to can varry (and I have about 100 forms).
Any suggestions?
Code:
Public Function FormAdd(FormName As String)
DoCmd.OpenForm FormName, OpenArgs:=0
DoCmd.GoToRecord , , acNewRec
FName = "[FormName]"
[Forms]!FName!Notes.Value = "Sample Notes" 'This is where I get the error
End Function
Any suggestions?