RE: Unable to Get Handle On Monitor

2009-08-15 Thread Robert Meek
's Delphi Discussion List Subject: Re: Unable to Get Handle On Monitor Thanks, Jeremy. I'm using Delphi 2006. I experimented with different default monitor settings, and always got the same error. All that changed was the line in which the error happened; the line corresponded to what

Re: Unable to Get Handle On Monitor

2009-08-14 Thread Alan Colburn
Thanks, Jeremy. I'm using Delphi 2006. I experimented with different default monitor settings, and always got the same error. All that changed was the line in which the error happened; the line corresponded to whatever I had set for the default monitor property. I will continue to experiment, using

RE: Unable to Get Handle On Monitor

2009-08-14 Thread Joe Hatem
-Original Message- From: Alan Colburn Sent: Thursday, 13 August, 2009 17:16 To: delphi@elists.org Subject: RE: Unable to Get Handle On Monitor Thank you all for your responses. It looks like I need to keep experimenting :-) Jeremy, the actual problem is an access violation that

RE: Unable to Get Handle On Monitor

2009-08-14 Thread Robert Meek
hi-boun...@elists.org] On Behalf Of Dean Stow Sent: Thursday, August 13, 2009 10:00 AM To: 'Borland's Delphi Discussion List' Subject: RE: Unable to Get Handle On Monitor Have you removed all forms from the Autocreate list in the Project | Options? The program may have a taskbar ic

RE: Unable to Get Handle On Monitor

2009-08-14 Thread Joe Hatem
-Original Message- From: Alan Colburn Sent: Thursday, 13 August, 2009 17:16 To: delphi@elists.org Subject: RE: Unable to Get Handle On Monitor Thank you all for your responses. It looks like I need to keep experimenting :-) Jeremy, the actual problem is an access violation that

Re: Unable to Get Handle On Monitor

2009-08-14 Thread Jeremy North
nding on how I've set the default monitor property in my forms, it'll be > either line 3958, 3960, or 3963. In each case, the program is unable to get a > value for a Monitor.Handle property. > >> Date: Thu, 13 Aug 2009 11:37:11 +1000 >> Subject: Re: Unable to Get Ha

RE: Unable to Get Handle On Monitor

2009-08-13 Thread Alan Colburn
in my forms, it'll be either line 3958, 3960, or 3963. In each case, the program is unable to get a value for a Monitor.Handle property. > Date: Thu, 13 Aug 2009 11:37:11 +1000 > Subject: Re: Unable to Get Handle On Monitor > From: jeremy.no...@gmail.com > To: delphi@elists.o

RE: Unable to Get Handle On Monitor

2009-08-13 Thread Dean Stow
: 'Borland's Delphi Discussion List' Subject: RE: Unable to Get Handle On Monitor Hey Al, I too have experienced some major problems when attempting to display a Splash Screen form using Delphi 2009. Mine have been quite different than yours, but there may be a connection. In

RE: Unable to Get Handle On Monitor

2009-08-13 Thread Robert Meek
Hey Al, I too have experienced some major problems when attempting to display a Splash Screen form using Delphi 2009. Mine have been quite different than yours, but there may be a connection. In one particular application, the Splash form was to display for 6 seconds and show share

Re: Unable to Get Handle On Monitor

2009-08-13 Thread aldrin mendiz
hi, I think the problem is with the order of creation.. try the below code it might solve the issue.. Application.Initialize; Application.CreateForm(TFrmLogon, FrmLogon); Application.CreateForm(TFrmSplash, FrmSplash); FrmSplash.Show; Application.Run; On FrmSplashShow event activate timer

Re: Unable to Get Handle On Monitor

2009-08-12 Thread Jeremy North
So what is the actual problem? On Thu, Aug 13, 2009 at 4:31 AM, Alan Colburn wrote: > > Hi folks -- > > When I start my app with: > > Data:=TData.Create(Application); > Application.Title := 'Performance Gradebook'; > Application.CreateForm(TfrmMain, frmMain); > Application.Run; > > everything wor