axWebBrowser has not DocumentText property. What can i do with Document property?
aleXXXka
Posts
-
How get html source code of WebPage? -
How to simulate clicking "Enter" in game's window? [modified]I am creating simple application for some mmorpg that doesn't support macross. This application uses shortkeys ALT+F1,2,3... I want to execute "/hello" emotion by clicking ALT+F1. For hotkey I use this application - http://www.codeproject.com/KB/miscctrl/systemhotkey.aspx (It works in background) I try to use this function: SendKeys.Send("{Enter}{Divide}" + "hello" + "{Enter}"); but game's window doesn't receive this {Enter}. How can I simulate clicking "Enter" in game's window?
modified on Sunday, February 22, 2009 1:51 PM
-
How get html source code of WebPage?What can i do with this property? Hw can i get source of page in browser?:(
-
How get html source code of WebPage?I am using axWebBrowser. How can i get html code of page that in browser now?
-
Microsoft Web Browser - no scroll bars and no right click?Microsoft Web Browser have not ScrollBarsEnabled property. I speak about browser that described here http://support.microsoft.com/kb/815714 It is another WebBrowser, not habitual web browser from ToolBar. It is located here - COM Components-Microsoft Web Browser.
-
Microsoft Web Browser - no scroll bars and no right click?Can you write me this javascript code please?
-
How to read Hebrew letters with StreamReaderOk :) Did it help you? Try to use ASCI code. In the past i created chat(server and client) that get stream(text) from tcp connection and show it in textbox. TcpClient newClient; NetworkStream ns; string message=" "; byte[] bytes = new byte[1024]; ns = newClient.GetStream(); bytesRead = ns.Read(bytes, 0, bytes.Length); message = Encoding.ASCII.GetString(bytes, 0, bytesRead);
-
Microsoft Web Browser - no scroll bars and no right click?In my form I use Microsoft Web Browser that support NewWindow2 event. In habitual WebBrowser object there are properties that do what i need but in Microsoft Web Browser i can not find this properties. 1)I need to disable scroll bars. 2)I need to disable menu of right click. 3)I need to disable option of 3 mouse button in browser. How do I do this in Microsoft Web Browser? p.s. I create programm that has small web browser (50x50 px) and i need that user only can do left click in the browser.
-
Web Browser.How to open new window in existent opened browser.No... I need that all new windows(include pop-ups) will open in existing web browser.
-
How to read Hebrew letters with StreamReadertinase leishtamesh be ASCI. yahol lehiot she ze yazor leha: TcpClient newClient; byte[] bytes = new byte[1024]; ns = newClient.GetStream(); bytesRead = ns.Read(bytes, 0, bytes.Length); message = Encoding.ASCII.GetString(bytes, 0, bytesRead);
-
Web Browser.How to open new window in existent opened browser.I need to create simple application wich is Web Browser that opens new windows in existent browser. For example I open website that have some link wich should open in new window. (a href="..." target="_new") When i click on this link, new page will open in the same window. Server mast see that i clicked on the link and over to link's site.