Delphi-PRAXiS
Seite 1 von 3  1 23      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Die Delphi-IDE (https://www.delphipraxis.net/62-die-delphi-ide/)
-   -   My Delphi 2010 is sick (https://www.delphipraxis.net/169193-my-delphi-2010-sick.html)

WojTec 4. Jul 2012 12:19


My Delphi 2010 is sick
 
It is 14.0.3593.25826.

This thread can be continuation of that thread: Delphi don't recompile changed code.

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:
if cbPath.Checked then // <-- exceptions here
  // olde code
else
  // new code
;
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:)

WTF is that:?::roll::shock::o

mkinzler 4. Jul 2012 12:34

AW: My Delphi 2010 is sick
 
Is cPath existing and of the right type?

WojTec 4. Jul 2012 15:03

Re: My Delphi 2010 is sick
 
cbPath: TCheckBox, exists. I'm not talking about compilation, but about generated EXE. :(

mkinzler 4. Jul 2012 15:28

AW: My Delphi 2010 is sick
 
Objects in Delphi are just references (pointers). These could reference into nirvana.

Sailor 4. Jul 2012 15:51

AW: My Delphi 2010 is sick
 
Probably cbPath has not yet been created. Check it by adding "IF cbPath <> NIL" to the first line.

jaenicke 4. Jul 2012 16:19

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?

WojTec 4. Jul 2012 19:51

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:
---------------------------
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  
---------------------------
This behaviour is completely nonesense for me...

:(

himitsu 4. Jul 2012 22:47

AW: Re: My Delphi 2010 is sick
 
address 00000xxx = nil

Something does not exist.

Zitat:

Zitat von Sailor (Beitrag 1173557)
Probably cbPath has not yet been created. Check it by adding "IF cbPath <> NIL" to the first line.

or
Delphi-Quellcode:
if not Assigned(cbPath) then DoError;
,
Delphi-Quellcode:
Assert(Assigned(cbPath));
,
Delphi-Quellcode:
Assert(cbPath <> nil);
, ...

WojTec 5. Jul 2012 09:03

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?

mkinzler 5. Jul 2012 09:27

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.
Seite 1 von 3  1 23      

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