Jump to content

Lajos Juhász

Members
  • Content Count

    1063
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by Lajos Juhász

  1. Lajos Juhász

    How to focus a window from another application?

    On My System using reticle (https://chapmanworld.com/2018/10/04/custom-vcl-control-for-getting-window-handles-spy-style-reticle/) I get: Handle: 2952088 Class: Windows.UI.Core.CoreWindow Caption:Calculator Ancestor handle: 396212 Ancestor class: ApplicationFrameWindow Ancestor caption: Calculator I can focus Ancestor handle but it will not get the keyboard focus. In order to focus I have to do: ShowWindow(<Ancestor Handle>, SW_SHOWNORMAL ); SetForegroundWindow(<Ancestor Handle>); ShowWindow(<Handle>, SW_SHOWNORMAL ); Tomorrow I am going to try to find a way to get the handle of the Windows.UI.Core.CoreWindow didn't managed to get it using FindWindowEx.
  2. Lajos Juhász

    How to focus a window from another application?

    The calculator. It's a kiosk type application and the user will have only one instance of calculator open at a time.
  3. Lajos Juhász

    How to focus a window from another application?

    On my laptop doesn't work. Even cannot use directly FindWindow as it returns a window handle from the ApplicationFramHost.exe instead of the Calculator. Tried on Window handles from the calculator but the reasult is same as with ShowWindow or SetWindowPos.
  4. Lajos Juhász

    Reinstalling Delphi 10.4 after PC Crashed

    You've to find the last released ISO image before your subscription ended.
  5. Lajos Juhász

    Delphi 11 High DPI designer

    I am not going to work on that project in the near future. When I go back to that project most probably will have to find a way to improve high DPI and to report whatever anything I can make a simple test project.
  6. Lajos Juhász

    Delphi 11 High DPI designer

    I am still using 96DPI for designer. I also have problems with the ScalingFlags property. The VCL is changing it's value during the loading of the component from the DFM. I have to "lock" QuickReport to 96 in order to work correctly. On the other hand for some controls when rescaled for higher DPI the font changed but not the width so the data doesn't fit into the controls on higher DPI.
  7. Lajos Juhász

    New Type ambiguity in Delphi 11?

    Should not be a problem, maybe I am just lucky and the uses in my project was "correct" already in 10.4.2 for me only change was the breaking changes in the interfaces that were incorrect prior to Delphi 11.
  8. Lajos Juhász

    Where is the Welcomepage directory in Delphi 11 Alexandria?

    So far I have spent only a couple of days using Delphi 11 and the project I am rewriting using it is a very small one. A couple of times LSP have had trouble to catch up with changes, I almost made a test case for Embarcadero, however magically after five minutes the LSP managed to process the code.
  9. Lajos Juhász

    Where is the Welcomepage directory in Delphi 11 Alexandria?

    I experienced that the mouse stopped responding after compile. In those cases after that I was able to compile using keyboard shortcuts but it did required to restart the IDE.
  10. Lajos Juhász

    LSP - Alexandria

    Maybe they removed this option. For me it doesn't work even in Delphi 10.4.2 (worked in earlier versions of 10.4).
  11. Lajos Juhász

    Client Dataset Grouping

    You can check: if VarIsNull(DBGrid1.Columns[1].Field.Value) then .... Usually it's null not empty string or: if DBGrid1.Columns[0].Field.AsString='' then
  12. Lajos Juhász

    Are you using Delphi 11 with mainstream projects?

    I've spent a day using the new IDE. The Access Violations while building the project group still there. What's new for me is that once I got an error that some component already exists and compiling stopped working. The plus side is that I was able to move some code base from D10.4.2 to D11 very easily. There was only a few data type changes in the methods in the RTL that required changes in my code.
  13. Come on what about the way they've changed the high dpi support (it's almost working.).
  14. Lajos Juhász

    TFDQuery Async execution aborts with out of memory

    You're reaching the memory limit of the 32 bit applications. You can choose between to switch to 64 bit or to limit the query.
  15. They left the function names to make the codebase compatible with pre D2009 versions. Some libraries unfortunately still support those versions.
  16. Lajos Juhász

    TFDConnection.ExecSQL with ResultSet

    That's correct the ExecSQL will create the TFDQuery object without an owner and you've to free (no matter if there was an exception or not).
  17. type TTwenty: string [20]; This is a shortstring and should not be used in programs as it is only for backward compatibility.
  18. Lajos Juhász

    Google Charts in uniGUI

    You should use a web search engine (like google): http://www.unigui.com/
  19. Lajos Juhász

    Change Scroll bar color

    I doubt anyone took the time to add Delphi styles to Synedit.
  20. Lajos Juhász

    Delphi compatibility with Windows 11?

    If you don't upgrade your computer to Windows 11 how do you test if your application works correctly or not? Please don't tell me that you force all of your users not to upgrade and not to buy a new computer with Windows 11 OS.
  21. Lajos Juhász

    C++ Code Insight in 10.4.2

    It was a FB announcement that I've pasted here.
  22. Lajos Juhász

    C++ Code Insight in 10.4.2

    That's not the complete product preview only contains information about user interface. The full preview is going to be tomorrow: Have you registered yet? RAD Studio 11, Delphi 11, and C++Builder 11 are just around the corner! Join Marco, David, and Jim for this sneak peek at this huge leap forward in your favorite development tools. September 9th at 9 AM / 1 PM / 6 PM CDT. Register here: https://embt.co/SneakPeek-RAD11
  23. Before that open a ticket at Embarcadero.
  24. Lajos Juhász

    C++ Code Insight in 10.4.2

    What's done for version 11 is secret only for the next two days. I believe after that @David Millington or @Marco Cantu can give you more details here or you can ask on the webinar. Unfortunately I will have to skip this product preview.
×