Click here to Skip to main content
15,915,163 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Upgrade to Visual Studio 2003? Pin
Michael P Butler26-Dec-02 7:43
Michael P Butler26-Dec-02 7:43 
GeneralCould anybody help me in visual basic Pin
suresh_sathya25-Dec-02 23:27
suresh_sathya25-Dec-02 23:27 
QuestionHow can I bind data to Groupbox of radiobuttons Pin
intibnin24-Dec-02 22:57
intibnin24-Dec-02 22:57 
AnswerRe: How can I bind data to Groupbox of radiobuttons Pin
Tatham26-Dec-02 6:31
Tatham26-Dec-02 6:31 
GeneralRe: How can I bind data to Groupbox of radiobuttons Pin
intibnin26-Dec-02 20:45
intibnin26-Dec-02 20:45 
GeneralRe: How can I bind data to Groupbox of radiobuttons Pin
Tatham26-Dec-02 20:55
Tatham26-Dec-02 20:55 
QuestionHow Can i detect return key in datagridTextBoxColumn Pin
intibnin24-Dec-02 22:49
intibnin24-Dec-02 22:49 
AnswerRe: How Can i detect return key in datagridTextBoxColumn Pin
Tatham26-Dec-02 6:44
Tatham26-Dec-02 6:44 
The return key is captured to end edits. If you begin editing a DataGridTextBoxColumn and then press enter the edit will end.

If you want to override this you'll have to be really careful or edits or use the column as read-only.

The easiest (maybe only) way to do this would be to creat your own wrapper which inherits the DataGridTextBoxColumn class. Eg:

Public Class DataGridTextBoxSelectorColumn<br />
    Inherits DataGridTextBoxColumn<br />
<br />
    Public ...<br />
End Class


From here you should be able to override the key events. Be careful that if your not going to actually do anything on the event that you call the equivalent MyBase.whatever event.


Tatham Oddie (VB.NET/C#/ASP.NET/VB6/ASP/JavaScript)
tatham@e-oddie.com
+61 414 275 989
GeneralRe: How Can i detect return key in datagridTextBoxColumn Pin
intibnin30-Dec-02 4:55
intibnin30-Dec-02 4:55 
GeneralRe: How Can i detect return key in datagridTextBoxColumn Pin
Tatham30-Dec-02 5:03
Tatham30-Dec-02 5:03 
Generaltoolbar_button click Pin
Anonymous24-Dec-02 10:30
Anonymous24-Dec-02 10:30 
GeneralRe: toolbar_button click Pin
Nick Seng25-Dec-02 15:48
Nick Seng25-Dec-02 15:48 
GeneralLabelArray and MenuItemArray Pin
Ilan Ehrenfeld23-Dec-02 23:34
Ilan Ehrenfeld23-Dec-02 23:34 
GeneralRe: LabelArray and MenuItemArray Pin
Nick Seng25-Dec-02 15:40
Nick Seng25-Dec-02 15:40 
GeneralLaunching executable file Pin
Desmond23-Dec-02 7:42
Desmond23-Dec-02 7:42 
GeneralRe: Launching executable file Pin
Ray Cassick23-Dec-02 9:29
Ray Cassick23-Dec-02 9:29 
QuestionHow to pass a ADO object as a parameter to a function? Pin
Anonymous22-Dec-02 17:25
Anonymous22-Dec-02 17:25 
AnswerRe: How to pass a ADO object as a parameter to a function? Pin
Nick Seng22-Dec-02 17:57
Nick Seng22-Dec-02 17:57 
GeneralRe: How to pass a ADO object as a parameter to a function? Pin
Anonymous22-Dec-02 18:40
Anonymous22-Dec-02 18:40 
GeneralRe: How to pass a ADO object as a parameter to a function? Pin
Nick Seng22-Dec-02 20:01
Nick Seng22-Dec-02 20:01 
GeneralRe: How to pass a ADO object as a parameter to a function? Pin
Anonymous22-Dec-02 20:41
Anonymous22-Dec-02 20:41 
GeneralRe: How to pass a ADO object as a parameter to a function? Pin
Ray Cassick23-Dec-02 7:02
Ray Cassick23-Dec-02 7:02 
GeneralRe: How to pass a ADO object as a parameter to a function? Pin
Nick Seng25-Dec-02 14:48
Nick Seng25-Dec-02 14:48 
GeneralRe: How to pass a ADO object as a parameter to a function? Pin
Jason McBurney10-Jan-03 13:30
Jason McBurney10-Jan-03 13:30 
GeneralVB and pointer to function Pin
Asad raza20-Dec-02 21:37
Asad raza20-Dec-02 21:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.