Hi all,
I want to show the StatusDlg window while checking a Website but it doesn't work. It seems that the action HTTP.TestConnection() stops all other actions.
Is there another way to show the Status while checking the internet?
Button [On Click]
CheckAdress="ww1.copadata.at"
_meter=0;
StatusDlg.SetMeterRange(0, 100);
StatusDlg.Show(MB_ICONNONE, false);
Page.StartTimer(200);
result = HTTP.TestConnection(CheckAdress, 20, 80, nil, nil);
StatusDlg.Hide();
Page.StopTimer();
Page [On Timer]
_meter=_meter+1;
StatusDlg.SetMeterPos(_meter);
Stefan

