Open a form from a variable name

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).

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?
 
Try

Forms(FormName)!Notes.Value
 
No problemo! By the way, FName wouldn't have worked, as it's the literal string "[FormName]" .
 

Users who are viewing this thread

Back
Top Bottom