Highor Posted March 26, 2005 Posted March 26, 2005 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
SiMoNsAyS Posted March 26, 2005 Posted March 26, 2005 too many question and not too much informationC++, Delphi, VB, etc.?...
gunsmokingman Posted March 27, 2005 Posted March 27, 2005 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
Highor Posted March 27, 2005 Author Posted March 27, 2005 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?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now