Milo
11-15-2004, 04:29 AM
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
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