VB Code:
'Call the about form from the menu About click event 'Use vbModal to lock the main form so all focus on the about 'form until closed. Private Sub mnuAbout_Click() frmAbout.Show vbModal, Me End Sub 'Behind the about form code Private Sub cmdClose_Click() Unload Me End Sub





Reply With Quote