Hello, how can I query a double click in the grid filter (in VB) Thank you Ronald
Hello ronald,
What do you mean by 'query a double click'? Do you want to perform a double click in the WinGrid filterRow?
I will be waiting for your feedback.
Hello Boris,
thank you for your Post.
I am looking for a possibility to check whether the focus is on the filterRow.My problem is when I query:if Me.UltraGrid1.ActiveRow.Cells("Nr").Value.ToString = "0" then ........If then, the focus here is on the filterRow there is an error message
Thank you for your helpRonald
Hell Ronald,
I do not know what you are trying to achieve with that line of code, you could just do:
Me.UltraGrid1.ActiveRow.Cells("Nr").Value= "0"
You could check the filterRow's mode with:
ultraGrid1.Rows.FilterRow.Cells[0].IsInEditMode;
Please feel free to let me know if a question about our toolset comes up on your mind.
thank you! Exactly what I was looking for.
thank you very much
ronald