'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
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
-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
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
-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
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
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
: '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
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
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
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
11 matches
Mail list logo