Allen told you how to enable a command button on the parent form, not how to
run the code associated with the button's Click event.
To have it call the code, you'd need
Call Me.Parent.Command99_Click
Note that you'll need to change the declaration for Command99_Click from
Private Sub Command99_Click()
to
Public Sub Command99_Click()
Incidentally, do yourself a HUGE favour, and start renaming your controls so
that they're more meaningful.
Allen many thanks.
I am sorry I wasn't precise enough .
[quoted text clipped - 15 lines]