🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How do I program Windows?

Started by
4 comments, last by Hasa 22 years, 7 months ago
I think that I know enough C++ to advance beyond the point of "Hello World" So how do I program windows using C++ if I DON''T want to use Visual C++? Any suggestions how to start? (i.e. "Hello world" windows style? ) "Damnation! No donation? no salvation!" -"Jesus Saves", GTA2
_________________"Damnation! No donation? no salvation!" -"Jesus Saves", GTA2
Advertisement
Hi, I think I have one.

I am an Brazilian guy and I think I can help you...

Why you don''''t start making some programs simple like a calculator to improve you learning???

Start with any C++ compiler, but I preffer the Free Borland C++ Compiler 5.5.1

You can download at:

www.borland.com/bcppbuilder/freecompiler

A great reference guide for this is the lines above....

---------------------------- A FILE IN .cPP

#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers

#include "windows.h"

int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{

MessageBox( NULL, "This is a messagebox", "My Caption", MB_OK );

return 0;
}

-----------------------------------

http://www.relisoft.com/win32/generic.html



I hope you enjoyed!!!

Rafael G. Donato
"Be forgotten is worse than death..."[email=rgdonato@gmail.com]Rafael G. Donato[/email]
Go to your local book store or Amazon.com and order the following book.

http://www.amazon.com/exec/obidos/ASIN/157231995X/qid=1005845750/sr=2-1/ref=sr_2_11_1/107-7811418-2172502

You will find everything you need to develop windows applications.

I used this book to learn how to program windows 3 a million years ago.

D.V.

Carpe Diem
D.V.Carpe Diem


Click ME!!!!!!!!!!!!!

It's a virtual book which explain something!!!

Rafael G. Donato

Edited by - GIP on November 15, 2001 2:10:48 PM
"Be forgotten is worse than death..."[email=rgdonato@gmail.com]Rafael G. Donato[/email]
If you are just looking for a free IDE (dev. environment) to do windows apps in, you can try dev c++ at this address:

Dev C++

Edited by - catfoodgood on November 15, 2001 8:00:51 PM
Tnx all, I''ll try a these links. I didn''t realize there was a windows.h file in Dev

"Damnation! No donation? no salvation!"
-"Jesus Saves", GTA2
_________________"Damnation! No donation? no salvation!" -"Jesus Saves", GTA2

This topic is closed to new replies.

Advertisement