Superpat
Member
- Local time
- Today, 19:23
- Joined
- Aug 15, 2020
- Messages
- 105
Hello,
It's a strange question, I can easily do it another way, but I'm curious and want to know if it's possible to do it my way.
When I type in execution mode :
Or, when in a module, I have :
and I click <F5>
Or, when I right-click on the closed form and choose Design mode, the form and all its sub-forms open.
-------
I've created a button on the form (which I leave on the last or penultimate line)
And there the form opens, but not the sub-form !
It is possible to do it ?
It
It's a strange question, I can easily do it another way, but I'm curious and want to know if it's possible to do it my way.
When I type in execution mode :
Code:
DoCmd.OpenForm "_f_Principal", acDesign
Code:
Sub commande3()
DoCmd.OpenForm "_f_Principal", acDesign
End Sub
Or, when I right-click on the closed form and choose Design mode, the form and all its sub-forms open.
-------
I've created a button on the form (which I leave on the last or penultimate line)
Code:
Private Sub cmdCreation_Click()
DoCmd.Close acForm, "_f_Principal", acSaveYes
'DoCmd.OpenForm "_f_Principal", acDesign
commande3
End Sub
It is possible to do it ?
It
Attachments
Last edited: