Re: How to get cursor coordinates from multiline text box and display listbox their
Hi,
Thanks for replay
The following code
void hlb_MouseEnter(object sender, MouseEventArgs e)
{
Point position = e.GetPosition(null);
string a =position.X.toString();
string b =position.Y.toString();
}
Gives me the mouse cursor position,
But I need the cursor position that blinks in text box
so please give me right suggestion
Thanks