Coder Social home page Coder Social logo

objectdebugger's People

Contributors

alefragnani avatar marcocantu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

objectdebugger's Issues

Delphi freezes

I load the group, but Delphi freezes, and I have to kill the process. Do you know why it can happen?

AV on fast mouse scroll on property values (ACol = 1)

in TCantObjDebForm.sgPropSelectCell

"EditNum.Text :=" and "EditStr.Text :=" (TEdits) has to be backed up with disabling the onchange event as it will set EditModified to true
and it allways will write back on onexit. But under fast scrolling the component could be already changed and it will try to write back into the wrong place. Mostly causing an AV.

under "tkInteger:"

        EditNum.OnChange := nil;
        try
          EditNum.Text := GetPropValAsString(CurrComp, ppInfo);
          PlaceControl(EditNum);
        finally
          EditNum.OnChange := EditChange;
        end;

and under "tkString, tkLString, tkUString, tkWString:"

      EditStr.OnChange := nil;
      try
        EditStr.Text := GetPropValAsString(CurrComp, ppInfo);
        PlaceControl(EditStr);
      finally
        EditStr.OnChange := EditChange;
      end;

(The other edit controls are fine for now, but it would be even better to introduce an "FInternalUpdating" variable and check against in the OnChange events before setting "EditModified" to true.)

Also "EditModified := False;" is not set everywhere, so it shuld be pesent only one time, right after the case block at the end of "sgPropSelectCell".

I think I have already reported this back in the G+ era.

manual

have you please any easy manual or howto?

Thanks

Ales

Access violation

above
var
CantObjectDebugger:TCantObjectDebugger;

I made a very simple project with one line ONCREATE
CantObjectDebugger:=TCantObjectDebugger.Create(Form1);
CantObjectDebugger.active:=true;

I get with D10.2.3 access violation.
I close the error and see the object. As a matter of fact, it is shown before the error than the error.
I could not pinpoint the bug although the object inspector is shown.
I got so far as UpdateCompsCombo end and no error.
The timer is OK too.
Could not find nil somewhere.
end of FormShow(Sender: TObject); no error.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.