Jump to content

Lajos Juhász

Members
  • Content Count

    1011
  • Joined

  • Last visited

  • Days Won

    13

Lajos Juhász last won the day on December 29 2024

Lajos Juhász had the most liked content!

Community Reputation

302 Excellent

2 Followers

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Lajos Juhász

    TEdit problem capital letters (Delphi 12, Android)

    Does it change if you change the CharCase from ecUpperCase to ecNormal?
  2. Lajos Juhász

    fmxLinux missing?

    https://blogs.embarcadero.com/eugene-kryukov-father-of-firemonkey-and-incredibly-talented-developer/?utm_source=facebook&utm_medium=social&utm_content=fatherOfFiremonkey
  3. Lajos Juhász

    What is wrong with this component??

    Reading the code I believe it is the: procedure TMyCustomCalendar.CreateWnd; begin inherited CreateWnd; RecreateWnd; // Force the control to redraw and send MCN_GETDAYSTATE end; Why do you want to create windows handle all the time? (just after it was created?)
  4. Since mobile platforms are changing so fast. It really depends at what moment you compare. At anytime the state of Delphi can be better or worse than last time. In 2100 when the mobile platforms are going to be stable like desktop you can expect a better integration with Delphi.
  5. Since mobile platforms are changing so fast. It really depends at what moment you compare. At anytime the state of Delphi can be better or worse than last time. In 2100 when the mobile platforms are going to be stable like desktop you can expect a better integration with Delphi.
  6. Since mobile platforms are changing so fast. It really depends at what moment you compare. At anytime the state of Delphi can be better or worse than last time. In 2100 when the mobile platforms are going to be stable like desktop you can expect a better integration with Delphi.
  7. It was a couple a decade ago when I wrote my previous C code. At that moment x is out of scope You should use sum to hold the result: sum +=myArray[x] cout << "The sum is: " << sum << endl;
  8. Lajos Juhász

    Uploading photos to a web host.

    I believe the 3rd character in the 10th line of your code is wrong. On a more serious note without any details what the server expects and how you tried to connect we can not help.
  9. Lajos Juhász

    DBGrid PickList Change

    You wrote the best solution onChange. With this you might covered some situation. What for the case when instead of key down the user click on the row below or above?
  10. Lajos Juhász

    Problem to save XLSX file with QuickReport

    You will have to debug the code. I've tested on a couple of reports it is working for me.
  11. Lajos Juhász

    Google Pay and Apple Pay

    Mobile platforms are changing very fast. Sometimes it is difficult for Embarcadero to provde a solution in a reasonable time frame when the new requirements are released to be able to continue to compile for new versions. Unfortunately nowdays Delphi support too many platforms. They are playing catch up games against other products. Delphi is by rule almost always way behind.
  12. Lajos Juhász

    My sLineBreak is not working

    It is in lines property,
  13. Lajos Juhász

    XML library for Delphi on Android

    (In theory) you can use the TXMLDocument if you select a cross platform DOM vendor. (https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Using_the_Document_Object_Model)
  14. Lajos Juhász

    Make Bold DBRrid Row Color

    At the second row is not the end of the dataset, eof is going to be true when you call next on the last row. You can check recno or a value of the group field.
×