Click here to Skip to main content
16,005,162 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHelp???????????????????????? Pin
alek hunter12-Jan-07 5:52
alek hunter12-Jan-07 5:52 
AnswerRe: Help???????????????????????? Pin
Dave Kreskowiak12-Jan-07 6:09
mveDave Kreskowiak12-Jan-07 6:09 
GeneralRe: Help???????????????????????? Pin
Colin Angus Mackay13-Jan-07 9:32
Colin Angus Mackay13-Jan-07 9:32 
Questioncheckbox.checkstate casting Pin
cstrader23212-Jan-07 5:14
cstrader23212-Jan-07 5:14 
AnswerRe: checkbox.checkstate casting Pin
nlarson1112-Jan-07 5:20
nlarson1112-Jan-07 5:20 
GeneralRe: checkbox.checkstate casting Pin
cstrader23212-Jan-07 6:59
cstrader23212-Jan-07 6:59 
QuestionEasy, simple way to make a textbox only accept numeric, or alpha chars????? Pin
Joey Picerno12-Jan-07 4:49
Joey Picerno12-Jan-07 4:49 
AnswerRe: Easy, simple way to make a textbox only accept numeric, or alpha chars????? Pin
nlarson1112-Jan-07 5:02
nlarson1112-Jan-07 5:02 
pass the 'e' argument of the keypress event of the textbox into either routine:

Public Sub KeyPress_Numeric_Only(ByVal e As System.Windows.Forms.KeyPressEventArgs)
Select Case Asc(e.KeyChar)
Case Keys.Back, Keys.D0 To Keys.D9
'continue
Case Else
e.Handled = True
End Select
End Sub

Public Sub KeyPress_Alpha_Only(ByVal e As System.Windows.Forms.KeyPressEventArgs)
Select Case Asc(UCase(e.KeyChar))
Case Keys.Back, Keys.A To Keys.Z
'continue
Case Else
e.Handled = True
End Select
End Sub

GeneralRe: Easy, simple way to make a textbox only accept numeric, or alpha chars????? Pin
Joey Picerno12-Jan-07 5:12
Joey Picerno12-Jan-07 5:12 
GeneralRe: Easy, simple way to make a textbox only accept numeric, or alpha chars????? Pin
nlarson1112-Jan-07 5:14
nlarson1112-Jan-07 5:14 
QuestionCrystal Report with VB.Net Pin
Central_IT12-Jan-07 4:08
Central_IT12-Jan-07 4:08 
QuestionVB 6 Pin
J.Paul Ghetty12-Jan-07 3:58
J.Paul Ghetty12-Jan-07 3:58 
AnswerRe: VB 6 Pin
MatrixCoder12-Jan-07 5:28
MatrixCoder12-Jan-07 5:28 
AnswerRe: VB 6 Pin
Dave Kreskowiak12-Jan-07 5:42
mveDave Kreskowiak12-Jan-07 5:42 
GeneralRe: VB 6 Pin
MatrixCoder12-Jan-07 6:06
MatrixCoder12-Jan-07 6:06 
GeneralRe: VB 6 Pin
Dave Kreskowiak12-Jan-07 6:22
mveDave Kreskowiak12-Jan-07 6:22 
AnswerRe: VB 6 Pin
Christian Graus12-Jan-07 11:03
protectorChristian Graus12-Jan-07 11:03 
QuestionBindingsource Collection Pin
MatthysDT12-Jan-07 3:39
MatthysDT12-Jan-07 3:39 
AnswerRe: Bindingsource Collection Pin
Dave Kreskowiak12-Jan-07 5:36
mveDave Kreskowiak12-Jan-07 5:36 
GeneralRe: Bindingsource Collection Pin
MatthysDT14-Jan-07 21:07
MatthysDT14-Jan-07 21:07 
GeneralRe: Bindingsource Collection Pin
Dave Kreskowiak15-Jan-07 5:21
mveDave Kreskowiak15-Jan-07 5:21 
QuestionWhat happened to the component class in 2.0?? Pin
Marcus J. Smith12-Jan-07 2:56
professionalMarcus J. Smith12-Jan-07 2:56 
AnswerRe: What happened to the component class in 2.0?? Pin
Dave Kreskowiak12-Jan-07 5:40
mveDave Kreskowiak12-Jan-07 5:40 
GeneralRe: What happened to the component class in 2.0?? Pin
Marcus J. Smith12-Jan-07 6:00
professionalMarcus J. Smith12-Jan-07 6:00 
GeneralRe: What happened to the component class in 2.0?? Pin
Dave Kreskowiak12-Jan-07 6:16
mveDave Kreskowiak12-Jan-07 6:16 

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.