Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 09/26/20 in Posts

  1. FPiette

    Button needs two clicks

    Try to write a very simple program to reproduce the error. For example a single form with two comboboxes and a button. Implement the logic you exposed in your question and in the button OnClick, just call ShowMessage. If it doesn't work, publish the code here. If it works, then double check you application to find whicg error you made.
  2. dummzeuch

    Grep search empty window with 10.4.1

    A fix, or rather workaround was to set the main panel's visibility to False and then True again in the FormShow event. fixed in revision #3312 At least I hope so.
  3. Mahdi Safsafi

    Removing breakpoints

    View -> Debug Windows -> Breakpoints -> Delete all breakpoints.
  4. haentschman

    Removing breakpoints

    Hi... ...look here (in german):
  5. jordi

    ios webview credentials

    Hello, I 've modified the code with your suggestions and it's working. Also I've added a feature request to Quality Portal. Thank you very much
  6. Martifan

    iOS Location

    Thank you very much, as always everything works 🙂
  7. If you could define what "some json issue" is then we (and you) would have a chance of actually solving this problem. Right now we're all just guessing.
  8. Not sure if it fits your needs, but nevertheless this might be an interesting read for you (unless you have already done so): Dataset Enumerator Reloaded And here ist the corresponding rep: DataSetEnumerator
  9. Anders Melander

    Is variable value kept after For.. in ... do loop?

    I'd say that if you have records that size then the iterator is not the problem you should be focusing on
  10. Lars Fosdal

    Is variable value kept after For.. in ... do loop?

    Yeah... you are not the only one.
  11. So actually, while looking cool and trendy it really is slow and not so cool at all? I got some refactoring to do... gnarf!
  12. pyscripter

    Per monitor DPI awareness - how to prevent flickering?

    procedure TForm1.FormAfterMonitorDpiChanged(Sender: TObject; OldDPI, NewDPI: Integer); begin LockWindowUpdate(0); end; procedure TForm1.FormBeforeMonitorDpiChanged(Sender: TObject; OldDPI, NewDPI: Integer); begin LockWindowUpdate(Handle); end;
  13. Fr0sT.Brutal

    "Self-updating" terminal services DLL

    Depending on lib usage, you can split your lib into agent part that is rarely updated and functional part that could be unloaded and updated by agent part.
×