Question problem creating server.exe

vaibhav2007

New member
Joined
Jul 21, 2009
Messages
2
Programming Experience
Beginner
can anyone temme how to create a .exe file by clicking on a button simply?
i have tried but cud not succeed.
i mean i dont know how to create a server.exe file.
please help me.

IN SHORT I NEED A BUILDER CODE.
 
Your are looking for:

1. An complete IDE, like Visual Studio Express, SharpDevelop, MonoDevelop, Eclipse, NetBeans or similar...and the basics of programming.
2. The Emit-Class in combination with Reflection.
3. Maybe the TCPClient and TCPListener classes.
4. System.IO.File.WriteAllText("C:\yourExecuteable.exe", "YourText") .

Bobby
 
Please do not cross-post. Are you trying to build source into exe from the IDE or from within one of your projects? Is the source all in VB.NET that will be compiled? If you are looking to compile from one of your projects you can look into the VBCodeProvider namespace. This will allow you to compile source to exe or dll.
 
you have still not got it.
suppose i made a virus programming.
i want to generate a exe file by clicking on the button provided so that it creates another exe file which i may distribute to the victims.
NOTE:THIS WAS JUST AN EXAMPLE.I WONT USE THEM FOR ILLEGAL PURPOSE.
 
Perhaps if you describe the situation rather than your solution we can help you find the solve the problem... source code helps as well.
 
If I am understanding your question correctly, you no longer need to "click" a button to create the exe file. That is done everytime you run the debugger.

If you left the defaults in place, your distribute files should be located in the "\bin\Debug" directory.
 
Back
Top