Jump to content

dummzeuch

Members
  • Content Count

    2631
  • Joined

  • Last visited

  • Days Won

    91

Everything posted by dummzeuch

  1. Sometimes the IDE inserts two includes for CodeGear.Delphi.Targets (I think it's a bug in the updating code for projects): <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/> One, with the condition, one without. Not sure this has something to do with the message though.
  2. dummzeuch

    Issue with UsesCleaner..

    No there isn't. But if you file a feature request stating how exactly you want it to be formatted, chances are I might implement it.
  3. dummzeuch

    Crash starting delphi 10.4.3

    Yes, There is a command you need to execute for GetIt to switch to the internet as a data source: GetItCmd.exe -c=useonline
  4. dummzeuch

    Code Librarian

    That sounds more like use case for code templates. A bit more work to set up, but it would save a lot of typing later on.
  5. dummzeuch

    Crash starting delphi 10.4.3

    Similar issue to this: GExperts always targets the latest IDE update available at the time of its release, which in case of 10.4 is 10.4.1. Sometimes it does not matter, but in this case it does. Either update to the latest IDE version or compile your own GExperts DLL.
  6. dummzeuch

    WinUI in Delphi (planned for 10.5?)

    Not that I know of. But you could have a look into the BPLs using the GExperts PE Information Expert. It shows a list of units and classes which the package exports. That would give you a starting point.
  7. dummzeuch

    Cannot install GExperts in Delphi 10.3

    You need to install the latest update for Delphi 10.3 (10.3.3), since the runtime packages GExperts needs were not compatible between 10.3 and 10.3.3. If you can't do that for whatever reason, you can compile your GExperts DLL which would also solve the problem.
  8. dummzeuch

    Import .NET Assembly list is empty

    No, but I noticed that the problem hasn't been fixed in 10.4. Never looked at it in 10.4.1 because I found a different way that does not require a dotNET assembly. That was my "last best" solution anyway. (* "second best" would put it too mildly. Avoiding this was by far the best option.)
  9. dummzeuch

    WinUI in Delphi (planned for 10.5?)

    Hm, when will Microsoft start to rewrite Office to use WinUI? Until that happens, I am skeptical whether this will be worth the effort. But I am only a disgruntled old white man^d^d^d^d^d^d^d^d^dVCL developer.
  10. dummzeuch

    Feature Request for String Paste As

    I wrote the Convert Strings expert several months after somebody else donated the String Paste expert, because I could never remember how to use the latter. I always wanted to clean up this mess, but never came around doing it.
  11. dummzeuch

    Feature Request for String Paste As

    Have you looked at the newer "Convert Strings" expert? There is a favorite called "SQL-to-String" which seems to do exactly what you want
  12. dummzeuch

    Feature request: remember debugger exception dialog size

    OK, even though you didn't file a feature request, I just implemented this in revision #3370.
  13. dummzeuch

    Feature request: remember debugger exception dialog size

    Would you please file a feature request on SourceForge for this? That is the central point where I look when I have some time and feel like implementing some small improvement. Also, others might see this, implement it and send me a patch (yes, this has happened). Of course you could also do that yourself.
  14. dummzeuch

    Crash when Delphi 10.n exits... again

    If the order is important, it's not the order of installation but the order loading the plugins. So disabling all of them and then enabling them in the desired order should do the trick.
  15. somebody named "Gilles The cat" just posted this in the Delhi Wiki: https://delphi.fandom.com/wiki/Forum:Old_component Maybe somebody here can help.
  16. dummzeuch

    TdxfOutlookBar for Delphi 5

    Apparently he had already asked DevExpress and they cannot supply the old version. (He could have mentioned that rather than let us (me) guessing. I didn't know what tdxfOutlootBar is/was and from they way he formulated his questionI thought he didn't either. That's what you get for trying to help. I should have known better. 😞 )
  17. dummzeuch

    TdxfOutlookBar for Delphi 5

    The first Google hit for you might have been that. I didn't see this on the first page of results. The joys of personalized search...
  18. dummzeuch

    Feature Request for String Paste As

    Ah, this was about Delphi, not GExperts.
  19. dummzeuch

    Feature Request for String Paste As

    Where?
  20. dummzeuch

    TdxfOutlookBar for Delphi 5

    So, to sum it up: The "dx" in the name is a strong hint that it is from DevExpress, so it should be possible to get this component from them, even for Delphi 5. Correct?
  21. dummzeuch

    Grep problem in 10.4.1

    Fixed that in revision #3369 Thanks for the hint.
  22. dummzeuch

    Adding file directories to project

    I just added the following feature request: https://sourceforge.net/p/gexperts/feature-requests/127/ That would solve your problem.
  23. dummzeuch

    Adding file directories to project

    Partly wrong: From Delphi 2007 to Delphi 2010 there were 4 entries: DCC_IncludePath DCC_ObjPath DCC_ResourcePath DCC_UnitSearchPath which the IDE all filled with the content of the Search path from the Project Options dialog Starting from XE there is only the entry DCC_UnitSearchPath.
  24. dummzeuch

    Adding file directories to project

    I just found that it is possible to set the search path via OTAPI IOTAProject.GetProjectOptions.Values['DCC_UnitSearchPath'] So in theory it's possible to create a plugin that searches for dcu / pas files, creates a list of possible directories and allows the user to add directories to the search path. Not sure about the amount of work that is necessary for this. It needs a UI too.
  25. dummzeuch

    Adding file directories to project

    done: https://osdn.net/projects/directorycollector/
×