Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. New window in application

New window in application

Scheduled Pinned Locked Moved C#
tutorialquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    conrado7
    wrote on last edited by
    #1

    How to invoke from From1 application (it`s the main appliction) to another form (window) with for example cliking the button?

    D 1 Reply Last reply
    0
    • C conrado7

      How to invoke from From1 application (it`s the main appliction) to another form (window) with for example cliking the button?

      D Offline
      D Offline
      DougW48
      wrote on last edited by
      #2

      In your button's click event handler: frmYourForm oForm = new frmYourForm(); oForm.Show(); // Will show non-modal oForm.ShowDialog(); // Will show modal Good luck! - Doug

      C 1 Reply Last reply
      0
      • D DougW48

        In your button's click event handler: frmYourForm oForm = new frmYourForm(); oForm.Show(); // Will show non-modal oForm.ShowDialog(); // Will show modal Good luck! - Doug

        C Offline
        C Offline
        conrado7
        wrote on last edited by
        #3

        Thanks a lot :) I discovered that code: System.Windows.Forms.Form NewFormObject = new MyForm(); is valid too :)

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups