Jump to content

Lajos Juhász

Members
  • Content Count

    812
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Lajos Juhász

  1. Lajos Juhász

    Android app - reading barcodes/QR codes

    You can try https://github.com/Spelt/ZXing.Delphi. I did only a test for VCL and QR codes.
  2. Lajos Juhász

    Typing single quite in IDE produces strange characters

    change your regional settings in the IDE. Set your keyboard to for example ENG US.
  3. Lajos Juhász

    Toggle main form size in IDE

    You cannot make the form in the IDE larger than the resolution of your screen you're working on. This is an insane limitation of the new IDE (can you bite if you have a 4k office monitor and have to work later on a laptop).
  4. You should define your view in Tools - Options. You can find it if you navigate to User Interface - Form Designer - Device Manager or just write Device manager into the search edit box at the top. https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Adding_a_Device_Preset
  5. Lajos Juhász

    What is your experience Debugging Front and Back with MVC Delphi?

    My only experience with this kind of debugging is that it's going to result a request time out.
  6. Lajos Juhász

    Where is the link to register to the forum?

    Hint: Powered by Invision Community.
  7. Lajos Juhász

    Display Value at runtime

    I cannot fully understand the question either. My bet is that the TDBgrid for blob fields instead of the value displays (Memo). In order to correct that a solution is to use the OnGetText event of the TMemoField/TWideMemoField:
  8. For me it made unstable. There was no chance to do compile all for a large project group. The solution was to add scopes to unit names and improve code structure and reduce circular references.
  9. For me MMX Code Explorer works perfectly to reduce circular references (Unit dependency Analyzer). For compiler stability possible it's more important to write the entire unit name eg. Winapi.Windows instead of Windows and having a large list of unit scopes names in the options.
  10. Lajos Juhász

    FireDAC Create table with TFDTable class at SQL Postgres 14

    I cannot help here. If you're going to feel better I have similar issues with auto generated SQLs on Informix. My solution is to generate SQL in my code and don't rely on auto generated statements.
  11. Lajos Juhász

    Android Foreground Server location access blocked

    Most probably you're looking at wrong place: https://developer.android.com/training/location/permissions
  12. Lajos Juhász

    Delphi 10.2 add Windows Codesign

    You have to download the Windows SDK and use the signtool. (https://learn.microsoft.com/en-us/windows/win32/seccrypto/using-signtool-to-sign-a-file).
  13. Lajos Juhász

    iOS 17

    Your report has a status Open. It's not rejected (yet).
  14. Lajos Juhász

    TCalendarView returning a bad Date

    I can confirm using both OnClick and OnChange events that I can receive: 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000 45113 -700000
  15. No. The reason to create a thread is to move to the next line without waiting for a block of code (inside the thread) to complete. That's the purpose for threads in every platform.
  16. On the other hand I believe you should learn a bit more about multi threading.
  17. On mobile devices you should never block the main thread (or risk that the OS will terminate your program). Without more details we cannot help you. Most probably you want to disable the UI elements that are not allowed while your background thread is executing.
  18. https://blog.marcocantu.com/blog/2014_may_background_delphi_android_threads.html
  19. Lajos Juhász

    SynEdit Accessibility Support

    Thank you pyscripter for the enormous work on synedit.
  20. Lajos Juhász

    Is there a Sunday between 2 dates ?

    you can ask AI to write this code. An anser from Bing function IsSundayBetween(StartDate, EndDate: TDateTime): Boolean; var Day: TDateTime; begin Result := False; // assume there is no Sunday between the dates Day := StartDate; // start from the start date while Day <= EndDate do // loop until the end date begin if DayOfWeek(Day) = 1 then // check if the day is Sunday begin Result := True; // set the result to true Break; // exit the loop end; Day := Day + 1; // increment the day by one end; end;
  21. Lajos Juhász

    Linux Issues: unsupported DW_FORM value: 0x1f

    there is an open RSP - https://quality.embarcadero.com/browse/RSP-39793.
  22. There is one acient technique: https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Testing_Installed_Components
  23. Lajos Juhász

    delphi Twebbrowser Javascript error

    https://stackoverflow.com/questions/25843845/how-to-have-delphi-twebbrowser-component-running-in-ie9-mode
  24. Lajos Juhász

    'for i:= 0 to 4' does 6 loops when not in Debug mode

    My guess is different memory layout in debug and release mode. That's why the code inserted to debug changed the behaviour of the bug.
  25. Lajos Juhász

    Setting Font Color on certain controls

    If you enable Runtime Themes you delegate the drawing for some components to Windows and the colors from the Active Windows Theme is used. In ancient versions of Delphi this was done through XPManifest. You can use VCL Styles to customize the drawing.
×