![]() | Products |
| Home » Technical Support » Elevate Web Builder Technical Support » Incident Reports » Incident Reports Addressed for Version 1.02 » View Incident Report |
| Reported By: Matthew Jones Reported On: 3/13/2013 For: Version 1.01 Build 5 |
procedure TForm1.OnServerLoginNeeded(aCallBack : TOnSuccessCallback);
begin
Report('Called back');
m_pfnLoginRetry := aCallBack;
DoLogin;
// aCallBack;
end;
procedure TForm1.OnServerStatusComplete(nResult : Integer; tmDateTime : DateTime; szStatusMessage : String);
begin
Report('Server Status complete');
Report(szStatusMessage);
end;
procedure TForm1.OnServerLoginComplete(nResult : Integer);
begin
Report('Login response ' + IntToStr(nResult));
if nResult = 1 then
begin
if assigned(m_pfnLoginRetry) then
begin
Report('Found retry fn');
m_pfnLoginRetry(); <<<< Causes access violation !!!
m_pfnLoginRetry := nil;
Report('Called retry fn');
end
else
begin
Report('No retry fn');
end;
end
else
begin
Report('Sorry, the account details are not recognised. Please try again.');
end;
end;This web page was last updated on Wednesday, April 8, 2026 at 04:38 AM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

