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

Visual Basic

 
GeneralRe: Salary Slip Pin
chat_sp2001@yahoo.com16-Oct-06 4:47
chat_sp2001@yahoo.com16-Oct-06 4:47 
GeneralRe: Salary Slip Pin
Christian Graus16-Oct-06 5:40
protectorChristian Graus16-Oct-06 5:40 
QuestionNeed helps about drawing in vb.net Pin
vuthcam16-Oct-06 3:31
vuthcam16-Oct-06 3:31 
AnswerRe: Need helps about drawing in vb.net Pin
Christian Graus16-Oct-06 5:43
protectorChristian Graus16-Oct-06 5:43 
GeneralRe: Need helps about drawing in vb.net Pin
vuthcam16-Oct-06 14:01
vuthcam16-Oct-06 14:01 
GeneralRe: Need helps about drawing in vb.net Pin
Christian Graus17-Oct-06 4:53
protectorChristian Graus17-Oct-06 4:53 
QuestionKey Press Event Question Pin
Amr M. K.16-Oct-06 2:47
Amr M. K.16-Oct-06 2:47 
AnswerRe: Key Press Event Question Pin
Dave Sexton16-Oct-06 3:51
Dave Sexton16-Oct-06 3:51 
The form will not accept key events as it no longer has focus. A possible way to get around this to create a class/module that does specific processing when a key event is raised.

e.g. Create a module that does whatever it is you want done -
Option Strict On
Public Module basKeyEvents
'this class handles key events on every form

Public Sub DoWork()
'''Do work
End Sub
End Module

Then call that method from within the form when a key event is raised
Private Sub Form_KeyUp(....)Handles Me.KeyUp
If e.KeyCode = Keys.F12 Then
DoWork()
End If
End sub


Remember to set the forms KeyPreview property to True.
AnswerRe: Key Press Event Question Pin
Polymorpher16-Oct-06 8:50
Polymorpher16-Oct-06 8:50 
QuestionBringing specific app to the front Pin
nim5216-Oct-06 1:19
nim5216-Oct-06 1:19 
AnswerRe: Bringing specific app to the front Pin
UltraCoder16-Oct-06 9:23
UltraCoder16-Oct-06 9:23 
Questionexcel to sql in vb.net(windows forms) Pin
deepakkp16-Oct-06 1:01
deepakkp16-Oct-06 1:01 
AnswerRe: excel to sql in vb.net(windows forms) Pin
gspowar16-Oct-06 1:26
gspowar16-Oct-06 1:26 
Questionexcel to sql Pin
deepakkp16-Oct-06 0:57
deepakkp16-Oct-06 0:57 
AnswerRe: excel to sql Pin
chat_sp2001@yahoo.com16-Oct-06 4:17
chat_sp2001@yahoo.com16-Oct-06 4:17 
Questionurgently help Pin
ela_8516-Oct-06 0:47
ela_8516-Oct-06 0:47 
AnswerRe: urgently help Pin
Colin Angus Mackay16-Oct-06 0:50
Colin Angus Mackay16-Oct-06 0:50 
AnswerRe: urgently help Pin
Polymorpher16-Oct-06 8:59
Polymorpher16-Oct-06 8:59 
QuestionVB6 + API => File open lag Pin
P Ern16-Oct-06 0:40
P Ern16-Oct-06 0:40 
Questionvb.net macro Pin
gspowar16-Oct-06 0:12
gspowar16-Oct-06 0:12 
AnswerRe: vb.net macro Pin
Dave Kreskowiak16-Oct-06 9:23
mveDave Kreskowiak16-Oct-06 9:23 
QuestionRe: vb.net macro Pin
gspowar17-Oct-06 0:14
gspowar17-Oct-06 0:14 
AnswerRe: vb.net macro Pin
Dave Kreskowiak17-Oct-06 2:10
mveDave Kreskowiak17-Oct-06 2:10 
GeneralRe: vb.net macro Pin
gspowar17-Oct-06 19:30
gspowar17-Oct-06 19:30 
Questionstoring .wmv file in database Pin
ghelai_cute16-Oct-06 0:11
ghelai_cute16-Oct-06 0:11 

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.