blah blah blah is here! blah blah » Close

0
votes
0 answers

C# WebBrowser Wait for Load

Hi, I have a simple windows form application and I want to fill two fields on a webpage once it loads. Here is the code I am using but it gets frozen without any errors: [code]private void button9_Click(object sender, EventArgs e) ...

0
votes
0 answers

Auto-fill form with C#

This question might have been asked before but every situation is different and it is a bit difficult to adapt one solution to another for a beginner like myself. My question is the simplest form of auto-fill. So, I have a Windows Form A ...

0
votes
1 answers

C# - Copy Cell Content on Right Click in DataGridView

Hi, I have a simple Windows forms application with a datagridview. I want to copy cell content on right click. I had made this once but cannot do it again, I don't know what I am doing wrong this time although the code looks exactly the ...

0
votes
1 answers

C# - Can We Have a Text Editor Box on a Windows Form?

Hi, So, we have a textfield and a richtextbox. Can we have a text editor box on a Windows form with some basic buttons like Bold, Italic, Hyperlink and so on? The only thing I want to have is that the editable textbox will have text that ...

1
votes
1 answers

C#: Select next item in ListBox with the click of a button.

Hi, I lost the sample code for this. I have a "listbox" and a "button" on a web forms application. I want the next item in the "listbox" to be selected when I click the "button". How to do this?

1
votes
2 answers

C#: A Simple Issue in CellClick Event of DataGridView

Hi, I am working on a simple windows forms application and I use the following code to copy the text when a cell is clicked on the datagridview. [code]if (e.RowIndex >= 0 && dataGridView1.Rows[e.RowIndex].Cells[e.ColumnInde ...

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 ...

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# Paste from clipboard to text field in webbrowser control

Ok, another quick question here: I searched for a click event for webbrowser but I guess there is not. I want to paste the text, copied to clipboard previously, into a text field on the webpage within webbrowser control. I know I can ...

0
votes
1 answers

C#: Copy Selected Cell in DataGridView

Hi, I need to copy the selected cell as text in datagridview, I used the following code and it works just fine. [code]private void main_ListDataGridView_CellClick(object sender, DataGridViewCellEventArgs e) { Cli ...

0
votes
0 answers

C#: Update Access Database using DataGridView

Hi, I have a datagridview and I need it to be editable such that when the user edits its cells, it will update the database it is binded to. I have been searching about this for hours but couldn't find the answer. Below is a video that s ...

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 ...

1
votes
1 answers

C# Update ListBox2 When ListBox1 items are selected.

Hi, I have two listboxes on my form and I want to update listbox2 whenever an iem in listbox1 is clicked. For example, Listbox1 will have category names like countries; USA, Canada, UK, France and so on. And Listbox 2 will have city n ...

1
votes
4 answers

C# - Auto login form

Hi, I am working on a simple application with a listbox and webbrowser control. I have two textboxes for username and password, and I have a button. I have some URLs in the listbox that have login forms. I need to get the username and pa ...

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 ...

Feedback