INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: little problem "call command" (vb)  (Read 2140 times)

SBrandsborg aka Mouseman

  • Regular Member
  • Galactic Citizen
  • ****
  • Posts: 414
little problem "call command" (vb)
« on: September 27, 2003, 04:42:56 am »

why cant i use this command to make a new window come?
Code: [Select]

Private Sub Command1_Click()
Call Form1.Show
End Sub

does anyone know what i need to make a new window?

hehe im a little new at this mc coding :P

Logged
~SBrandsborg (Mouseman)
E-Mail: steffen@sbrandsborg.dk

SBrandsborg aka Mouseman

  • Regular Member
  • Galactic Citizen
  • ****
  • Posts: 414
Re: little problem "call command" (vb)
« Reply #1 on: September 27, 2003, 04:54:36 am »

never mind i forgot to make
Code: [Select]

Private Sub Command1_Click()
   Form1.Show vbModal, Me
End Sub
Logged
~SBrandsborg (Mouseman)
E-Mail: steffen@sbrandsborg.dk

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: little problem "call command" (vb)
« Reply #2 on: September 27, 2003, 04:55:40 am »

Private Sub Command1_Click()
   Form1.Show vbModal
End Sub
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA

KingSparta

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 20048
Re: little problem "call command" (vb)
« Reply #3 on: September 27, 2003, 04:56:33 am »

well i see you fingered it out as i was typing the answer.
Logged
Retired Military, Airborne, Air Assault, And Flight Wings.
Model Trains, Internet, Ham Radio
https://MyAAGrapevines.com
Fayetteville, NC, USA
Pages: [1]   Go Up