blah blah blah is here! blah blah » Close

1
votes
1 answers

Datagridview cell content click

Guys, I'm trying to add an event to a datagridview cell content click for when a user clicks a cell row it changes a value on that row. Example my datagridview on colunm [2] has the word "start" i want the user to click the cel ...

0
votes
0 answers

[C#] {WebControl} Radiobutton click by information in sourcecode

Here is my problem: First i used this code: [code]this.wb2.Document.All["id"].InvokeMember("click");[/code] But that just click the first radiobutton with id as name Then i thought: (idea) why can't i pick after ...

2
votes
3 answers

C# to display different texts at different time, with a click of a button.

this may seem trivial, but I still have not figured out how to do it. private void button1_Click(object sender, EventArgs e) { textBox1.Text = "Waiting..."; System.Threading.Thread.Sleep(5000 ...

0
votes
1 answers

Ignore null on datagrid cell click event

In my code below i can click on two columns of a datagrid cells that contain buttons, it works great, how ever some of the row cells contain no data, how can i adapt the bellow to ignore nulls and do nothing if the cell button is clicked? ...

0
votes
1 answers

Datagrid column cell click event

Guys i may be way off the mark here, but is it possible to perform a different function buy clicking different datagridview cells? i have 2 columns in my datagridview that are buttons, i want to click column 1 cells and perform a function, ...

0
votes
1 answers

click button in code

hello, i want code like this [code] this.Button1.Click(); [/code]

1
votes
1 answers

how to close forms & click button in code

hello , i have tow questions : 1 - i want code to close all forms like [code] closeAllForms();[/code] 2 - i want code like this [code] this.Button1.Click(); [/code]

Feedback