Jump to content

gkobler

Members
  • Content Count

    167
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by gkobler

  1. D12.2 has now the „focus mode“, may it‘s that what you need?
  2. I made som test with my mRemoteNG program. https://mremoteng.org/ I can't see any blinking code editor at my RDP connection.
  3. If everyone thinks the others are already doing it, then nothing will happen. So if the error bothers you so much, maybe you should open the RSP. The problem has also stressed me out more, but after uninstalling Bookmarks and Navigator it hardly affects me any more. That's why I haven't bothered to create an RSP. Incidentally, I have always had good experiences with the resolution of my RSP. I also have a support contract. First I create an RSP and then when it is confirmed I report it to support, they have always been able to solve the problem and integrate it into the next version.
  4. So how is Embarcadero supposed to know that there is a problem that needs to be fixed?
  5. Are there an open RSP for that case?
  6. Yes of course, but deinstall these tools an look if its giung better
  7. I have this pain when i press Ctrl-C a lot but i think this cause a 3-Party tool. Have deinstalled Bookmarks and Navigator. Now it‘s better. Not so often.
  8. I use Ctrl-F a lot but got not a problem like you. May a 3-Party tool cause the problem?
  9. For those who use TIBEvent in their projects, the following is perhaps a useful hint. https://embt.atlassian.net/servicedesk/customer/portal/1/RSS-1302
  10. gkobler

    Suggestion for next version name - YASAB

    Me too… 🙂
  11. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    Solved in build 26: Now you can setup the settings
  12. We are pleased to present the new version 2 of the Firebird Monitor with “Trace and Audit”. We are currently offering a 10% discount on the purchase of a license until the end of June 2024. The coupon code is "Discount10". With “Trace and Audit”, they are able to record and evaluate every single event in the database. Visit our homepage and download the demo version. https://fbm.gksoft.ch
  13. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    It's on my todo list. 😉
  14. gkobler

    Writing if statement in the Code Editor

    Sometimes scale settings more than 100% makes problems. Try it with 100%
  15. gkobler

    IDE freezing

    Does anyone have the same problem as me when selecting several components (visible as well as non-visible) on a form in the IDE. Either by Ctrl-clicking or just with the mouse and then pressing Ctrl-C, the CPU output of the BDE.exe task goes up and the IDE is blocked/freezing. You can then only end the task and have to restart the IDE. The problem has existed for some time, but since D11, D12 and D12.1 it happens more and more frequently.
  16. gkobler

    IDE freezing

    Have installed Parnassus Navigator, will try to deinstall them.
  17. gkobler

    IDE freezing

    this is what process explorer shows when the IDE hangs
  18. gkobler

    IDE freezing

    Good sugestion, will try it. You can wait for hours.. the IDE still hangs
  19. gkobler

    Delphi 12.1 is available

    After Install D12.1 it looks like ok, but all win64 path settings are lost 😞 Hade to reinstall my 3-party components
  20. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    New version 1.0.5.B25 are available. At the moment just for D12
  21. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    OK, I have also seen that the registry is updated immediately. I was of the opinion that this only happens when the IDE is closed. So I can insert a refresh button.
  22. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    i told you there are some event from the ToolsAPI where i can update the list
  23. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    But the registry is only updated/written when Delphi is closed, so you have no change while Delphi is running.
  24. gkobler

    wuppdi Welcome Page for Delphi 11 Alexandria?

    I don't really understand your question. Because when the IDE is started, the registry is read out, then every change is recorded via an event and updated in the rescent files. Therefore a refresh of the registry is not necessary.
  25. I have installed FB3 as a service. FB2.5, 4.0 and 5.0 are also installed, but i run these version not as a service it runs as program with different port configuration. So i can run different FB-Server versions at the same time. Port 3040: FB2.5 3050: FB3.0 (default) 3060: FB4.0 3070: FB5.0 The follow code runs PROCEDURE TForm1.Button3Click(Sender: TObject); VAR FDIBInfo: TFDIBInfo; AVersion: TIBInfo.TVersion; BEGIN FDPhysFBDriverLink1.VendorLib := 'D:\Temp\fbclient32_500.dll'; FDIBInfo := TFDIBInfo.Create(Self); FDIBInfo.Protocol:= ipLocal; FDIBInfo.DriverLink:= FDPhysFBDriverLink1; FDIBInfo.UserName:='SYSDBA'; FDIBInfo.Password:='masterkey'; FDIBInfo.Port:= 3070; FDIBInfo.GetVersion(AVersion); ShowMessage(AVersion.FServerStr); END; But it detects the wrong Server version, the result are allways the follow WI-V3.0.11.33703 Firebird 3.0 The code line FDIBInfo.Port:= 3070; has no influence on the execution. Is this possibly an error or is generally only the FB version of the installed Windows service queried? Are there a better way to detect the FB-Server version? I use Delphi 12.0.1
×