Hi!
After my form has been opened I need to check whether or not it was opened using Show() or ShowDialog().
Does anyone know if this can be checked using a built-in property or if I have to shadow ShowDialog() and remember myself that the form is modal, as in:
Thanks.
After my form has been opened I need to check whether or not it was opened using Show() or ShowDialog().
Does anyone know if this can be checked using a built-in property or if I have to shadow ShowDialog() and remember myself that the form is modal, as in:
Code:
public shadows sub ShowDialog()
_IsModal = True
MyBase.ShowDialog()
end sub
Thanks.