Click here to Skip to main content
16,006,707 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Generalrefresh question Pin
Member 14866901-Nov-04 13:58
Member 14866901-Nov-04 13:58 
GeneralRe: refresh question Pin
MohammadAmiry1-Nov-04 17:49
MohammadAmiry1-Nov-04 17:49 
GeneralPocket PC Dlls Pin
seanwright1-Nov-04 4:00
seanwright1-Nov-04 4:00 
GeneralRe: Pocket PC Dlls Pin
Dave Kreskowiak1-Nov-04 6:03
mveDave Kreskowiak1-Nov-04 6:03 
GeneralTrying to get the enter key to not make noise Pin
tuningd1-Nov-04 3:42
tuningd1-Nov-04 3:42 
GeneralRe: Trying to get the enter key to not make noise Pin
Dave Kreskowiak1-Nov-04 6:02
mveDave Kreskowiak1-Nov-04 6:02 
GeneralRe: Trying to get the enter key to not make noise Pin
tuningd1-Nov-04 8:20
tuningd1-Nov-04 8:20 
GeneralRe: Trying to get the enter key to not make noise Pin
MohammadAmiry1-Nov-04 17:54
MohammadAmiry1-Nov-04 17:54 
Try using the following code instead, it should work!
(I haven't checked if it works or not.)
<code>Private Sub controls_KeyDown(ByVal Sender as object, _
BayVal e as Systes.Windows.Forms.KeyEventArgs) Handles combobox.KeyDown, textbox.KeyDown
If e.keyCode = Keys.Enter Then
e.Handled = True
Me.SelectNextControl(Ctpe(Sender, Control), True, True, True, False)
End If
End Sub
</code>

GeneralRe: Trying to get the enter key to not make noise Pin
tuningd2-Nov-04 2:17
tuningd2-Nov-04 2:17 
GeneralVB - SQL HELP Pin
moon9931-Oct-04 23:51
moon9931-Oct-04 23:51 
GeneralRe: VB - SQL HELP Pin
Mekong River1-Nov-04 13:48
Mekong River1-Nov-04 13:48 
GeneralRe: VB - SQL HELP Pin
moon997-Nov-04 4:08
moon997-Nov-04 4:08 
GeneralUPDATE and DELETE in VB.NET Pin
lis858631-Oct-04 23:04
lis858631-Oct-04 23:04 
GeneralRe: UPDATE and DELETE in VB.NET Pin
MohammadAmiry1-Nov-04 18:36
MohammadAmiry1-Nov-04 18:36 
GeneralRe: UPDATE and DELETE in VB.NET Pin
lis85861-Nov-04 19:46
lis85861-Nov-04 19:46 
Generalicons in win32 Pin
huutri7931-Oct-04 22:57
huutri7931-Oct-04 22:57 
GeneralRe: icons in win32 Pin
Chris Quick2-Nov-04 7:33
Chris Quick2-Nov-04 7:33 
GeneralStart Excel on remote PC Pin
TooStupidForTech31-Oct-04 22:42
sussTooStupidForTech31-Oct-04 22:42 
GeneralRe: Start Excel on remote PC Pin
Dave Kreskowiak1-Nov-04 0:50
mveDave Kreskowiak1-Nov-04 0:50 
GeneralColoum headers in listview Pin
Member 125367931-Oct-04 20:26
Member 125367931-Oct-04 20:26 
GeneralRe: Coloum headers in listview Pin
Dave Kreskowiak1-Nov-04 5:57
mveDave Kreskowiak1-Nov-04 5:57 
GeneralRe: Coloum headers in listview Pin
Member 12536792-Nov-04 19:01
Member 12536792-Nov-04 19:01 
GeneralUpdating Rows in Dataset Pin
nitin_ion31-Oct-04 18:26
nitin_ion31-Oct-04 18:26 
QuestionHow do i compare strings from different files? Pin
dex_ter1131-Oct-04 16:02
dex_ter1131-Oct-04 16:02 
AnswerRe: How do i compare strings from different files? Pin
Dave Kreskowiak1-Nov-04 3:12
mveDave Kreskowiak1-Nov-04 3:12 

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.