But it sure looks like it. Here's the deal, the user opens
a file and a fair amount of processing has to take place before any interaction can occur. I want to put up a Splash Screen or something so they don't ctrl-alt-delete out of there before all the fun and games begin
So I tried a splash screen but it don't paint. The code I'm trying looks like this...
Thanks
a file and a fair amount of processing has to take place before any interaction can occur. I want to put up a Splash Screen or something so they don't ctrl-alt-delete out of there before all the fun and games begin
Code:
if FileExists(fname) then begin
SplashForm.Show
Process(fname);
SplashForm.Hide
end;
Thanks