Click here to Skip to main content
15,890,947 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CString Pin
David Crow5-Oct-07 3:25
David Crow5-Oct-07 3:25 
QuestionSockets Pin
Adno4-Oct-07 16:02
Adno4-Oct-07 16:02 
AnswerRe: Sockets Pin
Mark Salsbery5-Oct-07 6:32
Mark Salsbery5-Oct-07 6:32 
Questionpreprocessor, pragma, dll, and paths Pin
bob169724-Oct-07 15:49
bob169724-Oct-07 15:49 
QuestionMerge 3 or more CSV file by date into 1 csv file Pin
jsmotu4-Oct-07 12:20
jsmotu4-Oct-07 12:20 
QuestionRe: Merge 3 or more CSV file by date into 1 csv file Pin
George L. Jackson4-Oct-07 12:33
George L. Jackson4-Oct-07 12:33 
AnswerRe: Merge 3 or more CSV file by date into 1 csv file Pin
Iain Clarke, Warrior Programmer5-Oct-07 5:41
Iain Clarke, Warrior Programmer5-Oct-07 5:41 
Questionhow would i Pin
MMaines20054-Oct-07 9:52
MMaines20054-Oct-07 9:52 
how would i attach a bitmap image to a code source for a main program. Like if i wanted to add a bitmap to load with this program :
#include <windows.h>

/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/* Make the class name into a global variable */
char szClassName[ ] = "WindowsApp";

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 */
"Windows App", /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
544, /* The programs width */
375, /* 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_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;
}

Michael
(Up and coming Game programmer)
EST

QuestionRe: how would i Pin
Mark Salsbery4-Oct-07 10:01
Mark Salsbery4-Oct-07 10:01 
AnswerRe: how would i Pin
Hamid_RT4-Oct-07 10:16
Hamid_RT4-Oct-07 10:16 
GeneralRe: how would i Pin
Mark Salsbery4-Oct-07 10:26
Mark Salsbery4-Oct-07 10:26 
QuestionRe: how would i Pin
MMaines20054-Oct-07 15:13
MMaines20054-Oct-07 15:13 
AnswerRe: how would i Pin
Hamid_RT4-Oct-07 23:24
Hamid_RT4-Oct-07 23:24 
AnswerRe: how would i Pin
Mark Salsbery5-Oct-07 5:49
Mark Salsbery5-Oct-07 5:49 
AnswerRe: how would i Pin
Hamid_RT4-Oct-07 10:16
Hamid_RT4-Oct-07 10:16 
GeneralRe: how would i Pin
MMaines20056-Oct-07 6:24
MMaines20056-Oct-07 6:24 
GeneralRe: how would i Pin
Hamid_RT6-Oct-07 19:31
Hamid_RT6-Oct-07 19:31 
QuestionIMHO Pin
marc.bellario4-Oct-07 9:02
marc.bellario4-Oct-07 9:02 
AnswerRe: IMHO Pin
led mike4-Oct-07 9:43
led mike4-Oct-07 9:43 
QuestionRe: IMHO Pin
Maximilien4-Oct-07 9:55
Maximilien4-Oct-07 9:55 
AnswerRe: IMHO Pin
marc.bellario4-Oct-07 10:32
marc.bellario4-Oct-07 10:32 
AnswerRe: IMHO Pin
Hamid_RT4-Oct-07 10:09
Hamid_RT4-Oct-07 10:09 
GeneralRe: IMHO Pin
ThatsAlok4-Oct-07 19:21
ThatsAlok4-Oct-07 19:21 
GeneralRe: IMHO Pin
marc.bellario5-Oct-07 4:52
marc.bellario5-Oct-07 4:52 
AnswerRe: IMHO Pin
ThatsAlok4-Oct-07 19:21
ThatsAlok4-Oct-07 19:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.