tranchemontaigne
Registered User.
- Local time
- Today, 10:15
- Joined
- Aug 12, 2008
- Messages
- 203
I have a parent form "frmMainMenu" that forms the shell of my user interface. Everything in the database is done through a subform. Command button behavior is table driven similar to the "switchboard" template that comes out of the box, except that I have added additional arguments (e.g. form caption) and options (e.g. change subform)
The problem I have is that I want to have data entry through a subform and can't get it to work...
I have gone to the subform and set the DATA ENTRY property to YES with no luck.
I then tried using an OnOpen event for the subform that would move to a new record
with no luck
trying to do these two things at the same time through code also fails (not surprisingly)
Every time I open the form it goes to the first record. The subform is bound to a single table so joins are not muddling the works.
Making the subform unbound and using an append query is not a viable option due to string length issues.
Any thoughts would be appreciated.
[Edit: As you may have already guessed, the subform is not bound to the parent form]
________
Nevada Medical Marijuana Dispensary
The problem I have is that I want to have data entry through a subform and can't get it to work...
I have gone to the subform and set the DATA ENTRY property to YES with no luck.
I then tried using an OnOpen event for the subform that would move to a new record
DoCmd.GoToRecord , , acNewRec
with no luck
trying to do these two things at the same time through code also fails (not surprisingly)
Me.DataEntry = True
DoCmd.GoToRecord , , acNewRec
Every time I open the form it goes to the first record. The subform is bound to a single table so joins are not muddling the works.
Making the subform unbound and using an append query is not a viable option due to string length issues.
Any thoughts would be appreciated.

[Edit: As you may have already guessed, the subform is not bound to the parent form]
________
Nevada Medical Marijuana Dispensary
Last edited: