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
Printable View
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
Welcome to the forums... :wave:
Can you explain it....
If you are looking for System Tray Programming, see this CodeBank submission... http://www.vbforums.com/showthread.php?t=595990
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.:
:wave:Code:frmMain.Caption = "Something - " & Date & " " & Time