This is sample of my grid property:
ThisForm.Grid1.ColumnCount=6
ThisForm.Grid1.RecordSource='wla'
ThisForm.Grid1.Column1.Width=40
ThisForm.Grid1.Column1.Header1.Caption='My Field'
The problem is, I would like to take some code at DoubleClick event at column1, Can I do that except write it at Object DBLClick Procedure?
Maybe something like this:
Thisform.Grid1.Column1.DblClick=.....
or what?
Thank you in advance
ThisForm.Grid1.ColumnCount=6
ThisForm.Grid1.RecordSource='wla'
ThisForm.Grid1.Column1.Width=40
ThisForm.Grid1.Column1.Header1.Caption='My Field'
The problem is, I would like to take some code at DoubleClick event at column1, Can I do that except write it at Object DBLClick Procedure?
Maybe something like this:
Thisform.Grid1.Column1.DblClick=.....
or what?
Thank you in advance