Jump to content

timfrost

Members
  • Content Count

    196
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by timfrost

  1. timfrost

    GExperts formatter in 11.3

    Early days, but it looks as if the formatter is dead in 11.3. No action on keystroke or menu. Some other editor experts are still working.
  2. timfrost

    GExperts formatter in 11.3

    Rebuilt with 11.3 and panic over! I might have had to drop back if there was no GExperts formatter. Also visited the donations page.
  3. timfrost

    GExperts formatter in 11.3

    Yes, after the 11.3 install when I open the IDE everything comes up as usual, including GExperts. I will try a rebuild next.
  4. timfrost

    Rest Server

    If what you describe happened to me, I would start by running Process Explorer on the system where it works, highlight the EXE and press control-D. One or more of the DLLs listed in the lower pane will be missing from the system where it fails. Tedious to check them all, but you may spot something obvious.
  5. The PowerToys utility really only does accents and I found it inflexible when I tried (and then abandoned) it. I use Wizkey from https://antibody-software.com/wizkey/ even though it has a small cost (and a free trial). Easy to use either from the keyboard or from a popup menu, which I have set to pop up with two presses of the Control key. This menu is customizable so you can ensure your commonly needed characters are immediately to hand, without having to remember a Unicode value. The menu has an option to show a full char-map for selection also. Of course it works everywhere, not just in the IDE.
  6. timfrost

    FileOpen dialog not showing all files

    How do I have version 5.1.8.360 installed when your own link above is only to 5.1.7 ?
  7. timfrost

    English Version of GLibWMI??

    That could be because it is a different language! The calling and using is the easy bit: once you have added winapi.windows to your uses list, the Delphi IDE shows you the parameters and their types when you write the function name. And Google finds you precise details of how the API function works when you enter MSDN followed by the function name. But I am not the best person to tell you what functions you can use, even if you had told us what features (other than starting/stopping services) you want to use them for. Having been a C programmer since long before I even discovered Delphi 1, I no longer remember how I learnt about the Windows API. Hopefully someone else will point you towards a more up-to-date resource to learn about it..
  8. While switching to a new machine I have identical installations of Delphi 10.4 and 11.2 on Windows 10 and Windows 11. Only on Windows 11, the GExperts Code Formatter ignores whatever key combination is assigned to it, when the IDE is run elevated. This is annoying, because I often have to work in an elevated IDE to debug an application that requires elevation. The GExperts folder and its contents are identical, as are the registry keys for GExperts and the configuration settings. Other keystroke combinations configured in GExperts are unaffected, as are operations when the IDE is not run elevated. What might cause this, and might there be a way to avoid the problem?
  9. timfrost

    No GExperts formatter on Windows 11 with elevated IDE

    Good question! In the many years that I have been using GExperts, I have never enabled Editor Experts on its main menu, so I had forgotten it was there. I had ruled out a problem with a stolen keyboard shortcut because I had tried so many different combinations. And my standard shortcut for the formatter (Alt + accentgrave) has never been stolen before. Now, it works from the menu. And, it also works from the keyboard. So your excellent suggestion has not actually added to my knowledge of what the problem was, although I now have normal service resumed. I have a habit of writing new code without too much care for neatness, then pressing the 'format' key to tidy up and check that all the begins and ends line up. I suppose I have done this since DelForEx was standalone. If it happens again, I will have to go back to looking for something that might have stolen the elevated-only keystroke yesterday and today, that is not running now. I have been round this circuit before.
  10. timfrost

    VCL menu control needed

    TMS have a popup menu TAdvStickyPopupMenu in which items have a property which sets them to not hide the menu when clicked. But I don't think it is available on its own, only in the VCL UI Pack.
  11. timfrost

    New security requirements for code signing, disruptive ?

    Excellent blog posting from Vincent - many thanks. It seems that VirtualHere is going to solve the looming problems for me, and that I will be able to continue to use FinalBuilder with a USB dongle for the signing of EXE and DLL files that has to be done on each release. I also have to be remote from where the USB would be plugged in, and no dongle will have to travel.
  12. That Microsoft link brought back some memories! Murray Sargent, who wrote the article, is the author of the PMATE text editor, which I used as a programming editor over 30 years ago; some of its keyboard shortcuts I still configure in the editors I use today. And he had many other careers before joining Microsoft and becoming a RichEdit guru.
  13. Looks useful. And the icons can easily be made legible on my 192dpi screen by overriding the high-dpi settings in Explorer properties and telling Windows to scale the application. What is much more serious is that on my big screen I find the font size of the main address, hex and text displays far too small for my ancient eyes. Is there some simple way to change the font size?
  14. timfrost

    Prevent Delphi IDE Multiple Instance

    Yes, it would work well for me. But it is not clear from your website or Github page exactly what I would need to download or purchase to get just this IDE functionality. I do not need any of the other tools or utilities that I can read about there.
  15. timfrost

    Limit 10.4.2 IDE to one instance

    If you downloaded GExperts.CHM from somewhere yourself, it may be 'blocked'. Right-click in Explorer and unblock it in Properties.
  16. timfrost

    sending text between applications (10)

    Grijjy have a wrapper for the ZeroMQ Majordomo protocol at https://github.com/grijjy/DelphiZeroMQ. There's a lot of reading to do if you want to learn all about ZeroMQ, but Grijjy supply a simple Client, Worker and Broker to start from, which work 'out-of-the-box'. The advantage to using a Broker app is that you do not have to sniff around to discover everyone's IP address; each party registers their name and role with the broker and then the broker ensures that messages can be sent to and from each named entity. You can also combine this with Grijjy's 'protocol buffers' to send almost any type of data that the sender and recipient apps agree upon. I have started to explore this myself and have not yet discovered any major snags.
  17. timfrost

    MsgConnect

    I am looking for someone who still uses MsgConnect, which was an Eldos product before it was dropped immediately after NSoftware acquired it. I would like to know of anyone who has successfully tried it with Delphi11. We use it in a service application which, when built in D11.1 with suitable changes to the .INC file, silently terminates after receiving and replying to the first message sent to it. Debugging the service is tricky, and the exception occurs deep inside the library code. Before I abandon MsgConnect and look for alternatives, it would be good to know if anyone else has found and fixed a similar issue.
  18. timfrost

    NT API components

    Look at MiTeC System Information Component Suite (https://www.mitec.cz/msics.html). Includes both AD and WMI components at a lot else besides.
  19. timfrost

    auto code formatting

    My principal IDE is RAD Studio (for Delphi) but unfortunately I also have to use Visual Studio a bit. I cannot stand the way VS moves my code around or adjusts my spacing while I am typing it. It is a most unhelpful and distracting feature.
  20. timfrost

    PDF Library

    Last year I might have suggested QuickPDF, formerly from Debenu, now from Foxit. But Foxit announced its EOL a few months ago. I also use the PDFIUM wrapper from https://winsoft.sk/pdfium.htm, but this requires the Google PDFIUM DLL separate from your application. They have a demo, and a PDF merge example.
  21. timfrost

    Delphi 11.1 is available

    The Docwiki links for new features and fixes in 11.1 are not working (here).
  22. timfrost

    Formatting inline var

    The GExperts formatter seems to do what you ask, here. I have never used the one that comes in the IDE, though.
  23. timfrost

    Docx (RTF) to PDF convert

    No need to print from Word, you can automate it to open and 'save as PDF'. And you can do the same with Libre Office, for MS and ODT formats, and there is a library available from https://www.winsoft.sk/libre.htm which can help with this. If installing Libre is as much of a problem for you as installing Word, there is also a library available from https://delphihtmlcomponents.com/office.html which can read Word Documents and can also write PDF, via HTML.
  24. Some of the comments to https://softwareengineering.stackexchange.com/questions/196706/creating-a-coding-standards-document may be relevant. I read into several of them that the best advice is often, "don't try this".
  25. timfrost

    Delphi 5 - VirtualTreeView

    https://github.com/JAM-Software/Virtual-TreeView
×