create eventhandler

E

Eric

Hi,

I have a windows applicaiton with a datagridview on a form.
In my code I can call the ClearSelection method of the datagridview to
remove the selection.

How can I create an event that is fired whenever this method is done so I
can do additional actions?

rg,
Eric
 
C

Cor Ligthert[MVP]

There is no event you have to trust that it is done, like there is no event
which fires when you have done this.

dim a = 1+1

Be aware that this one above like yours go so fast, that you won't see it.

The painting on screen can take some more time.
 
O

Onur Güzel

Hi,

I have a windows applicaiton with a datagridview on a form.
In my code I can call the ClearSelection method of the datagridview to
remove the selection.

How can I create an event that is fired whenever this method is done so I
can do additional actions?

rg,
Eric

Hi Eric,

Try to handle built-in SelectionChanged event of DatagridView class.

http://msdn.microsoft.com/en-us/lib....datagridview.selectionchanged(v=VS.100).aspx

Untested, it may fire when you call ClearSelection.It's worth to try.

HTH,

Onur Güzel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top