Here's what I've got
VB Code:
  1. Private Sub Form_Unload(Cancel As Integer)
  2. Cancel = True
  3. End Sub

Problem is, it closes any child forms even though it doesn't close the main form.

Is there a solution?

cory