Hallo everybody
I was having some troubles with built-in StatusDlg and i thought to drop by and ask.
If i want to use the built-in StatusDlg in order to let a user know that some files are being copied, if at the end of copying i let show the cancel button on the StatusDlg with the purpose to terminate the process it doesn't work, it doesn't do anything although i use a few simple commands to close the StatusDlg with the cancel button. The code that i use looks something like this;
StatusDlg.Show(MB_ICONNONE, false);
-- do smth here --
StatusDlg.ShowCancelButton(true, "Cancel");
result = StatusDlg.IsCancelled();
if result == true then
StatusDlg.Hide();
end
Does anybody know what is wrong with this code?
Thanks in advance

