[lazarus] TEdit, TProgress

UAB Diprintas mbm at diprintas.lt
Tue Apr 18 03:34:22 EDT 2000


Hi, all!

See, I have a BIG trouble with TProgress: when my program is COPYING some
file, and I
wanna to show for user how many bytes (percent) is away ;) -- progress is
like died and window (widget, form...) is completely FROZED, while process.
:-(

Here is example (for understanding only):

...
someform_with_progress.show;
...
while not eof(somefile) do
    begin
       read(somefile,someblock);
//       inc(myprogress.position);  -- here error :-(
         myprogress.position:=myprogress.position+1;  // ughhh... Pascal...
Why not '+=' ?

// So here POSITION must RUN,

// buddy... window is completely

// FROZED, until EOF :-(

// On Delphi4 this code-example is working OK.
      write(some_another_file,someblock);
    end;

// someform_with_progress.hide; -- error, coz` I can't to hide a widget :-(
someform_with_progress.close;


So.... What I can to do?
Another trouble: TEdit.OnChange -- is compilling without errors, but... it's
NOT REAL
event. It's just... nothing happend... :-(











More information about the Lazarus mailing list