It is possible to hide the datagrid's edit cursor (or caret is it called in WinAPI)???
Thanks
Printable View
It is possible to hide the datagrid's edit cursor (or caret is it called in WinAPI)???
Thanks
Yes , using HideCaret function in API .
This is the declare for HideCaret . You need to pass the handle of the datagrid's edit box or whatever and put this code in GotFocus event .
VB Code:
Declare Function HideCaret Lib "user32" (ByVal hwnd As Long) As Long
Thanks alot!
Do you know how to get the handle of the editbox of the datagrid?