S
shawncraig
Since the ShowDialog() doesn't allow the frmGreyOut finish loading.
The cool greyed out effect is never seen. Just the popup called
frmYesNo
Private Sub frmGreyOut_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
My.Forms.frmYesNo.Message = pstrMessage
My.Forms.frmYesNo.ShowDialog()
Me.DialogResult = My.Forms.frmYesNo.DialogResult
End Sub
In VB6 we had to use a timer to get around this crap.... someone
PLEASE tell me the MS has given us a better way besides using a timer?
The cool greyed out effect is never seen. Just the popup called
frmYesNo
Private Sub frmGreyOut_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
My.Forms.frmYesNo.Message = pstrMessage
My.Forms.frmYesNo.ShowDialog()
Me.DialogResult = My.Forms.frmYesNo.DialogResult
End Sub
In VB6 we had to use a timer to get around this crap.... someone
PLEASE tell me the MS has given us a better way besides using a timer?