> In a AsyncKeyDown event of an TIWEdit. Can I catch what key the user
> pressed?
Use the EventParams parameter and the 'which' param
{code}
procedure TIWForm1.IWEdit1AsyncKeyPress(Sender: TObject; EventParams: TStringList);
var
lKey: char;
begin
lKey := Chr(StrToInt(EventParams.Values['which']));
WebApplication.ShowMessage(lKey);
end;
{code}