Hi, its me again.
This "Guest" is me, too.
Is there a good compilator in grafic mode like Dev-C++?
Because Turbo C and DJGPP are DOS like.
Every compiler is "DOS like".
The grafic mode things are IDEs (Integrated Developement Enviroments)
and an IDE is using a "DOS like" compiler itself to compile the source.
But the IDE hides the compiler, and its much more comfortable to use an IDE.
You can tell Dev-C++ to use another compiler, if you want.
Check out the Dev-C++ help for this (yeah i know the help is not finished yet, but this specific help topic is finished ).
The Dev-C++ does much more for you than using the compiler, check out the package manager, it's great.
Where can I find a good tutorial or list of commands to create Windows like "windows" with button and images?
Do this in Dev-C++:
File-->New-->Project-->Windows Application.
It creates a ready-to-compile-program which does an empty grey window.
The window works like every Windows window, you can resize, move, .........., close it.
The source code is commented.
But you will need to learn the C++ basics before you will UNDERSTAND how to create windows and buttons.
Searching the web for a basic C++ tutorial in your own language is the best idea.
The second best is to search for a english one, you will find maybe 1200000 english ones......
By the way: I created my first window using SDL, not using the "regular" ways to create windows and that was a good idea, because SDL can do anything i wanted to do and is much easier to use.
If you want to use images, SDL maybe is the right choice for you, too.
You can download a package for Dev-C++ to use SDL.
There are some great SDL tutorials at the SDL homepage and some other great SDL tuts somewhere in the web.