Jump to content

dummzeuch

Members
  • Content Count

    3091
  • Joined

  • Last visited

  • Days Won

    114

Everything posted by dummzeuch

  1. 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.
  2. 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.
  3. 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.
  4. 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. šŸ˜ž )
  5. 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...
  6. dummzeuch

    Feature Request for String Paste As

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

    Feature Request for String Paste As

    Where?
  8. 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?
  9. dummzeuch

    Grep problem in 10.4.1

    Fixed that in revision #3369 Thanks for the hint.
  10. 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.
  11. 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.
  12. 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.
  13. dummzeuch

    Adding file directories to project

    done: https://osdn.net/projects/directorycollector/
  14. dummzeuch

    Adding file directories to project

    "a program that simply collects paths dropped on it"
  15. dummzeuch

    Adding file directories to project

    On second thought: This doesn't really solve your problem. You still have to add these dirs to the search path, compile, find the next one which is missing, add it and start again. Btw: GExperts makes the search path dialog accept dropped directories already.
  16. dummzeuch

    Adding file directories to project

    Took me less than 10 minutes. Here you go. I'll put the source on OSDN later. DirectoryCollector.zip
  17. dummzeuch

    Adding file directories to project

    Unfortunately adding to the unit search path of a dproj file is a mess since there are at least 4 entries that need to be changed (maybe one could get away with changing only one and leave it to the IDE to add to the others, but I don't know which one that would be). But creating a program that simply collects paths dropped on it, is far from rocket science. I think I'll put one together within the next 30 minutes.
  18. Tired of all those programs which install lots of additional stuff I have been using more and more so called ā€œPortable Appsā€. ā€œPortableā€ in this context means: You can put them anywhere, even on a portable storage device and start them from there. These Programs are still Windows only. And of course nobody prevents you from putting them in a folder on the system harddisk, usually c:\PortableApps. All files these programs need are inside this one folder, so in order to move or copy them, you simply move/copy that folder. There is a dedicated launcher and updater for these types of programs at portableapps.com, which is written in Delphi btw. and the source code is available. One thing that has irked me all the time is that these programs don’t show up in the Windows start menu, unless I add them manually, which I usually don’t. Today I had enough and wrote PortableAppsToStartMenu, a tool which given a PortableApps directory collects all the executables stored there and creates shortcuts in the Windows Start Menu for them. Read on in the blog post.
  19. dummzeuch

    PortableAppsToStartMenu 1.0.0

    @limelect I just fixed a few problems in the build scripts regarding directories and file names containing space characters. It works for me now. Try again, but remember to check out the trunk, because that's where I made these changes.
  20. dummzeuch

    PortableAppsToStartMenu 1.0.0

    Did you try a path without space characters? Simply move the project directory to e.g. g:\sources and try the build script again.
  21. dummzeuch

    Any luck using 10.4.1 on Windows 8.1?

    I have installed it on 8.1 too (and another installation on Windows 10). But since 4.1 isn't stable enough for me to use it in every day work, I can't really say whether there are any Win 8.1 specific issues.
  22. dummzeuch

    PortableAppsToStartMenu 1.0.0

    The version.res file is generated by the prebuild script (when it works).
  23. dummzeuch

    PortableAppsToStartMenu 1.0.0

    The space character in the path might cause this.
  24. dummzeuch

    this regex function gets unexpected results at some cases

    The regex you posted here got mixed up by the editor/browser. There is no way we can help you based on that code. Do as @FredS suggests: Use a tool to try this regex.
  25. dummzeuch

    PortableAppsToStartMenu 1.0.0

    You don't need to run any batch file, but you must be sure to check out the sources including the externals, in this case dzlib and buildtools. The pre- and post-build scripts need buildtools. Oh, yes, I forgot to implement that button. I never use it and prefer drag and drop or autocomplete. I just added it out of habit. (Hm, why is this text larger now? Sometimes the mobile interface does strange things.)
Ɨ