Thread: Always On Top??
View Single Post

  #1 (permalink)  
Old 11-15-2004
Milo Milo is offline
Junior Member
White Belt
 
Join Date: Oct 2004
Posts: 10
Send a message via MSN to Milo Send a message via Yahoo to Milo
Always On Top??

I am using VB6. In my project I have a main form that calls a map form from a menu button. When the map form shows it appears on top of all other forms as you would expect...however, it seems to have the "always on top" functionality! In the form_load of the map form I have this:

Private Sub Form_Load()
mapTrack.NewMap geoMapEurope
bLiveTrack = False
gbMapShow = True
End Sub

However, when I do this (comment out the newmap line):

Private Sub Form_Load()
'mapTrack.NewMap geoMapEurope
bLiveTrack = False
gbMapShow = True
End Sub

The project seems ok (no "on top").

Anyone any ideas?

Regards,
Milo
__________________
=========
Milo
Reply With Quote