Hello, may be this mailing list not the best place for this question, but anyway:
I'm trying to make a small browser-like programm based on AxWindow and need to fill html forms (e.g. login name and password) without using keyboard or clipboard (to avoid keylogging). Say user clicks one button and all forms will be filled with values from config file or he types his name and password on Win32::GUI-Keyboard composed with Win32-Gui-Buttons. I have written javascript (code below) code to do it, but there is a problem with inserting my code in html on the fly ( but possible with local proxy for example ). I can build POST request when I submit data to server, but I need that user can see his name and pass in properly fields and this programm work like a ordinary browser (click-click). Is there a way to do this without proxy? May be something like "document.write" or some OLE method?? I need no proxy/javascript but better Win32::GUI or AxWindow method. BTW: Good keyloggers detect API's SendKey, Clipboard content, OnScreen Clipboard (osk.exe), thanks! javascript code: <script type="text/javascript" language="JavaScript"> <!-- function addChar(input, character) { if(input.value == null || input.value == "0") input.value = character else input.value += character } //--> </script> <form name=form1> <input type=text name=text1> <input type="button" value="a" onclick="addChar(document.form1.text1, 'a')"> <input type="button" value="b" onclick="addChar(document.form1.text1, 'b')"> </form> -- Best regards, Pavel mailto:[EMAIL PROTECTED]