Jump to content

Resize, .ico, Title Name, Color, Help


Recommended Posts


For Cmd Promt

Blue Set The Color Of The Background And Text

Green Set The Size Of The Window

Orange Set The Title

This Is A Cmd That Will Echo Back Hello It my Cmd Window

Echo off && CLS && Color f1 && Mode 55,3 && Title My Cmd Window

echo. && Echo    Hello It my Cmd Window && set /p =  Press Any Key To Close

Link to comment
Share on other sites

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 500

using 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 500

is not working why not?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...