blah blah blah is here! blah blah » Close

0
votes
0 answers

C# window resize

Hi. I am beginner in C#, for creating projects I use Microsoft Visual Studio C# 2010 Express and in whole interent I haven't find working answer to my question: how can I change window size as an action after mouse click on some button? To ...

0
votes
0 answers

Is there a way to detect a mouse click in a Word document?

Hi I'm woundering if there is a way to detect a mouse click in a Word document that I have opened in my Form. I have googled a lot but I haven't found anything that have helped me or I didn't understand. Many thanks for help and code ...

0
votes
3 answers

TextBox updates

AK01
15

Hi! i don't know if that's a feature... but the thing is that as I click rows in a ListView the corresponding updates of TextBoxes go a bit slow. Here is that I mean: 1. I have a Listbox with 2 columns 2. I have 2 Textboxes which filled ...

0
votes
1 answers

Alt + Click label

AK01
15

Hi! Is there a way to track that down? I ran across some code which deals with importing function from user library: [DllImport("User32.dll")]private static extern short GetAsyncKeyState(Keys vKey); and the use of it loo ...

0
votes
3 answers

Which one come first when 2 even happen?

Dear all, I want to make a button click event which write and read through the serial port. In the other side, I also have a timer tick event which also write and read through the same port. My question is, if the button click and tim ...

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