Spawning a new (input) form

  • Thread starter Thread starter Rein Petersen
  • Start date Start date
R

Rein Petersen

Hi All,

I'm just playing around with Windows Forms (haven't had too much use for
them otherwise) and I'm just trying to make sense of how an event in one
form (like a user-click) can spawn a new window (form). I haven't
encountered any examples so far and hoped someone might post a URL or two...

Rein
 
Well, you need another form created first. Once the form
is created, you will use the Show() function of the form
to open it.
 
Back
Top