Modale Fenster

Formular erzeugen und folgendes einstellen (Beispiel)

  • StartPosition: CenterParent
  • MaximizeBox: False
  • MinimizeBox: False
  • FormBorderStyle: FixedDialog
  • Buttons drauf + DialogResult entsprechend dem Button einstellen (Ok, Cancel)

Aufruf der Form

Dim FMyModalForm As New MyModalForm
  
If FMyModalForm.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
    ...
End If