is it possible to use "SendKeys" in rPE custom filters??
so that when i recieved a packet it will press/send a specified KEY...
for example
when i recieved the packet "00522F" it will send/press "F1" ..
sample packet: (just an example)
setlength(SendRecvList[0].RecvHex,1);
SendRecvList[0].RecvHex[0] := '00522F';
SendRecvList[0].SendKeys('F1');
SendRecvList[0].count := 1;
or
CurHex := GetBufferAsHex(buf, len);
if (pos('00522F',CurHex) <> 0) then
begin
SendKeys('F1');
end;
OTHER SendKeys written in delphi:

thanks in advance..






