Click here to Skip to main content
15,927,174 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to collect the same data? Pin
Christian Graus17-Mar-08 23:30
protectorChristian Graus17-Mar-08 23:30 
GeneralRe: How to collect the same data? Pin
Rajesh Anuhya18-Mar-08 20:15
professionalRajesh Anuhya18-Mar-08 20:15 
GeneralProblem in Crescent Combo box ( vb.net code migrated from vb6) [modified] Pin
Nitin198117-Mar-08 20:36
Nitin198117-Mar-08 20:36 
GeneralRe: Problem in Crescent Combo box ( vb.net code migrated from vb6) Pin
Vimalsoft(Pty) Ltd18-Mar-08 2:30
professionalVimalsoft(Pty) Ltd18-Mar-08 2:30 
GeneralRe: Problem in Crescent Combo box ( vb.net code migrated from vb6) Pin
Dave Kreskowiak18-Mar-08 3:55
mveDave Kreskowiak18-Mar-08 3:55 
QuestionCall to keypress event In vb.net 2005 Pin
kalikarr17-Mar-08 18:29
kalikarr17-Mar-08 18:29 
GeneralRe: Call to keypress event In vb.net 2005 Pin
Christian Graus17-Mar-08 18:54
protectorChristian Graus17-Mar-08 18:54 
AnswerRe: Call to keypress event In vb.net 2005 Pin
Rajesh Anuhya17-Mar-08 19:09
professionalRajesh Anuhya17-Mar-08 19:09 
hi...,

Very simple.

Your passing wrong arugument to keypresee method.

u have to pass the System.Windows.Forms.KeyPressEventArgs argument instad of System.EventArgs

use this below code and slove your problem.

Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim temp As System.Windows.Forms.KeyPressEventArgs
Call TextBox1_KeyPress(sender, temp)
End Sub

Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
MsgBox("Rajesh B --> A Poor Workman Blames His Tools <--")
End Sub

Thanks

Rajesh B --> A Poor Workman Blames His Tools <--

GeneralRe: Call to keypress event In vb.net 2005 Pin
Christian Graus17-Mar-08 19:29
protectorChristian Graus17-Mar-08 19:29 
GeneralRe: Call to keypress event In vb.net 2005 Pin
Rajesh Anuhya17-Mar-08 19:40
professionalRajesh Anuhya17-Mar-08 19:40 
GeneralRe: Call to keypress event In vb.net 2005 Pin
Christian Graus17-Mar-08 19:42
protectorChristian Graus17-Mar-08 19:42 
GeneralRe: Call to keypress event In vb.net 2005 Pin
Rajesh Anuhya17-Mar-08 19:57
professionalRajesh Anuhya17-Mar-08 19:57 
GeneralRe: Call to keypress event In vb.net 2005 Pin
Christian Graus17-Mar-08 21:22
protectorChristian Graus17-Mar-08 21:22 
Answernavigation in Code Pin
Tauseef A17-Mar-08 18:21
Tauseef A17-Mar-08 18:21 
AnswerRe: navigation in Code Pin
Mushtaque Nizamani17-Mar-08 23:43
Mushtaque Nizamani17-Mar-08 23:43 
GeneralAPI to get Application Status (running, stopped, etc) [modified] Pin
Mitch F.17-Mar-08 17:26
Mitch F.17-Mar-08 17:26 
GeneralRe: API to get Application Status (running, stopped, etc) Pin
Scott Dorman17-Mar-08 17:52
professionalScott Dorman17-Mar-08 17:52 
GeneralRe: API to get Application Status (running, stopped, etc) Pin
Mitch F.17-Mar-08 18:08
Mitch F.17-Mar-08 18:08 
GeneralRe: API to get Application Status (running, stopped, etc) Pin
Scott Dorman17-Mar-08 18:13
professionalScott Dorman17-Mar-08 18:13 
GeneralRe: API to get Application Status (running, stopped, etc) Pin
Mitch F.17-Mar-08 18:34
Mitch F.17-Mar-08 18:34 
GeneralRe: API to get Application Status (running, stopped, etc) Pin
Scott Dorman18-Mar-08 2:58
professionalScott Dorman18-Mar-08 2:58 
GeneralRe: API to get Application Status (running, stopped, etc) [modified] Pin
Mitch F.18-Mar-08 8:55
Mitch F.18-Mar-08 8:55 
GeneralRe: API to get Application Status (running, stopped, etc) Pin
Scott Dorman18-Mar-08 9:50
professionalScott Dorman18-Mar-08 9:50 
Generalupdating VB form Pin
Orlando234517-Mar-08 16:12
Orlando234517-Mar-08 16:12 
GeneralRe: updating VB form Pin
Luc Pattyn17-Mar-08 16:26
sitebuilderLuc Pattyn17-Mar-08 16:26 

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.