Open a New Form

  • Thread starter Thread starter Susan
  • Start date Start date
S

Susan

Thank you. When I tried that, I got the following
compile error:
(421): 'RegisterHotKeyTest.Form2' does not contain a
definition for 'show'

Am I missing a declaration somewhere?

Thanks
 
Hi, Susan
(421): 'RegisterHotKeyTest.Form2' does not contain a
definition for 'show'

incorrect ^^^^^^ Function names is case - sensitive...


This is correct: f2.Show();
 
Back
Top