|
-
Jun 28th, 2000, 06:16 PM
#1
Thread Starter
New Member
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
-
Jun 28th, 2000, 06:30 PM
#2
_______
...
In the form property, set:
ShowInTaskbar = True
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Jun 28th, 2000, 07:10 PM
#3
Thread Starter
New Member
Done that, but it still does not appear there
-
Jun 28th, 2000, 07:25 PM
#4
transcendental analytic
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
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|