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. Open a text file in Notepad

Open a text file in Notepad

Scheduled Pinned Locked Moved C#
tutorialquestion
4 Posts 3 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.
  • H Offline
    H Offline
    Hardus Lombaard
    wrote on last edited by
    #1

    I have a windows app in which I want to open a text file in Notepad. When a button is clicked, a file dialog must open which lets the user select a file to be opened in notepad. I know how to create an OpenFileDialog, but I don't know how to open the selected file in Notepad. How does one do this?

    C L 2 Replies Last reply
    0
    • H Hardus Lombaard

      I have a windows app in which I want to open a text file in Notepad. When a button is clicked, a file dialog must open which lets the user select a file to be opened in notepad. I know how to create an OpenFileDialog, but I don't know how to open the selected file in Notepad. How does one do this?

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

      Check out the Process class in the System.Diagnostics namespace. You should create a Process object, set its StartInfo properties to launch notepad and open your selected text file. Something like this.

      System.Diagnostics.Process p = new System.Diagnostics.Process();
      p.StartInfo.FileName = @"C:\Windows\notepad.exe";
      p.StartInfo.Arguments = @"C:\yourPath\yourTextFile.txt";
      p.Start();

      1 Reply Last reply
      0
      • H Hardus Lombaard

        I have a windows app in which I want to open a text file in Notepad. When a button is clicked, a file dialog must open which lets the user select a file to be opened in notepad. I know how to create an OpenFileDialog, but I don't know how to open the selected file in Notepad. How does one do this?

        L Offline
        L Offline
        Luc Pattyn
        wrote on last edited by
        #3

        Process.Start(filename) opens the file in its default application, as if you double-clicked it in Windows Explorer. :)

        Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


        I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages


        H 1 Reply Last reply
        0
        • L Luc Pattyn

          Process.Start(filename) opens the file in its default application, as if you double-clicked it in Windows Explorer. :)

          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


          I only read code that is properly indented, and rendered in a non-proportional font; hint: use PRE tags in forum messages


          H Offline
          H Offline
          Hardus Lombaard
          wrote on last edited by
          #4

          Any idea how to do this in ASP.NET?

          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