Game Technologies
Smart Device
Windows Live
Visual C++
Visual J#
.NET Development
VS Express Editions
Windows Forms
Visual FoxPro
SQL Server
Visual C#
VS Team System
Microsoft ISV
Visual Basic
Windows Vista
Software Development Network>> Windows Forms>> Caret class?
Caret class?
Hot Topic
undo/redo
Passwords
Updating Properties Window at design-time
Can't apply a DataGridTableStyle to a Datagrid
OnValidating event not firing in DataGridView
Adding an IExtenderProvider to a custom base Form
Delphi Winform .net OWC spreadsheet export method
How do I get the MouseWheel on a usercontrol
DataGrid Big Red X error
How 2 prevent a form resize when double clicking its title bar ?
Windows Forms
Question about ClickOnce
Disable refresh of Control in EditMode upon ItemChanged
How do you refresh data bound to a DataGridView
Problem WithEvents using forms
Beta2 Deployment error
DataGridView IsCurrentRowDirty
Winforms cannot be resized on low resolution workstations
Help with classes
About new TABLEADAPTERS in VS2005 ***URGENT**
Getting started
Caret class?
Is there a class that can be used to display carets or do you have to use P/Invoke with
CreateCaret/DestroyCaret/ShowCaret/SetCaretPos Thanks.
Answer this question
Caret class?
Tippy
Unfortunately p/invoke. You can change the cursor position in the textbox by setting the selection, eg:
textBox1.Select(3, 0)
SkyHighRanks
Thanks for your reply. Then I've to use p/invoke.
Caret class?
Answer this question
Caret class?
Tippy
textBox1.Select(3, 0)
SkyHighRanks