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...
Search Result
Collapse
3 results in 0.0028 seconds.
Keywords
Members
Tags
-
Add "compile" option into an application
-
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... -
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...