Board index » Visual Studio » Cursor no appare

Cursor no appare

Visual Studio28
Hello,

I don't know if you can help me; when my application is starting, I can see

the cursor, I try with the property "myTextBox.forcus" but nothing.



Thanks


-
 

Re:Cursor no appare

Fbouabcha,



textbox.focus is a method that set the focus on the testbox

textbox.focused is a method where you can see that.



http://msdn.microsoft.com/library/default.asp?url" rel="nofollow" target="_blank">msdn.microsoft.com/library/default.asp=/library/en-us/cpref/html/frlrfSystemWindowsFormsTextBoxMembersTopic.asp



I hope this helps,



Cor





-

Re:Cursor no appare

"fbouabcha" <fbouabcha@hotmail.com>schrieb:

Quote
I don't know if you can help me; when my application is starting, I can

see

the cursor, I try with the property "myTextBox.forcus" but nothing.



Are you talking about the mouse cursor or the caret of a textbox? Where are

you calling the textbox' 'Focus' method? Note that the control must be

visible and enabled in order to get the focus.



--

M S Herfried K. Wagner

M V P <URL:dotnet.mvps.org/>">dotnet.mvps.org/>

V B <URL:classicvb.org/petition/>">classicvb.org/petition/>



-