JXBURNS
02-28-2007, 06: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
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