A
Aaron
Why is it that setting the current (open) form's text to "" does not
remove it from the running programs listing in WM 2003. I know forms
are not enumerated, that's why everyone on this board says set the
text to "", yet it doesn't work, why?
Here's an example of what I'm doing...On this form on the button
click:
Private Sub btnEnter_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnEnter.Click
frmLoginHelper.Instance().Text = "My App" 'Set title bar text
frmLoginHelper.Instance().ShowDialog() 'Show form
Me.Text = ""
End Sub
So what am I doing wrong, or is something buggy?
Thanks
remove it from the running programs listing in WM 2003. I know forms
are not enumerated, that's why everyone on this board says set the
text to "", yet it doesn't work, why?
Here's an example of what I'm doing...On this form on the button
click:
Private Sub btnEnter_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles btnEnter.Click
frmLoginHelper.Instance().Text = "My App" 'Set title bar text
frmLoginHelper.Instance().ShowDialog() 'Show form
Me.Text = ""
End Sub
So what am I doing wrong, or is something buggy?
Thanks