I want to create an application which will be a single EXE application and without any installation it will work. This must not be using .NET or Visual Basic.

Which technology can I use for creating such an application to work on double clicking on the EXE without installing it?

link|improve this question

57% accept rate
feedback

2 Answers

up vote 2 down vote accepted

All of them. Unless you are writing a complex application which requires e.g. COM registration, registry values, database tables etc, there is no reason why you can't create a single executable program in any language without needing an installer.

As long as any dependencies are already installed as part of the OS e.g. MFC, there should be no problems.

link|improve this answer
feedback

Your question is quite vague/odd. You can create stand alone executables with a great many tools, for example MinGW. You don't mention what languages you know.

link|improve this answer
language known is not a concern but it should not be inn VB, .Net, C, C++, VC++. :) – Smruti Ranjan Sahoo Oct 27 '11 at 7:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.