![]() |
My Delphi 2010 is sick
It is 14.0.3593.25826.
This thread can be continuation of that thread: ![]() I have program v1.0. Now I'm working on v1.1. So I want to make some small modification in one of the dialogs. It's simple: just added conditional call another function.
Delphi-Quellcode:
That's all. After run, app raises AV and EReadError (can't read value from some component property I don't uses it in event handler :o). Both are in if line :shock: (when if removed then working :roll:)
if cbPath.Checked then // <-- exceptions here
// olde code else // new code ; WTF is that:?::roll::shock::o |
AW: My Delphi 2010 is sick
Is cPath existing and of the right type?
|
Re: My Delphi 2010 is sick
cbPath: TCheckBox, exists. I'm not talking about compilation, but about generated EXE. :(
|
AW: My Delphi 2010 is sick
Objects in Delphi are just references (pointers). These could reference into nirvana.
|
AW: My Delphi 2010 is sick
Probably cbPath has not yet been created. Check it by adding "IF cbPath <> NIL" to the first line.
|
AW: My Delphi 2010 is sick
An access violation, ok, but the most important information you forgot: at which address? :wink:
Regarding the missing properties: Did you open every form in Delphi without getting a similar error? |
Re: My Delphi 2010 is sick
So, I have custom constructor, I'm setting components in this constructor, all what happen later depend on these settings - and working, till I add this check box or combo box (I tried both).
For example I'm drawing gradient, in method I'm using cbPath.Checked - working. When I add this condition then stop working :o
Code:
---------------------------
Debugger Exception Notification --------------------------- Project x.exe raised exception class EAccessViolation with message 'Access violation at address 0062DCF7 in module 'x.exe'. Read of address 00000000'. --------------------------- Break Continue Help ---------------------------
Code:
This behaviour is completely nonesense for me...
---------------------------
Debugger Exception Notification --------------------------- Project x.exe raised exception class EReadError with message 'Error reading edtSteps.SpinOptions.MinValue: Access violation at address 0062DCF7 in module 'x.exe'. Read of address 00000000'. --------------------------- Break Continue Help --------------------------- :( |
AW: Re: My Delphi 2010 is sick
address 00000xxx = nil
Something does not exist. Zitat:
Delphi-Quellcode:
,
if not Assigned(cbPath) then DoError;
Delphi-Quellcode:
,
Assert(Assigned(cbPath));
Delphi-Quellcode:
, ...
Assert(cbPath <> nil);
|
Re: My Delphi 2010 is sick
@himitsu, you are talking about first or second address in message?
Let's say Delphi creates it incorrectly (I repeat: error after changes, before working) - what to do? |
AW: My Delphi 2010 is sick
The second. The First is the adress of the Code itself.
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 10:56 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz