Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A Newbie Question 1

Status
Not open for further replies.

Ablecken

Programmer
Jun 5, 2001
130
0
0
US
I have a program that does not show up in the taskbar and when i shrink it goes to the lower left of the screen. I dont have anything special in my program so what would be causing it to do this?
Any help would be appreciated.
Thanx
 
When displaying the form using form.show, make sure to specify it as being modeless as in the following:

Code:
Sub main()
   frmMain.Show (vbModeless)
End Sub

If vbModal is used, the form will not show on the task bar.


 
It is still doing it. I really need it to show up in the task bar. I havent added anything special.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top