March 26, 200521 yr Hello,how can i resize my dialog?how can i add a ico for my dialog with wich command?how can i change the title?and how can i change the text color, background color?thnx
March 27, 200521 yr For Cmd PromtBlue Set The Color Of The Background And TextGreen Set The Size Of The WindowOrange Set The TitleThis Is A Cmd That Will Echo Back Hello It my Cmd Window Echo off && CLS && Color f1 && Mode 55,3 && Title My Cmd Windowecho. && Echo Hello It my Cmd Window && set /p = Press Any Key To Close
March 27, 200521 yr Author This is my script:#include <iostream>#include <windows.h>#include <windowsx.h>#include <stdlib.h>#include <stdio.h>#define WIN32_LEAN_AND_MEAN#define WINDOW_CLASS_NAME "Hallo"#define WINDOW_WIDTH 400#define WINDOW_HEIGHT 500using namespace std;int main(){cout << "Hoi stefan\n";system("PAUSE");return 0;}This stuff:#define WIN32_LEAN_AND_MEAN#define WINDOW_CLASS_NAME "Hallo"#define WINDOW_WIDTH 400#define WINDOW_HEIGHT 500is not working why not?
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now