Search Result

Collapse
3 results in 0.0028 seconds.
Keywords
Members
Tags
.exe
  •  

  • AlienAdy
    started a topic Add "compile" option into an application
    in .NET

    Add "compile" option into an application

    Hi guys!

    I am coding a free software that will have 2 parts. Part 1. is an admin panel where a user will be able to select some options. Part 2. is a finished new application which a user can send to some other user, so a standalone application that has nothing to do with the admin panel. Now, the problem is, I don't know how to connect those two parts. I want to add an option in the admin panel that says "build" which will...
    See more | Go to post

  • RedRose2009
    started a topic running .exe file from my program

    running .exe file from my program

    Hello,

    I am working on a C#.NET project that needs to call .exe file from a project that I previously worked on. So, basically project A, needs to call project B. I am not sure how to do it. I tried calling with Process.Start ("something.exe "), but nothing happens so I am thinking maybe I have to be more specific to where exactly something.exe is located. Does something.exe has to be inside the same folder as project A? When...
    See more | Go to post

  • g3rmanpride21
    started a topic Process Description Name

    Process Description Name

    I'm currently working with this piece of code:


    Code:
    CheckedListBox1.Items.Clear()
    CheckedListBox1.DisplayMember = "ProcessName"
    Dim p As Process
    For Each p In Process.GetProcesses
    CheckedListBox1.Items.Add(p)
    Next

    But what it is doing is getting the actual .exe name of the process - example "dwm.exe".
    I want it to give the file description of the...
    See more | Go to post
Working...