Thank you for your replies.
Clicked event should definitely be part of the controls' event. Hope it will be fixed in coming version.
Since there is a GetFocus, there should also be a LoseFocus event (this does not seem to be a documentation error).
As for Navigate return code, maybe this is a documentation error, but ZhaoKai replied that 404 is not a URL failure.
I used the following to get the 404 error (maybe this should be added to the documentation)
>>>>
lo_httpclient = Create HttpClient
li_rc = lo_httpclient.SendRequest('HEAD', ls_url)
if li_rc = 1 then
li_response = lo_httpclient.GetResponseStatusCode()
choose case li_response
case 200
// ok
case 404
return
case else
return
end choose
end if
destroy lo_httpclient
>>>
Regards,
Mickey
Thanks for your valuable suggestion. I'll record it as a new requirement/enhancement request and transfer it to our product team for consideration.
Regards,
ZhaoKai