PDA

View Full Version : Status Dialog - Left over text after unzip


JXBURNS
02-28-2007, 05:38 AM
Running the following code

StatusDlg.Show();
StatusDlg.SetTitle("some text - yeah I know no need but getting ready to write a call back function for the unzip process");
Zip.Extract(usual stuff with nil as the callback);
StatusDlg.Hide();
ShowADialog();

[In a global function]
function ShowADialog()
StatusDlg.Show();
StatusDlg.ShowProgressMeter(false);
StatusDlg.SetMessage("some text here...");
StatusDlg.Hide();
end



After the files have been unzipped, I see the word "Item:" underneath the "some text here..." message. This is left over from the unzip process. Should this not have been removed after the unzip process finished?

Rgds John

Adam
02-28-2007, 10:01 AM
Not sure off hand. Do you have a screenshot that shows this?

Adam Kapilik

JXBURNS
02-28-2007, 10:51 AM
Pls see attached. Now I can also see it says 'Extracting' in the title as well.

Thanks - John