Jump to content

Ian Branch

Members
  • Content Count

    1272
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Ian Branch

  1. Ian Branch

    Uses Clause Sorting??

    Hi Team, I recently had the experience where all of my '.dproj' files in a major project group were corrupted. 😞 So, I have had to rebuild them. Oh, the pain! Anyway, MMX onfiguration is of course part of that. Having set a few 'Groups' in the 'Uses Clause Sorting' i tried setting the 'Default'. Much to my pleasure, as I opened MMX for each of the 'new' projects, the Default and the Groups were set. Halleluah!! Now, from time to time I extend the listing. I tested and found that if I added to the 'Default', it didn't propagate to the 'Groups'. 😞 It would be nice to have, say a checkbox, that made the Default used instead of Groups. If I guess correctly, if I change 'Default' then it would be used in all the Projects?? Just a thought.. Regards, Ian
  2. Hi Team, Win 11, D12.1. They used to, but I have just noticed that if I disable a DEFINE, {.DEFINE XXXXX}, the code between the {$IFDEF XXXXX} & {$ENDIF} no longer greys out the code inbetween. It used to. If I create a new project and do that, it works. Is there somewhere in my projects that I may have inadvertantly switched off that would cause this? This is an actual example where the code isn't being greyed out: Regards & TIA, Ian
  3. Ian Branch

    {$Defines xxxx} not working at design time..

    Found it!!! Seems somehow all my current .dproj files have been corrupted. 😞 Deleted and rebuild, all good. Very strange. Thanks to all for your inputs, appreciated. Ian
  4. Ian Branch

    {$Defines xxxx} not working at design time..

    Thank you to all for your input so far. Appreciated. The fact that I can create a New project and it works fine suggests that the functionality itself is still there and working. I opened a project that I hadn't touched for months, it worked fine.... Which suggests something related to ALL my current projects. I tried adding a new form to a current project and testing, same result. 😞
  5. Ian Branch

    {$Defines xxxx} not working at design time..

    I can create a new project and it all works fine/as expected.
  6. Ian Branch

    {$Defines xxxx} not working at design time..

    I just checked an old Console App and it is doing the same thing there. 😞
  7. Ian Branch

    {$Defines xxxx} not working at design time..

    FWIW, it is doing it on all my projects, even ones I haven't touched in a while. 😞
  8. Ian Branch

    {$Defines xxxx} not working at design time..

    Hi Uwe, Ctrl-Click works fine. CodeInsight doesn't throw anything up. ErrorInsight doesn't show anything. Ian
  9. Ian Branch

    {$Defines xxxx} not working at design time..

    Nope. Didn't work. The IDE knows about the {.$DEFINE XXXXX} because further down code that was enabled by the Define shows as an error in the Structure. At run time all is as it should be. I have also noticed Conditionals from the Project aren't being handled correctly at Design time either. 😞
  10. Ian Branch

    'Automated' install of Indy??

    Hi Team, Having installed D12.1 over D12, it of course installed its own Indy version. I am sure I saw/read somewhere about a a script of some sort that replaced the distributed with Delphi version with the one from GitHub. Hopefully I wasn't imagining it. Does this ring a bell with anyone? Regards & TIA, Ian
  11. Ian Branch

    'Automated' install of Indy??

    Ahhh. Excellent. Thank you.
  12. Hi Team, This is as much to reinforce with me as it is info that may help others. "Local variables are actually not initialized, but global variables and object fields are initialized to zero (which means 'false' for boolean variables). Therefore you always have to initialize local variables yourself, compiler even generates a warning if you don't." I got caught out with an inline variable. var lTest: boolean; I incorrectly assumed ite defaulted to False. This is not so, in fact in my tests it seems to default to TRUE. However, I won't bank on that and will allways initialise local variables now. No, I never noticed the warning, or if I did I ignored it. 😞 Ian
  13. Done & dusted. Tks.
  14. Ian Branch

    Delphi 12.1 is available

    Reported - RSS-475 in the new Quality Portal.
  15. Ian Branch

    GExperts 1.3.24 Beta1 for Delphi 12

    Current GExperts builds without issue in D12.1.
  16. Ian Branch

    Delphi 12.1 is available

    Ditto.
  17. Ian Branch

    'Automated' install of Indy??

    Does Clean_<version>.cmd install 32 & 64 bit or is it selectable? I only do 32 bit.
  18. Cheers. It's a pity it has to be set per Project. Tks.
  19. A good idea. Where/how does one do that?
  20. Ian Branch

    Delphi 12.1 is available

    Installed 12.1 over 12 without using the Web Installer issue. It didn't install the latest Help (.chm) files. 😞
  21. Hi Team, Delphi 12. Is there a way to embed the current design time code line number into a string so that it can be shown in a message. It needs to reflectthe actual line number, even if the previous code is edited and it's actual number changes. Regards & TIA, Ian
  22. Ian Branch

    Embed line number at design time??

    Yup. Works just as well. Tks.
  23. Ian Branch

    Embed line number at design time??

    Noted. Tks.
  24. Ian Branch

    Embed line number at design time??

    Tks. Exactly what I needed/wanted. I made a minor change as I am using D12: /// <summary> /// Retrieves the current line number. /// </summary> /// <remarks> /// Requires the JCLDebug unit. /// </remarks> /// <returns>The line number of the current position.</returns> function GetCurrentLineNumber: Integer; begin // var ModInfo := GetLocationInfo(ReturnAddress); // Result := ModInfo.LineNumber; // end; LineByLevel - Whilst I could use it in my code by adding JCLDebug, I wanted to have it as a function in my library. If I used it from my library I got the line number in the library, not the Apps code. Regards & Tks again, Ian
  25. Ian Branch

    Embed line number at design time??

    I had a look at that previously. I may be missreading its use but it seems that JCLDebug relies on an Exception for something like this to work: function GetCurrentLineNumber: Integer; var ModInfo: TJclLocationInfo; begin ModInfo := GetLocationInfo(ExceptAddr); Result := ModInfo.LineNumber; end;
×