My form is always on top.

ZeroEffect

Junior Contributor
Joined
Oct 24, 2004
Messages
204
Location
Detroit, MI
Ok this is odd I have no code in place to keep my form on top of other forms but yet it is. Now this does not happen when the application is first started. I'm able to send it to the background with out a problem.

Could the wat I am loading the my program?

Visual Basic:
'this is uses from a module to start the program

        MainForm.Show()
        Application.Run(MainForm)

'This is called only once in a new thread to load last loaded information.
'called from mainforms load event

    Private Sub ShowWait()
        Application.Run(WaitForm)
    End Sub

I am kind of baffeled by this any thoughts?

Thanks

ZeroEffect
 
At this point it seems to be random. I can't get the program to do it while it's being debugged from VB.Net. So it is a little hard to trace. I'll be trying some more things today to see if I can trigger it.

Thanks for your help.

ZeroEffect
 
Back
Top