Textbox Event
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, To All In textbox mouseclick cursor should not be displayed, I made that textbox readonly property true. could you plese help me Thank You to one and all. Thanks & Regards, Nath
This may help you
[DllImport("user32")] private static extern bool HideCaret(IntPtr hWnd);
public void HideCaret()
{
HideCaret(TextBox1.Handle);}