Re: Progress on long operations



On Delphi for .NET side, you may try to use a progressbar with either TBackgroundWorker component (.NET 1.1, http://cc.codegear.com/Item/23284) or BackgroundWorker in BCL (.NET 2.0).

I did not see any component similar on Win32 side. And you may need to use threading (TThread) to implement the effect you described here.
.