skip debuging procedure or function alphacontrols

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #37542
    chemirikmohamed
    Participant

    Wello world, For debugging how to avoid entering procedures alphacontrols functions. Deboger just the procedures and functions that we program are mandatory to pass in the own procedures of alphacontrols. Thank you.

    #56944
    Support
    Keymaster

    I think, you can just move all Pas-files from AlphaControls directory to other directory after the package installing.

    #59634
    SzakiLaci
    Participant
    'chemirikmohamed' wrote:

    Wello world, For debugging how to avoid entering procedures alphacontrols functions. Deboger just the procedures and functions that we program are mandatory to pass in the own procedures of alphacontrols. Thank you.

    I always put +1 line (compiler debugging directive) into then sDefs.inc file:

    Code:
    {$D-}

    and rebuild my project. (Project >> Build … )

    Whenever you want to allow debugging again >> simply change it to D+:

    Code:
    { —- Definitions by Serge V. Goncharov —- }
    {$D+}
    {$DEFINE ACDPIAWARE} // Comment this line if support of DPI-aware mode is not

    Serge: you may put this trick to FAQ too.

    #59637
    Support
    Keymaster

    Thank you for the information.

    #64081
    chemirikmohamed
    Participant

    Thans fo all everyone

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘skip debuging procedure or function alphacontrols’ is closed to new replies.