blah blah blah is here! blah blah » Close

0
votes
0 answers

C#(VS 2010): Webbrowser; select radio button

Hi, I'am making an autofill-program, and have some issues with selecting radiobuttons. Normally I just use getelementsbyid, setattribute and invokemember, but I don't see how I can select a radiobutton without id. Maybe I need to edi ...

0
votes
0 answers

C# webBrowser page extent

I'm using a webBrowser control. After it is finished loading, I want to be able to determine what portion of the browser actually contains controls. For example, let's say the web page has a <CENTER> tag that centers the entire page w ...

0
votes
0 answers

Newbie can't follow link in webbrowser to fillout a form

Hi, I am new to C# and have a form with 2 buttons. One clicks on a link in a page which takes the webbrowser to a link that has a form. The second button fills out the form and clicks submit. I would like to combine these buttons and no ...

0
votes
1 answers

System.IO.FileNotFoundException on WebBrowser with IFRAME

I get System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002)\r\n at System.Windows.Forms.UnsafeNativeMethods.IPersistStreamInit.Save(IStream pstm, Boolean fClearDirty)\r\n at Sys ...

0
votes
0 answers

WYSIWYG in WebBrowser control

q12
349

WYSIWYG (What You See Is What You Get). How to create a WYSIWYG in WebBrowser control from c#? I cracked my skull and glue back for 100 times now...but... i need some inspiration from you. This is a very hard task. BTW I know how to u ...

0
votes
1 answers

SHDocVw.ShellWindowsClass() not embedded

SHDocVw.WebBrowser wb =null; SHDocVw.ShellWindows sw = new SHDocVw.ShellWindowsClass(); gives error "SHDocVw.ShellWindowsClass cannot be embedded, use applicable interface instead" I am using visual c# 2010 express ,window ...

0
votes
1 answers

WebBrowser Control in WPF

I am using a webBrowser control in my WPF application. Sometimes back everything was working fine with it as long as i used to open PDF files to show but recently i found out that whenever i click the PDF file something like this* (an image ...

0
votes
1 answers

C#: How to disabele IE command line error message.

Hi, I am working on a simple application with a webbrowser control. When I go to some of the URLs, an error message pops up something like "Internet Explorer Command Line Error". I am not sure about the exact wording since I us ...

1
votes
1 answers

Using WebBrowser Control in C#

I have code such as this: string url = "http://en.wikipedia.org/wiki/Earth"; System.Windows.Forms.WebBrowser wb = new System.Windows.Forms.WebBrowser(); wb.Url = new Uri(url); but after that last line wb.Url is a ...

0
votes
1 answers

Switch-case for Datagridview cells

Hi, I am working on a form with datagridview and webbrowser controls. I have three columns as URL, username and password in datagridview. What I want to do is to automate the login for some websites that I use frequently. For that reason ...

0
votes
1 answers

C#: dataGridView and webBrowser

Hi, I have a dataGridView and a webBrowser on a form. I have an Access database associated with the dataGridview. I have a list of URLs in one column and I want webbrowser to go to the URL when I click the cell that contains the URL on t ...

0
votes
2 answers

zoom web page

hello, i want some code work with c#3.5

1
votes
1 answers

Navigate to Listview column items

Yesterday I asked about navigating to the selected listview items that are URLs. http://www.debugging.com/bug/23702 And http://www.debugging.com/vulpes gave me the answer, thanks. Now I need to go on this application and I need to nav ...

1
votes
1 answers

Navigating Webbrowser to Listview item C#

Hi, I am working on a small application which has a listview and webbrowser control. I have a list of URLs in the first column of the list view and I want the webbrowser to navigate to that URL once the item in the listview is clicked, i ...

Feedback