Click here to Skip to main content
15,888,610 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to run the function 10 second later ? Pin
Tirthadip21-Mar-07 22:52
Tirthadip21-Mar-07 22:52 
GeneralRe: how to run the function 10 second later ? Pin
TwoFaced22-Mar-07 7:54
TwoFaced22-Mar-07 7:54 
Questionupdate controls Pin
Member 393593721-Mar-07 21:03
Member 393593721-Mar-07 21:03 
AnswerRe: update controls Pin
Dave Kreskowiak22-Mar-07 5:39
mveDave Kreskowiak22-Mar-07 5:39 
QuestionConvert pixel to point Pin
ayeleteric21-Mar-07 21:01
ayeleteric21-Mar-07 21:01 
AnswerRe: Convert pixel to point Pin
Christian Graus22-Mar-07 4:56
protectorChristian Graus22-Mar-07 4:56 
Question(vb.net)textbox accepting only numeric data using keypress event and keydown event Pin
venkata lakshmi prasanna21-Mar-07 20:38
venkata lakshmi prasanna21-Mar-07 20:38 
AnswerRe: (vb.net)textbox accepting only numeric data using keypress event and keydown event [modified] Pin
Tirthadip21-Mar-07 22:06
Tirthadip21-Mar-07 22:06 
call a function say checkForNumericInput(e) in textbox's keypress or keydown event with the event argument parameter e.......the code is as follows.....

Private Function checkForNumericInput(ByVal e As System.Windows.Forms.KeyPressEventArgs)<br />
If Not (Char.IsDigit(e.KeyChar) Or Char.IsControl(e.KeyChar) Or e.KeyChar = ".") Then<br />
   e.Handled = True<br />
MsgBox("PLEASE INPUT NUMBERS ONLY", MsgBoxStyle.Critical, "NO CHARACTERS!!!")<br />
End If<br />
End Function

hope it will be helpful....


-- modified at 4:22 Thursday 22nd March, 2007


-- modified at 4:23 Thursday 22nd March, 2007

Tirtha

"A man can ride on your back only when it is bent....."

Questionconnect database to .net Pin
shriku2421-Mar-07 19:56
shriku2421-Mar-07 19:56 
AnswerRe: connect database to .net Pin
Krish - KP21-Mar-07 22:06
Krish - KP21-Mar-07 22:06 
QuestionOpen PDF from CD in VB.NET Pin
ayeleteric21-Mar-07 19:39
ayeleteric21-Mar-07 19:39 
AnswerRe: Open PDF from CD in VB.NET Pin
Guffa21-Mar-07 21:48
Guffa21-Mar-07 21:48 
AnswerRe: Open PDF from CD in VB.NET Pin
Vasudevan Deepak Kumar22-Mar-07 19:02
Vasudevan Deepak Kumar22-Mar-07 19:02 
Questionclosing window Pin
mkiranm21-Mar-07 19:19
mkiranm21-Mar-07 19:19 
AnswerRe: closing window Pin
coolestCoder21-Mar-07 19:33
coolestCoder21-Mar-07 19:33 
GeneralRe: closing window Pin
mkiranm21-Mar-07 20:32
mkiranm21-Mar-07 20:32 
GeneralRe: closing window Pin
Christian Graus22-Mar-07 4:58
protectorChristian Graus22-Mar-07 4:58 
QuestionUsing Oledb and Dlls in vb.net 2005 Pin
Member 17080821-Mar-07 18:36
Member 17080821-Mar-07 18:36 
AnswerRe: Using Oledb and Dlls in vb.net 2005 Pin
Dave Kreskowiak22-Mar-07 5:33
mveDave Kreskowiak22-Mar-07 5:33 
Questiondebugging ControlLibrary (dll) called from ASPX page Pin
iluha21-Mar-07 16:51
iluha21-Mar-07 16:51 
AnswerRe: debugging ControlLibrary (dll) called from ASPX page Pin
Dave Kreskowiak22-Mar-07 5:31
mveDave Kreskowiak22-Mar-07 5:31 
Questionwebclient.uploadstring Pin
cstrader23221-Mar-07 13:57
cstrader23221-Mar-07 13:57 
AnswerRe: webclient.uploadstring Pin
Dave Kreskowiak22-Mar-07 5:28
mveDave Kreskowiak22-Mar-07 5:28 
GeneralRe: webclient.uploadstring Pin
cstrader23222-Mar-07 9:36
cstrader23222-Mar-07 9:36 
GeneralRe: webclient.uploadstring Pin
Dave Kreskowiak22-Mar-07 15:43
mveDave Kreskowiak22-Mar-07 15:43 

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.