Click here to Skip to main content
15,891,529 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionchanging color of CheckBox Pin
ArchaBhandare11-Mar-07 20:08
ArchaBhandare11-Mar-07 20:08 
AnswerRe: changing color of CheckBox Pin
TwoFaced11-Mar-07 22:31
TwoFaced11-Mar-07 22:31 
Question(VB.NET)how to display a selected row data of datagrid in textboxes [modified] Pin
venkata lakshmi prasanna11-Mar-07 19:53
venkata lakshmi prasanna11-Mar-07 19:53 
AnswerRe: how to display a selected row data of datagrid in textboxes Pin
Priya_200711-Mar-07 23:52
Priya_200711-Mar-07 23:52 
QuestionPopup Reminder On System Login Pin
Tirthadip11-Mar-07 19:44
Tirthadip11-Mar-07 19:44 
Questiontextbox....... Pin
manni_n11-Mar-07 14:33
manni_n11-Mar-07 14:33 
AnswerRe: textbox....... Pin
TwoFaced11-Mar-07 14:43
TwoFaced11-Mar-07 14:43 
AnswerRe: textbox....... Pin
Mogtabam11-Mar-07 20:29
Mogtabam11-Mar-07 20:29 
Hi You Can Use This Code.
(Text1 is your TextBox)

Private Sub Text1_Change()
If Val(Text1.Text) > 45 Then Text1.Text = 45: MsgBox "Please Enter A Number Between 0 to 45", vbCritical
End Sub

Private Sub Text1_KeyPress(KeyAscii As Integer)
Select Case KeyAscii
Case 48 To 57: '0 To 9
Case 8: 'Back Space
Case 13: 'Enter
Case Else: 'Other Keys
KeyAscii = 0
End Select
End Sub

Good Luck

Mogtabam
GeneralRe: textbox....... Pin
manni_n11-Mar-07 23:42
manni_n11-Mar-07 23:42 
QuestionTotal rows in DataSet Pin
penguin500011-Mar-07 12:07
penguin500011-Mar-07 12:07 
AnswerRe: Total rows in DataSet Pin
M-Hall11-Mar-07 16:14
M-Hall11-Mar-07 16:14 
AnswerRe: Total rows in DataSet Pin
Daytona_67511-Mar-07 17:00
Daytona_67511-Mar-07 17:00 
GeneralRe: Total rows in DataSet Pin
penguin500011-Mar-07 20:30
penguin500011-Mar-07 20:30 
QuestionHow can I add IMAPI 2.0 to my project in vb.net? Pin
JUNEYT11-Mar-07 11:52
JUNEYT11-Mar-07 11:52 
AnswerRe: How can I add IMAPI 2.0 to my project in vb.net? Pin
M-Hall11-Mar-07 16:00
M-Hall11-Mar-07 16:00 
GeneralRe: How can I add IMAPI 2.0 to my project in vb.net? Pin
JUNEYT11-Mar-07 15:18
JUNEYT11-Mar-07 15:18 
GeneralRe: How can I add IMAPI 2.0 to my project in vb.net? [modified] Pin
M-Hall11-Mar-07 16:47
M-Hall11-Mar-07 16:47 
QuestionInsert tab pages dinamically to a tab control Pin
Narenge11-Mar-07 11:26
Narenge11-Mar-07 11:26 
AnswerRe: Insert tab pages dinamically to a tab control Pin
JUNEYT11-Mar-07 12:58
JUNEYT11-Mar-07 12:58 
GeneralRe: Insert tab pages dinamically to a tab control Pin
Narenge11-Mar-07 13:36
Narenge11-Mar-07 13:36 
GeneralRe: Insert tab pages dinamically to a tab control Pin
JUNEYT11-Mar-07 15:54
JUNEYT11-Mar-07 15:54 
GeneralRe: Insert tab pages dinamically to a tab control Pin
TwoFaced11-Mar-07 17:04
TwoFaced11-Mar-07 17:04 
GeneralRe: Insert tab pages dinamically to a tab control Pin
JUNEYT12-Mar-07 0:21
JUNEYT12-Mar-07 0:21 
GeneralRe: Insert tab pages dinamically to a tab control Pin
Narenge11-Mar-07 22:50
Narenge11-Mar-07 22:50 
AnswerRe: Draw graphs in .Net enviroment Pin
Christian Graus11-Mar-07 11:46
protectorChristian Graus11-Mar-07 11:46 

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.