Click here to Skip to main content
15,902,189 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralLaunching External Applications Pin
Paul Melanson21-Aug-03 6:13
Paul Melanson21-Aug-03 6:13 
GeneralRe: Launching External Applications Pin
Dave Kreskowiak21-Aug-03 10:05
mveDave Kreskowiak21-Aug-03 10:05 
GeneralRe: Launching External Applications Pin
Paul Melanson21-Aug-03 10:58
Paul Melanson21-Aug-03 10:58 
GeneralRe: Launching External Applications Pin
J. Dunlap21-Aug-03 11:29
J. Dunlap21-Aug-03 11:29 
GeneralRe: Launching External Applications Pin
Paul Melanson22-Aug-03 3:28
Paul Melanson22-Aug-03 3:28 
Questionhow to add manually a context menu? Pin
gigaz21-Aug-03 6:11
gigaz21-Aug-03 6:11 
Questionwhich way to "autotab" from textbox ? Pin
dungti20-Aug-03 20:45
dungti20-Aug-03 20:45 
AnswerRe: which way to "autotab" from textbox ? Pin
RichardGrimmer1-Sep-03 5:05
RichardGrimmer1-Sep-03 5:05 
Put in a KeyPress handler for the edit control, and add the following code:

<br />
if (KeyAscii) = 13 then ' Enter Key<br />
 SendKeys "{TAB}"<br />
Endif<br />


This will trap the Enter key, and send a "Tab" to the form. Need to ensure that next control in the tab order is the next control youwant to go to....

Just out of interest - are you sure this is what you want to do? Not really standard windows behaviour, and precludes the use of enter as OK...

"Now I guess I'll sit back and watch people misinterpret what I just said......"
Christian Graus At The Soapbox
GeneralMDI Applications and Focus Pin
Member 47322220-Aug-03 13:46
Member 47322220-Aug-03 13:46 
GeneralInterfacing with 3rd party applications Pin
grazza20-Aug-03 11:09
grazza20-Aug-03 11:09 
GeneralDatabase on PocketPC Pin
Richard Jones20-Aug-03 8:48
Richard Jones20-Aug-03 8:48 
GeneralExcel to Comma Delimited Text File Pin
hollywood_vb20-Aug-03 5:03
hollywood_vb20-Aug-03 5:03 
Questionshortcut key for image button? Pin
dungti19-Aug-03 20:22
dungti19-Aug-03 20:22 
AnswerRe: shortcut key for image button? Pin
Csharp™20-Aug-03 1:26
Csharp™20-Aug-03 1:26 
GeneralVB application on the intranet Pin
funstone19-Aug-03 15:45
funstone19-Aug-03 15:45 
GeneralVB.Net Windows Service problem Pin
Gösta Eriksson19-Aug-03 2:05
Gösta Eriksson19-Aug-03 2:05 
QuestionFileSystemObject, Trace and Compiled Difference? Pin
Paul Riley18-Aug-03 13:21
Paul Riley18-Aug-03 13:21 
AnswerRe: FileSystemObject, Trace and Compiled Difference? Pin
Hesham Amin18-Aug-03 21:31
Hesham Amin18-Aug-03 21:31 
GeneralRe: FileSystemObject, Trace and Compiled Difference? Pin
Paul Riley18-Aug-03 23:59
Paul Riley18-Aug-03 23:59 
GeneralRe: FileSystemObject, Trace and Compiled Difference? Pin
Hesham Amin19-Aug-03 0:12
Hesham Amin19-Aug-03 0:12 
GeneralRe: FileSystemObject, Trace and Compiled Difference? Pin
Paul Riley19-Aug-03 0:21
Paul Riley19-Aug-03 0:21 
GeneralWord Automation Pin
Emile Jacobs18-Aug-03 6:08
Emile Jacobs18-Aug-03 6:08 
GeneralRe: Word Automation Pin
Nick Seng18-Aug-03 16:16
Nick Seng18-Aug-03 16:16 
GeneralReal-time plots in VB Pin
blaze197818-Aug-03 5:11
blaze197818-Aug-03 5:11 
GeneralRe: Real-time plots in VB Pin
Anonymous27-Aug-03 11:52
Anonymous27-Aug-03 11:52 

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.