Fixed window, textarea, password capability...

I need code for a Fixed window the size of 700x700 and a text area in the middle with a submit button...the text area will be for the password...the button will submit it...I need the code for it so when I plug in my flash drive...the window will override any other operation...and if the password is incorrect...I would like the flash drive to either disconnect from the pc...or Shut down the system....PLEASE HELP. And I would like the background of the window to be black...and the language to be compilable with either Dev-C++ or CodeBlocks...thank you for reading this message....I also need the text when entered to appear as asterisks upon the typing... Here is the part I am stuck on...I will post the code below... :

I AM USING DEV-C++ FOR THIS PROJECT....

#include <windows.h>
#include <iostream>
/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
/* Make the class name into a global variable */
char szClassName[ ] = "WindowsApp";
char TextSaved[30];
HWND TextBox;



int WINAPI WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)
{
HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */
/* The Window structure */
wincl.hInstance = hThisInstance;
wincl.lpszClassName = szClassName;
wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
wincl.cbSize = sizeof (WNDCLASSEX);
/* Use default icon and mouse-pointer */
wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0; /* structure or the window instance */
/* Use Windows's default color as the background of the window */
wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
/* Register the window class, and if it fails quit the program */
if (!RegisterClassEx (&wincl))
return 0;
/* The class is registered, let's create the program*/
hwnd = CreateWindowEx (
0, /* Extended possibilites for variation */
szClassName, /* Classname */
"Password", /* Title Text */
WS_MINIMIZE, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
500, /* The programs width */
100, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL /* No Window Creation data */
);
/* Make the window visible on the screen */
ShowWindow (hwnd, nFunsterStil);
/* Run the message loop. It will run until GetMessage() returns 0 */
while (GetMessage (&messages, NULL, 0, 0))
{
/* Translate virtual-key messages into character messages */
TranslateMessage(&messages);
/* Send message to WindowProcedure */
DispatchMessage(&messages);
}
/* The program return-value is 0 - The value that PostQuitMessage() gave */
return messages.wParam;
}
/* This function is called by the Windows function DispatchMessage() */
LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) /* handle the messages */
{

case WM_CREATE:
TextBox = CreateWindow("EDIT", "", WS_BORDER | WS_CHILD | WS_VISIBLE,
10, 10, 400, 20,
hwnd, NULL, NULL, NULL);

CreateWindow("BUTTON", "SUBMIT",
WS_VISIBLE | WS_CHILD | WS_BORDER,
420, 10, 70, 20,
hwnd, (HMENU) 1, NULL, NULL);


break;
case WM_COMMAND:
switch(LOWORD(wParam)){
case 1:

int gwtstat =0;
gwtstat = GetWindowText(TextBox, &TextSaved[0], 30);
//char *t = &TextSaved[0];
if (gwtstat == "Password") {
PostQuitMessage (0);
}
else
{
MessageBox(hwnd, TextSaved, TextSaved, MB_OK);
}
gwtstat = GetWindowText(TextBox, &TextSaved[0], 30);
if (gwtstat == 0)
{
//Prompt for input.....
MessageBox(hwnd, "Please enter a password...", "No Input...", MB_OK);
}



break;
}
break;
case WM_DESTROY:
PostQuitMessage (0); /* send a WM_QUIT to the message queue */
break;
default: /* for messages that we don't deal with */
return DefWindowProc (hwnd, message, wParam, lParam);
}
return 0;
}

Last edited on
To increase the chance anyone answers you should re-write your post to be more readable (without so many ellipses) and add code tags around your code to make it more readable (click on the brackets icon next to the textbox when editing your post to insert code tags).

Perhaps read the sticky for the forum, too.

It is crucial you say what your problem is, for example. You've not made any attempt to describe that.
See

How to use code tags
http://www.cplusplus.com/articles/jEywvCM9/

then go back and edit your post (rather than reposting)

Andy

PS Also (for code and other types of tag)

How to use tags
http://www.cplusplus.com/articles/z13hAqkS/

Last edited on
It got solved already....and I did repost it...
Topic archived. No new replies allowed.