|
-
Jan 24th, 2010, 07:55 AM
#1
Thread Starter
New Member
put info on taskbar
Hi
Is there some way of putting information such as date & time on the taskbar. I have programs that do this but wish to program it myself.
Thanks
John
-
Jan 24th, 2010, 08:05 AM
#2
Re: put info on taskbar
Welcome to the forums... 
Can you explain it....
If you are looking for System Tray Programming, see this CodeBank submission... http://www.vbforums.com/showthread.php?t=595990
If my post was helpful to you, then express your gratitude using Rate this Post. 
And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet
Social Group: VBForums - Developers from India
Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...
-
Jan 24th, 2010, 09:53 AM
#3
Re: put info on taskbar
 Originally Posted by harroman
Hi
Is there some way of putting information such as date & time on the taskbar. I have programs that do this but wish to program it myself.
Thanks
John
Add into your main Form a Timer control, in property window set Enabled=True and Interval=6000
Double click to it to open Code window (the Timer event routine will be show by default).
Now insert the code to set Date and Time, i.e.:
Code:
frmMain.Caption = "Something - " & Date & " " & Time
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
|