how to change the cursor of the textbox?

P

Peter Duniho

Jassim said:
how can i change the cursor of the textbox to the block style?

The "cursor" of the textbox is actually an insertion point. I'm not
aware of any way to change it, and because it's an insertion point, it
would be a little odd to change it to something that couldn't fit in
between two characters in the textbox the way the original vertical line
does.

Pete
 
N

Nicholas Paldino [.NET/C# MVP]

I think that the OP might want something like is seen in VS.NET, or
Word, where you can have the cursor be an overlay point instead of an
insertion point.

In the VS.NET, and some other environments, this is represented as a
block.

The TextBox class doesn't support this, so the OP would need another
class, or try to subclass the textbox and offer the functionality on his
own.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top