blah blah blah is here! blah blah » Close

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

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