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

Visual Basic

 
AnswerRe: How to use resx file? Pin
CWIZO31-Aug-06 8:56
CWIZO31-Aug-06 8:56 
GeneralRe: How to use resx file? Pin
Krishnaraj Barvathaya B31-Aug-06 18:06
Krishnaraj Barvathaya B31-Aug-06 18:06 
GeneralRe: How to use resx file? Pin
CWIZO31-Aug-06 20:48
CWIZO31-Aug-06 20:48 
Questionqueuing server Pin
archana muralidhar31-Aug-06 2:47
archana muralidhar31-Aug-06 2:47 
GeneralRe: queuing server Pin
Guffa31-Aug-06 3:55
Guffa31-Aug-06 3:55 
AnswerRe: queuing server Pin
Dave Kreskowiak31-Aug-06 5:51
mveDave Kreskowiak31-Aug-06 5:51 
QuestionHow to show a hidden window with a shortcut key Pin
re infecta31-Aug-06 2:12
re infecta31-Aug-06 2:12 
AnswerRe: How to show a hidden window with a shortcut key Pin
Dave Sexton31-Aug-06 4:22
Dave Sexton31-Aug-06 4:22 
Here's a small example. I hope it does what you're looking for.

Try this using 2 forms. In Form1 add a button control & this code

Private Sub Button1_Click(...) Handles Button1.Click
       'open form2 & hide the startup form (form1)
       Dim f2 As New Form2
       Me.Hide()
       f2.Show()
   End Sub


Then in Form2 on the KeyUp event add this code

Public f1 As Form1

  Private Sub Form2_KeyUp(...) Handles Me.KeyUp
      'show the main form after pushing F11
      If e.KeyCode = Keys.F11 Then
          f1 = Application.OpenForms.Item("Form1")
          f1.Visible = True
      End If
  End Sub


Hope that helps.
AnswerRe: How to show a hidden window with a shortcut key Pin
Kschuler31-Aug-06 8:16
Kschuler31-Aug-06 8:16 
AnswerRe: How to show a hidden window with a shortcut key Pin
hannesHTG31-Aug-06 23:00
hannesHTG31-Aug-06 23:00 
QuestionSelect in multiline texbox Pin
sabinettte31-Aug-06 1:28
sabinettte31-Aug-06 1:28 
AnswerRe: Select in multiline texbox Pin
Tamimi - Code31-Aug-06 2:26
Tamimi - Code31-Aug-06 2:26 
GeneralRe: Select in multiline texbox Pin
sabinettte31-Aug-06 19:35
sabinettte31-Aug-06 19:35 
Questionimport excel data to dataset Pin
viji]31-Aug-06 1:26
viji]31-Aug-06 1:26 
AnswerRe: import excel data to dataset Pin
Stephen McGuire31-Aug-06 3:21
Stephen McGuire31-Aug-06 3:21 
GeneralRe: import excel data to dataset Pin
viji]2-Sep-06 18:44
viji]2-Sep-06 18:44 
GeneralRe: import excel data to dataset Pin
Stephen McGuire6-Sep-06 3:05
Stephen McGuire6-Sep-06 3:05 
GeneralRe: import excel data to dataset Pin
viji]6-Sep-06 19:07
viji]6-Sep-06 19:07 
QuestionWindow Form Hash Password trouble Pin
Lim Agus31-Aug-06 0:28
Lim Agus31-Aug-06 0:28 
AnswerRe: Window Form Hash Password trouble Pin
Stephen McGuire31-Aug-06 2:27
Stephen McGuire31-Aug-06 2:27 
GeneralRe: Window Form Hash Password trouble Pin
Lim Agus31-Aug-06 16:31
Lim Agus31-Aug-06 16:31 
GeneralRe: Window Form Hash Password trouble Pin
Stephen McGuire6-Sep-06 3:01
Stephen McGuire6-Sep-06 3:01 
Questionpublic const Pin
Marc Soleda30-Aug-06 23:49
Marc Soleda30-Aug-06 23:49 
AnswerRe: public const Pin
Dave Kreskowiak31-Aug-06 5:49
mveDave Kreskowiak31-Aug-06 5:49 
QuestionExport to Excel 2 questions Pin
Legolas_Bilbao30-Aug-06 23:17
Legolas_Bilbao30-Aug-06 23:17 

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.