Jump to content

Stano

Members
  • Content Count

    892
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Stano

  1. I strictly follow business logic. So that I don't have a problem learning about them and finding something later. I don't have big units. So up to 3,000 lines. I don't know the answer to the question.
  2. Stano

    Trying to find the correct mouse event

    My experience is that DBEdit only updates the DBTable when entering or exiting the field. Just like you described it here. I too would like to know what event to call to update a value in a DBTable. Now I have a function that reads the text and after conversion saves it to a DBTable.
  3. Stano

    Close App on PC Shutdown??

    OT: I rather think that they don't turn it off, but put it to sleep or hibernate. I also use hibernation. I am writing this just to make you aware.
  4. Stano

    Deleting string wich does include number

    I would use Break on the first find, and set some variable to True
  5. This extension looks cool. It does not change images. I use the Brave browser. That will probably be it.
  6. After all, I just tried. The second one. It works perfectly. Immediately. He even made a negative of my photo
  7. Is this an extension? I tried it after a long time. But if I use Google Translator, the response when typing is very large The translation is black text It is unusable for me. There are more of them. I don't feel like trying them all. Can you advise?
  8. Stano

    HoursBetween

    Why do you use TEdit and not TTimePicker etc.? They are intended for this purpose. It's a big mistake for me!
  9. Stano

    Delphi or Lazarus/Free Pascal

    OT: thanks to this syndrome, we have such people as, for example Newton Einstein Bill Gates Where would we be today without this syndrome?
  10. Stano

    Delphi or Lazarus/Free Pascal

    And I like that. It's years of experience.
  11. Stano

    Delphi or Lazarus/Free Pascal

    Every time I see your name, I look forward to a long post. I honestly mean it as a compliment.
  12. Stano

    FB-3 Create a New Table

    I already gave him a link to the Fb forum here. But he is unteachable
  13. Stano

    The Delphi 11.2 release thread

    So I turned off Auto invoke and am using CnPack. I rarely need to run an LSP. It is OK for me. My experience is that LSP does not remember history.
  14. Stano

    Delphi Registration

    I have on my tongue in such situations: What do you want from stupid Americans. They are only interested in money. Nothing more. Managers must have studied at Oxford. They have high self-esteem and are completely detached from reality. They also only have eyes on dollars/euros. They are deaf and blind. Please don't take it personally. I am quite disgusted by it. I have already commented on it. I will not repeat myself and throw peas on the wall. I can hear the death knell ringing
  15. Stano

    Delphi Registration

    If you are asked to register, select the option that you own the license file. Then you give it to him. In the worst case, nothing happens. I just managed to register. It's a good idea to delete all registrations beforehand. But you wrote that he wouldn't let you in there Another option is to contact the supplier for help.
  16. Stano

    Delphi Registration

    Um, can't use the license regXX.txt file for that?
  17. Stano

    Round

    It is nicely explained here https://groups.google.com/g/firebird-support/c/gi06-4Uk3Yw
  18. Stano

    Remove empty event handler

    It happens to me with some. Typically FormCreate...
  19. OT if (dm.tb_design_master.state=dsEdit) or (dm.tb_design_master.state=dsInsert) then I prefer to use if (dm.tb_design_master.state in [dsEdit, dsInsert) then In such cases if Length(DBEdit19.Field.AsString) > 0 then I use if Length(Trim(DBEdit19.Field.AsString)) > 0 then
  20. Stano

    create a popupmenu from a SQL

    Use the function Copy()
  21. Stano

    Disable fade effects

    Perhaps this is due to the OS settings themselves. All visual effects are one of the first things I turn off with a new OS.
  22. Stano

    MMX blocks IDE

    Several times it happened to me that MMX blocked my IDE. ComboBox (Return) Type flashes. CPU goes to ~12%. Sometimes it stops. Now I got to this state as follows: I made changes to the forms I closed the form without saving the changes
  23. Stano

    MMX blocks IDE

    I think the same. But I have no idea what it could be. It happens sporadically. Fortunately, with a large time gap. I use CnPack and Project Magician I would like to know what the selected ComboBox reacts to. Maybe that will help me figure something out.
  24. I'm not an expert, but in my opinion Action := caFree; frees things in the form, but not the form itself. I am happy to learn. Personally, I would just show and hide the form. It did not destroy and set to null. I don't know if such behavior is suitable for the given situation. I won't get involved in your business anymore. I can't do it
  25. In any case, I miss FDetailForm.Free; I don't know if it will help.
×