Create your Own TaskBar Control in VB5/6

Source code is included.
Properties
HangDown
The number of pixels that will hang down into the screen when the taskbar is hidden.
NumSteps
The number of steps drawn while moving the taskbar down. Similar to Form.GotFocus, but also works when the application gets the focus. Similar to Form.LostFocus, but also works when the application loses focus. The mouse was moved over the taskbar. The mouse left the taskbar window. The taskbar started to open up. The taskbar started to close up. The taskbar was closing, but started to open. The taskbar was opening, but started to close. The taskbar is open all the way. The taskbar is closed all the way. The control is distributed via source code. The license is GPL. (see www.gnu.org/copyleft/gpl.html) If you make any significant changes, please let me know and I'll distribute them with this. Or if you're just using it for something amazingly cool, I'd be interested to know about that too. Any suggestions, helpful hints, or flames should be directed to: David NewcumEvents
AppGotFocus
AppLostFocus
MouseOver
MouseLeft
StartOpenUp
StartCloseUp
ChangeOpenUp
ChangeCloseUp
EndOpenUp
EndCloseUp
Source Code
Limitations/Problems
Author
newcumdb@cs.purdue.edu
http://www.cs.purdue.edu/homes/newcumdb/

Comments
taskbar
Posted by Legacy on 01/06/2001 12:00amOriginally posted by: vishal
your program is not able to adjust the screen acordind to bar as happens in caltiger.com
ReplyFix for the timers in the taskbar project
Posted by Legacy on 05/14/2000 12:00amOriginally posted by: John Meller
For those of you who dont know how to fix the 'timer' problem in this taskbar project here is the fix
Private Sub UserControl_InitProperties()
'this will disable the time when you are in design mode
Timer1.Enabled = Ambient.UserMode
End Sub
Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
'this will disable the time when you are in design mode
Timer1.Enabled = Ambient.UserMode
End Sub
Hope this helps :)
Reply