-
Developed individual exes and i am using a toolbar seperate program to run these seperate programs from the app directory, but if i minimize these programs they do not appear on the taskbar, they appear just above the taskbar minimized, this is very annoying and would appreciate any help if possible.
Thanking you in advance
-
...
In the form property, set:
ShowInTaskbar = True
-
Done that, but it still does not appear there
-
you said it appear a little box above the taskbar? Well you could make invisble, actually that's what it does when you try to minimize it because you can't restore it other ways.
Code:
Windowstate=vbminimized
visible=false
and to restore it
Code:
visible=true
Windowstate=vbnormal