| View previous topic :: View next topic |
| Author |
Message |
flypaper Contributor


Joined: 19 Oct 2001 Posts: 104
|
Posted: Sun Feb 03, 2002 3:47 pm Post subject: How do you create an icon in the tray? |
|
|
I don't want the program to show up on the taskbar, just an icon in the tray. How can I do this??
Thanks!
EDIT - I'm using VDS 3 |
|
| Back to top |
|
 |
laurent_H Contributor


Joined: 30 Jun 2001 Posts: 60
|
Posted: Sun Feb 03, 2002 4:26 pm Post subject: |
|
|
you have a complete example in follder examples located in VDS program file folder.. _________________ Thanks |
|
| Back to top |
|
 |
flypaper Contributor


Joined: 19 Oct 2001 Posts: 104
|
Posted: Sun Feb 03, 2002 6:12 pm Post subject: |
|
|
| <-- Dumb |
|
| Back to top |
|
 |
laurent_H Contributor


Joined: 30 Jun 2001 Posts: 60
|
Posted: Sun Feb 03, 2002 6:23 pm Post subject: |
|
|
The source is very comprehensive !
I'm wondering who is dumb ?
I post you a lighter example of it :
| Code: |
title TaskIcon Example for a dumb
dialog create,TaskIcon Test,1000,1000,100,120
dialog add,TASKICON,TaskIcon,my_image.bmp,my text on mouse over
:evloop
wait event
%E = @event()
goto %E
:TaskIconCLICK
if @equal(@click(b),RIGHT)
dialog popup,Settings|Close
end
goto evloop
:SettingsMENU
info replace this line by your code here
goto evloop
:CloseMENU
exit
|
Sorry !
| Code: |
WINDOW ICONIZE, <window>
|
I'm french so sorry for my poor english !
I hope this is what you are waiting for  _________________ Thanks |
|
| Back to top |
|
 |
flypaper Contributor


Joined: 19 Oct 2001 Posts: 104
|
Posted: Mon Feb 04, 2002 1:57 pm Post subject: |
|
|
Thank you. I'm not sure but I think you misunderstood me. I was pointing to myself and calling me dumb.  |
|
| Back to top |
|
 |
laurent_H Contributor


Joined: 30 Jun 2001 Posts: 60
|
Posted: Mon Feb 04, 2002 2:34 pm Post subject: |
|
|
No problem _________________ Thanks |
|
| Back to top |
|
 |
|