Can I call a Function that exists on a child form from a toolbar click in the MDI form? I have a toolbar button called Save and a function on the Child form called SaveAppt. What I have right now is:

VB Code:
  1. Select Case Button.Key
  2.         Case "new"
  3.             Call CreateNewSchedule
  4.         Case "save"
  5.             If gblnWindowExists Then
  6.                 frmChild.SaveAppt
  7.             End If
  8. End Select