Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Language to write a Windows application that doesn't take up a lot of space

I need to write a Windows XP/Vista application, main requirements:

  • Just one .exe file, without extra runtime, like Air, .Net; posstibly a couple of dlls.
  • Very small file size.

The application is for network centric usage, similar to ICQ or Gtalk clients.

like image 437
user11104 Avatar asked Jun 12 '09 13:06

user11104


2 Answers

I would use Delphi and have a look at this. Delphi compiles into a single file executable, is easy to learn (object pascal), has a nice IDE and one of the fastest compilers available. And if you get Turbo Delphbi 2006, it is even free!

like image 170
Ralph M. Rickenbach Avatar answered Oct 26 '22 12:10

Ralph M. Rickenbach


You can try: C++ w/ MFC. That's really going to be the only way you can seriously control the 'size' of your application (though why is that a constraint?).

If you want even lighterweight, you can try the Windows Template Library with C++.

like image 36
George Stocker Avatar answered Oct 26 '22 12:10

George Stocker