Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/30/19 in Posts

  1. Dave Nottage

    Android, TWebBrowser & Uploading files

    I've modified the Java code and published a new .jar here: https://github.com/DelphiWorlds/KastriFree/blob/master/Lib/dw-webchromeclient.jar
  2. Post updated to now include discounts for: Bergsoft CleverComponents Components4Developers DelphiParser DevArt EurekaLog HelpNDoc TMS Software And general dev resources: The Pragmatic Bookshelf Pragmatic Studio courses Pluralsight Udemy https://www.ideasawakened.com/post/black-friday-discounts-from-delphi-related-third-party-vendors
  3. This is definitely not the right way to write code. Avoid ProcessMessages() whenever possible. The example given can be replaced with a simple UI Timer instead, eg: ProgressBar1.Value : =0; ProgressBar1.Max := 100; Timer1.Enabled := True; ... procedure TForm1.Timer1Timer(Sender: TObject); begin ProgressBar1.Value := ProgressBar1.Value + 1; if ProgressBar1.Value >= ProgressBar1.Max then begin Timer1.Enabled := True; Exit; end; //... end; But, if your real project is using the ProgressBar to tracking status of actual tasks, those tasks should be done in the background, and updates to the UI synced with the main UI thread accordingly.
  4. Uwe Raabe

    10.1 Berlin - no mouse hover inspect

    The option is called Tooltip expression evaluation.
×