what i need for hide the caret?
Code:
bool GetCaretVisible()
	{
		return blCaretVisible;
	}
void SetCaretVisible(bool Visible)	
{
		if (Visible==true)
		{
			ShowCaret(hwnd());
		}
		else
		{
			HideCaret( hwnd());
		}
	}
	__declspec ( property ( put = SetCaretVisible, get = GetCaretVisible ) ) bool CaretVisible ;
the caret isn't hided, i test the GetLastError() and gives me 0(zero). so what i need for hide the caret?
(more 1 property for my class)