RE: [DUG] System tray program function when screensaver on.

2007-07-04 Thread Conor Boyd
Can't comment about TCP, but I found with one app that I've written recently that used window messages (i.e. SendMessage, PostMessage etc) that window messaging didn't appear to work while the screensaver was active. In my case I was writing both an app to live in the system tray and the screensav

Re: [DUG]: System Tray app

2001-09-05 Thread Ross Levis
hut down. Returning true >indicates the application can be exited. >The actual attempt to close the application will occur when the message >WM_ENDSESSION is sent by Windows, which occurs if all applications return >true. > >>-Original Message- >>From: [EMAIL

RE: [DUG]: System Tray app

2001-09-04 Thread Patrick Dunford
ent: Wednesday, 5 September 2001 16:45 > To: Multiple recipients of list delphi > Subject: RE: [DUG]: System Tray app > > > Well I downloaded & installed RXLIB and setup a basic tray app. > The EXE is > 299k - 12k larger than an empty form. Doesn't seem too bad. I&#

RE: [DUG]: System Tray app

2001-09-04 Thread Ross Levis
Well I downloaded & installed RXLIB and setup a basic tray app. The EXE is 299k - 12k larger than an empty form. Doesn't seem too bad. I'll keep an eye on that if I use other controls. Thanks for the info, however. Cheers, Ross. [EMAIL PROTECTED] wrote: > You already have source on your pc

Re: [DUG]: System Tray app

2001-09-04 Thread jnorth
You already have source on your pc that puts an icon into the tray area. Look at the source for the socket server (it's in the source\vcl directory). Watch out using RXLib. Last time I used it, it added tremendous bloat to the application because everything is so closely coupled. That may have

re: [DUG]: System Tray app

2001-09-04 Thread NIRAV KAKU
or you could do it the good old WinAPI way and write the code which is not any effort at all. Read more on NOTIFYICONDATA. regards, NIRAV KAKU On 4 Sep 01, at 18:54, Ben Taylor wrote: > hi! the easy drag/drop way: > > - get rxlib, drop the trayicon component onto the main form > - set the icon

RE: [DUG]: System Tray app

2001-09-04 Thread Ross Levis
Sounds good Ben, thanks. Ross. Ben Taylor wrote: > hi! the easy drag/drop way: > > - get rxlib, drop the trayicon component onto the main form > - set the icon etc if you want > - setup a popupmenu with items for 'exit' etc. > (exit.onclick should just need form.close) > - edit project sourc

re: [DUG]: System Tray app

2001-09-04 Thread Ben Taylor
hi! the easy drag/drop way: - get rxlib, drop the trayicon component onto the main form - set the icon etc if you want - setup a popupmenu with items for 'exit' etc. (exit.onclick should just need form.close) - edit project source(menu is project/view source'). before the form create stuff

RE: [DUG]: System Tray app

2001-09-04 Thread Nahum Wild
Performing a search on a couple of Delphi component sites should reveal some good, free including source, system tray components. http://www.delphipages.com http://www.torry.net Nahum. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of Ross Levis >

Re: [DUG]: System Tray

2001-05-24 Thread Paul Lowman
ÿþ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=unicode"> <M

RE: [DUG]: System Tray

2001-05-24 Thread James Low
I THINK the RX suite has one too ... -Original Message-From: Laurie Bisman [mailto:[EMAIL PROTECTED]]Sent: 24 May 2001 18:58To: Multiple recipients of list delphiSubject: [DUG]: System Tray I have seen various components here and there for minimizing your application to

Re: [DUG] System tray (more..)

2001-05-24 Thread NIRAV KAKU
oops I forgot the nitty gritty parts... FIconData: TNotifyDataIcon (record} To remove procedure RemoveIconInSysTray; begin Shell_NotifyIcon(NIM_Delete, @FIconData); end; NIRAV KAKU --- New Zea

Re: [DUG]: System Tray

2001-05-23 Thread jnorth
www.dream-com.com has one. Works ok, although has a couple of issues I have noticed but nothing you can't work around. it's free. JED I have seen various components here and there for minimizing your application to the system tray. --

Re: [DUG]: System Tray

1999-10-13 Thread Nic Wise
Look on the Delphi Super Page (developer.href.com) or similar - there are 101 tray icon components. If you REALLY can't find one, mail me - I have one that works, tho its not exceptional. Nic. Joel van Velden wrote: > > Hi > > I was wondering if any of you know how to have your program in the

Re: [DUG]: System tray.

1999-06-14 Thread Matthew Comb
Ok I will goober of the year award ! :) Matt. - Original Message - From: <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Tuesday, June 15, 1999 12:07 PM Subject: Re: [DUG]: System tray. > Quoting Matthew Comb <[EMAIL PROTECTED]>

Re: [DUG]: System tray.

1999-06-14 Thread pdunford
Quoting Matthew Comb <[EMAIL PROTECTED]>: > How do you go about adding popupmenu items to the system tray icon? >From memory you add a PopupMenu to the PopupMenu property snip --- New Zealand Delphi Users group - Delph

RE: [DUG]: System tray.

1999-06-14 Thread Alistair George
Whoops, that wasnt showmain you wanted, it was a popup menu item. In the events page of your tray icon use click event and call the click proc 'Popmenu' use code like the following: procedure TPRForm.Popmenu(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin Popup

RE: [DUG]: System tray.

1999-06-14 Thread Coulter, Jeremy
PROTECTED] Private E-Mail: [EMAIL PROTECTED] -Original Message- From: Matthew Comb [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 15, 1999 10:37 To: Multiple recipients of list delphi Subject: Re: [DUG]: System tray. Thanks to everyone who replied about this. Chris Crowe's method

RE: [DUG]: System tray.

1999-06-14 Thread Alistair George
> With ShowWindow(Application.Handle, SW_HIDE), I am unsure of where to put > this in my code. It won't work inthe oncreate for the form but it > does work > in a button or something. Any suggestions where to put it? Do the following in your project file eg myapp.dpr (I use a tray icon in the foll

Re: [DUG]: System tray.

1999-06-14 Thread Matthew Comb
Sent: Monday, June 14, 1999 3:36 PM Subject: RE: [DUG]: System tray. > On Mon, 14 Jun 1999, Patrick Dunford wrote: > > > Once you call the Hide method of the main form then it disappears > > completely. > > Hiding the main form isn't what you really want, you want to hid

RE: [DUG]: System tray.

1999-06-13 Thread Chris Crowe
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Patrick DunfordSent: Monday, 14 June 1999 15:30To: Multiple recipients of list delphiSubject: RE: [DUG]: System tray. Once you call the Hide method of the main form then it disappears completely. -Original Message-From

RE: [DUG]: System tray.

1999-06-13 Thread Mark Derricutt
On Mon, 14 Jun 1999, Patrick Dunford wrote: > Once you call the Hide method of the main form then it disappears > completely. Hiding the main form isn't what you really want, you want to hide the application window, I use: ShowWindow(Application.Handle, SW_HIDE); Which does it. -- Mark Der

RE: [DUG]: System tray.

1999-06-13 Thread Patrick Dunford
Once you call the Hide method of the main form then it disappears completely. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Matthew CombSent: Monday, 14 June 1999 14:58To: Multiple recipients of list delphiSubject: Re: [DUG]: System

Re: [DUG]: System tray.

1999-06-13 Thread Nic Wise
Matt, ShowWindow(Application.handle, SW_HIDE) I think. N --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

Re: [DUG]: System tray.

1999-06-13 Thread Matthew Comb
Dunford To: Multiple recipients of list delphi Sent: Monday, June 14, 1999 2:24 PM Subject: RE: [DUG]: System tray. Use one of numerous tray icon components   The one I use is mdTray which is available free from http://www.djernaes.dk/martin

Re: [DUG]: System tray.

1999-06-13 Thread Nic Wise
look on the DSP (developer.href.com - might be plural) or similar - there are loads of components that do this. If not, drop me a line - I have one that works. Nic. > Matthew Comb wrote: > > Can someone please tell me how to make an application load as a system > tray icon down the bottom on t

RE: [DUG]: System tray.

1999-06-13 Thread Patrick Dunford
Use one of numerous tray icon components   The one I use is mdTray which is available free from http://www.djernaes.dk/martin/   Patrick Dunford, Christchurch, NZhttp://patrick.dunford.com/ -Original Message-From: [EMAIL PROTECTED]