Click here to Skip to main content
15,914,444 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Simple? Problem Pin
Lordahdaring12-Jun-05 4:11
Lordahdaring12-Jun-05 4:11 
GeneralRe: Simple? Problem Pin
Dave Kreskowiak12-Jun-05 6:36
mveDave Kreskowiak12-Jun-05 6:36 
GeneralRe: Simple? Problem Pin
Lordahdaring17-Jun-05 15:06
Lordahdaring17-Jun-05 15:06 
GeneralRe: Simple? Problem Pin
Dave Kreskowiak17-Jun-05 17:38
mveDave Kreskowiak17-Jun-05 17:38 
GeneralConnector/NET with VB.NET Pin
Member 202268310-Jun-05 17:38
Member 202268310-Jun-05 17:38 
GeneralRe: Connector/NET with VB.NET Pin
uno freeware11-Jun-05 16:01
uno freeware11-Jun-05 16:01 
QuestionIs it possible to catch keys? Pin
Yulianto.10-Jun-05 17:16
Yulianto.10-Jun-05 17:16 
AnswerRe: Is it possible to catch keys? Pin
MohammadAmiry11-Jun-05 0:18
MohammadAmiry11-Jun-05 0:18 
Yes and it is so simple:
Just use the Key_Down or Key_Up events:

Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)

End Sub

KeyCode is the keycode of virtual key of the key pressed (for ascii characters, it is the same as the ascii code of the key)
Shift is tells you if Shift/Control/Alt are pressed:
if it's 1 means shift is down.
if it's 2 means control is down.
if it's 4 means alt is down.

if you need a combination of the keys, just some their values:
e.g. for Shift+Control+M
KeyCode=vbKeyM
Shift=3 (= 1 + 2)
GeneralEvent handling on remoting classes Pin
mahdiyfgj10-Jun-05 12:33
sussmahdiyfgj10-Jun-05 12:33 
Generaldisable any input RichEditBox Pin
shinay10-Jun-05 11:44
shinay10-Jun-05 11:44 
GeneralRe: disable any input RichEditBox Pin
bneacetp11-Jun-05 8:45
bneacetp11-Jun-05 8:45 
GeneralRe: disable any input RichEditBox Pin
Dave Goerlich13-Jun-05 2:18
Dave Goerlich13-Jun-05 2:18 
QuestionSyntax to create multi-dimensional arrays in VB.NET? Pin
Carl Mercier10-Jun-05 11:30
Carl Mercier10-Jun-05 11:30 
AnswerRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Christian Graus10-Jun-05 13:38
protectorChristian Graus10-Jun-05 13:38 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Carl Mercier10-Jun-05 17:57
Carl Mercier10-Jun-05 17:57 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Scott Serl10-Jun-05 18:43
Scott Serl10-Jun-05 18:43 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Carl Mercier11-Jun-05 3:10
Carl Mercier11-Jun-05 3:10 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Christian Graus13-Jun-05 12:17
protectorChristian Graus13-Jun-05 12:17 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Carl Mercier15-Jun-05 2:46
Carl Mercier15-Jun-05 2:46 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Christian Graus15-Jun-05 13:04
protectorChristian Graus15-Jun-05 13:04 
GeneralRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
Carl Mercier15-Jun-05 15:32
Carl Mercier15-Jun-05 15:32 
AnswerRe: Syntax to create multi-dimensional arrays in VB.NET? Pin
uno freeware11-Jun-05 15:55
uno freeware11-Jun-05 15:55 
GeneralLittle problem in Vb.net Pin
eshban28410-Jun-05 9:33
eshban28410-Jun-05 9:33 
GeneralRe: Little problem in Vb.net Pin
Christian Graus10-Jun-05 13:41
protectorChristian Graus10-Jun-05 13:41 
GeneralRe: Little problem in Vb.net Pin
Chemisus11-Jun-05 8:36
Chemisus11-Jun-05 8:36 

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.