Hello. I have a function on double click which opens new form. The problem is if I double click arrow on grid's scroll bar, or if I double click scroll bar, it activate that function. I want this form to open just on double click empty area. Is there any solution for this ?
Are you trying to open a new form when the user double clicks a cell or row? If so, you could use the DoubleClickCell event of the UltraGrid to process the request. Using the DoubleClick event of the control would mean that anywhere you double click on the UltraGrid will fire that event.
I also have function for DoubleClickRow, but I wanted to make funcionality like MS Outlok has, when user click on empty space in table, opens a new contact form. But if it fires event if I click anywhere on grid, I'll just delete this function, and use context menu on right click to add new contact. Thanks on your answer...