Tagged Questions
0
votes
2answers
36 views
Create a standalone exe without the need to install .NET framework
I'm a student and at the moment i'm doing an internship at a company. This internship is about analysing a project. For this project I have made a demo to show to the Marketing director. The demo I ...
-4
votes
1answer
44 views
How to make my program(exe) to stop(and not exit) once an event(generation of a text file) has occured?
I am creating an executable in visual studio.
My code goes like this:
if(condition)
goto Step 1
else
goto Step 2
Step 1:
code
Step 2:
code
I want to make this in a way that if Step 1 ...
1
vote
1answer
201 views
My Qt5 executable does not run outside of Visual Studio 2010
I have done a big project with Qt5 and visual Studio 2010. Everything is well inside of visual studio using the run button.
But my goal is of course to release it to other persons, without visual ...
0
votes
0answers
129 views
Executable built with VS2010 is not a valid win32 application; bindump says it's a DLL
I've been making a C++ program involving FFTs, and it worked fine up until I decided to use FFTW. After making the libraries from the .def files and linking them to my project, it builds successfully. ...
1
vote
1answer
704 views
How to set “run as administrator” privileged in visual studio 2010 setup project? [duplicate]
Possible Duplicate:
How to force my .NET App to run as administrator on Windows 7?
My application is based on Windows-Thread. So it must run as a administrator privileged, To run the ...
2
votes
0answers
248 views
How to include third party exe in visual studio 2010 setup and deployment project?
Let's say A.exe is the my exe project which runs fine at windows system.
Let's say B.exe is the external third party driver which is required for A.exe. Currently I am installing both projects ...
0
votes
1answer
118 views
Visual Studio C++ 2010. Run exe without redristibutable [duplicate]
Possible Duplicate:
How do I make a fully statically linked .exe with Visual Studio Express 2005?
I've noticed that if you try to run a program compiled with VSC++ you need to have the ...
1
vote
1answer
112 views
Build two VS2010 C++ projects into the same output folder
I have two projects in the same VS 2010 solution. They are reusing same code and I want VS2010 to build both projects' Executables into the same output folder.
Apparently this is not trivial even ...
-2
votes
1answer
182 views
c# access .exe and pass parameters to called application without displaying last [closed]
Have app1.exe with input parameters and buttons. How to create c# code to access app1.exe pass parameters for input and press button? thanks for any suggestion
-5
votes
1answer
225 views
My Homemade Crypter Won't Work? [duplicate]
Possible Duplicate:
My Crypter Won’t Work?
I recently built a Crypter in VB.NET 2010 Express Edition, and I opened up the .exe GUI, and chose a Executable File to Encrypt, and it Crypted. I ...
2
votes
0answers
534 views
Visual Studio 2010 C++ Project: Build Release EXE File generates EXE, LIB and EXP File. Why?
I'm building a C++ project in Release-Mode and the target type is an EXE-File. The project also generates a .lib and a .exp-file. What is wrong? I only want to build an exe-file.
Any ideas?
Thank ...
-3
votes
2answers
137 views
Make a program that generates a new .exe
Does anyone know if it is possible to make a program (written in C++) generate a .exe-file? For example, let's say a user wants to have a generated .exe that executes a web browser. In the program ...
0
votes
0answers
506 views
Create a .msi and .exe with InstallShield in Visual Studio 2010
I have InstallShield 2010 set up as a VS project in my solution and currently have it configured to package everything in to a single executable. I know that in the standalone InstallShield ...
0
votes
0answers
202 views
Setup File for c++/cli console application
I have a c++/cli application running on my windows xp machine. I want to deploy it as a setup file. For that I have researched and got the steps here ...
0
votes
2answers
195 views
open exe in hidden mode in vc++
I want to run an .exe file in hidden mode using vc++ in VS2010.
I have tried this code
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
...
2
votes
3answers
240 views
DLL load time different in Visual Studio vs EXE file
I have a general purpose Utility dll file used in my WPF program. The first thing my program does is check for an updated dll file and copies it to the executing directory - all without referencing ...
0
votes
2answers
323 views
Reduce .exe size. Exe compressor
Why VS2010 puts this kind of information (function names) in Release mode to executable?
Can i get rid of all unused data/segments in exe file, re-link it, re-build it etc. with help of some ...
1
vote
1answer
231 views
DirectX Release build works through VS2010, but not exe
I've been dropping by Stack Overflow for a few years now via Google, but haven't asked/answered anything as of yet, so here goes.
Basically I have a 3D rendering framework set up drawing models and ...
0
votes
0answers
558 views
VS2010 C++ F7 doesn't create executable in 'debug'
I'm beginner at programming and I've got this problem with debugging. My programme builds successfully but after I debug it, I just get this error:
"unable to start program ...
0
votes
2answers
971 views
MyProgram has stopped working error
I have created a C#/MVVM project which runs fine when I run it from within VS2010. I copied the exe file from the /release folder to the desktop and tried to run it as a standalone program and get ...
6
votes
3answers
1k views
Converting .exe project to class library
I have a semi-large C# .exe project in visual studio 2010 Ultimate, and I would like to convert it to a DLL class library. Is there an easy way to do this that doesn't involve creating a new class ...
0
votes
2answers
104 views
Compile a new console application from a running application
Is it possible to create an application in c# that can itself create another application from source code it creates dynamically?
for example, application 1 runs and asks you some basic questions. ...
3
votes
2answers
2k views
How To Export exe files in Visual Studio With All Used Files
So I have been working on a few projects using audio and images from files in Visual Studio C++. As of now they are just test projects, but I am going to be moving now towards making 2D games for fun ...
0
votes
1answer
68 views
How do I publish a project that uses WatIn?
I have a project that makes use of WatIn. I have in the past been able to go into the Debug folder and just run the .exe to make use of the program, however trying that with this program throws errors ...
0
votes
0answers
349 views
wpf executable doesn't run on another pc
I am developing a wpf aplication that uses a DLL and a access database. It compiles fine and builds debug files without errors.
The problem is when I try to run the .exe file created in bin/debug ...
0
votes
1answer
282 views
Merge all files into a exe file
How do I merge all of my project from VS2010 into a single exe file?
My application has a solution with 4 project and the IT architecture is N-tier.
0
votes
2answers
365 views
Generate .exe from my web service
So I have created a Web Service the same way as every other one I normally create. Problem is, I want to run it to test if it starts correctly.
If I right click the project -> properties -> debug, ...
1
vote
3answers
2k views
Multiple EXEs from one C# project
I am developing a set of command line utilities that are very small using C#. For example, I have one application that just prints a line from a config file specified in the PATH variable.
Currently ...
4
votes
2answers
2k views
VS2010 set executable data
Sorry for asking noob questions but I couldn't find any answers on the net...
In Visual Studio 2010 C++ Express, how do I set the executable data such as exe version, build, icon, etc?
Also, does ...
0
votes
5answers
69 views
Where do the .exe file of a Ms Visual application goes to?
Where do the .exe file of a Ms Visual application goes to? I've just created it and I would like to know so that I can execute it from AIR with parameters.
ex of code on AIR:
var f:File = new File ...
2
votes
2answers
3k views
Execute exe file or bat file after compile with Visual Studio 2010
I would execute an exe file or a bat file after that the compilation of a C++ program ends. How could I do this?
EDIT 1
This is my actual command line:
start "C:\mypath\myexe.exe myarguments"
2
votes
1answer
5k views
Visual Studio publish as EXE or MSI installer
I don't really know why, but I am not a big fan of this new "clickonce" installer. Is there any way to have visual studio export an old MSI or EXE installer instead of the clickonce?
2
votes
3answers
846 views
Visual C++ 2010 and Native executable file
Native exe!
that means my program can run easily without any requirement?
even if I use .net classes?
You know I want to write a program that is so light and I don't like to use C# or any other .net ...
0
votes
1answer
237 views
Create exe to monitor service in Visual Studio 2010
I've created a windows service project, but I need to create another project to monitor this service.
I was told to create an exe application, but I don't know which type of project to create in VS ...
1
vote
2answers
243 views
WPF programs runs in Visual Studio 2010 but not when clicked on exe
I've made a WPF application that runs perfectly inside Visual Studio 2010.
When I built it (debug or release mode) and try to run the app, I've got an error,
the form doesn't start.
any ideas?
...


