blah blah blah is here! blah blah » Close

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

Feedback