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. Visual Basic
  4. Open Calculator

Open Calculator

Scheduled Pinned Locked Moved Visual Basic
help
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.
  • G Offline
    G Offline
    ghost181
    wrote on last edited by
    #1

    Hi, I have a window form call Form1. I want to create a button that can open calculator in form1. after i open the calculator, it will disable the form1. when i close th calculator, it will enabled form1 back. My problem is i cant disable the form1...anyone know the solution pls help.. process.start("calc.exe") i use this code to open the calculator.

    C 1 Reply Last reply
    0
    • G ghost181

      Hi, I have a window form call Form1. I want to create a button that can open calculator in form1. after i open the calculator, it will disable the form1. when i close th calculator, it will enabled form1 back. My problem is i cant disable the form1...anyone know the solution pls help.. process.start("calc.exe") i use this code to open the calculator.

      C Offline
      C Offline
      CWIZO
      wrote on last edited by
      #2

      Your code should look something like this: Dim devenvProccess As Process = New Process() devenvProccess.StartInfo.FileName = "calc.exe" devenvProccess.Start() Me.Enabled = False devenvProccess.WaitForExit() Me.Enabled = True

      -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!

      G 1 Reply Last reply
      0
      • C CWIZO

        Your code should look something like this: Dim devenvProccess As Process = New Process() devenvProccess.StartInfo.FileName = "calc.exe" devenvProccess.Start() Me.Enabled = False devenvProccess.WaitForExit() Me.Enabled = True

        -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!

        G Offline
        G Offline
        ghost181
        wrote on last edited by
        #3

        Hi, Thanks :laugh:

        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