Datagridtextboxcolumn not firing the enter key event

G

Guest

"PLEASE HELP, I NEED HELP N O W !!!"

AddHandler dgtxtboxcolumn.textbox.KeyDown, AddressOf TextBoxKeyPress

Private Sub TextBoxKeyPress(ByVal sender as Object, ByVal e as
KeyEventArgs)

End Sub

Not Firing the Enter Key event except Other Keys.
 
B

Bart Mermuys

Hi,

"Datagridtextboxcolumn not firing event" <Datagridtextboxcolumn not firing
(e-mail address removed)> wrote in message
"PLEASE HELP, I NEED HELP N O W !!!"

You could try ( untested ) :

dgtxtboxcolumn.textbox.AcceptsReturn = True
AddHandler dgtxtboxcolumn.textbox.KeyDown, AddressOf TextBoxKeyPress

HTH,
Greetings
 
G

Guest

Datagridtextboxcolumn not firing event said:
"PLEASE HELP, I NEED HELP N O W !!!"

AddHandler dgtxtboxcolumn.textbox.KeyDown, AddressOf TextBoxKeyPress

Private Sub TextBoxKeyPress(ByVal sender as Object, ByVal e as
KeyEventArgs)

End Sub

Not Firing the Enter Key event except Other Keys.
 
G

Guest

Bart Mermuys said:
Hi,

"Datagridtextboxcolumn not firing event" <Datagridtextboxcolumn not firing
(e-mail address removed)> wrote in message


You could try ( untested ) :

dgtxtboxcolumn.textbox.AcceptsReturn = True
AddHandler dgtxtboxcolumn.textbox.KeyDown, AddressOf TextBoxKeyPress

HTH,
Greetings
 

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