Click here to Skip to main content
15,881,380 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Geo Location Pin
markkuk6-May-10 2:42
markkuk6-May-10 2:42 
GeneralRe: Geo Location Pin
john56326-May-10 2:49
john56326-May-10 2:49 
GeneralRe: Geo Location Pin
markkuk6-May-10 3:40
markkuk6-May-10 3:40 
GeneralRe: Geo Location Pin
Cedric Moonen6-May-10 20:16
Cedric Moonen6-May-10 20:16 
QuestionRe: Geo Location Pin
David Crow6-May-10 2:58
David Crow6-May-10 2:58 
AnswerRe: Geo Location Pin
Emilio Garavaglia7-May-10 0:05
Emilio Garavaglia7-May-10 0:05 
QuestionSet size and postion of contols in c++ win 32 Pin
arun_pk5-May-10 23:47
arun_pk5-May-10 23:47 
AnswerRe: Set size and postion of contols in c++ win 32 Pin
csrss5-May-10 23:57
csrss5-May-10 23:57 
Like this?

HANDLE hQuit = CreateWindow(<br />
                    "BUTTON",<br />
		"Quit",<br />
                    WS_CHILD | WS_VISIBLE | BS_BITMAP ,<br />
                    350, // pixels from left app border<br />
                    200, // pixels from top app border<br />
                    100,    // button width<br />
                    30,     // button high<br />
                    hMainWindow, <br />
                    (HMENU)ID_BUTTON5,<br />
                    hMainInstance,<br />
                    (LPVOID)NULL);<br />
	if(hQuit == NULL){<br />
		MessageBoxW(0, L"Error creating button!", L"ERROR", MB_ICONERROR);<br />
		return -1;<br />
	} else {<br />
	ShowWindow(hQuit, SW_SHOW);<br />
	UpdateWindow(hQuit);<br />
	}

011011010110000101100011011010000110100101101110
0110010101110011

GeneralRe: Set size and postion of contols in c++ win 32 Pin
arun_pk6-May-10 0:00
arun_pk6-May-10 0:00 
GeneralRe: Set size and postion of contols in c++ win 32 Pin
CPallini6-May-10 0:15
mveCPallini6-May-10 0:15 
GeneralRe: Set size and postion of contols in c++ win 32 Pin
enhzflep6-May-10 0:25
enhzflep6-May-10 0:25 
GeneralRe: Set size and postion of contols in c++ win 32 Pin
arun_pk6-May-10 2:17
arun_pk6-May-10 2:17 
GeneralRe: Set size and postion of contols in c++ win 32 Pin
enhzflep6-May-10 10:24
enhzflep6-May-10 10:24 
QuestionRe: Set size and postion of contols in c++ win 32 Pin
David Crow6-May-10 3:00
David Crow6-May-10 3:00 
Questionwin32 and gtk+ (vista glass) :( Pin
csrss5-May-10 23:30
csrss5-May-10 23:30 
Questionwindow Position C++ win32 Pin
arun_pk5-May-10 22:14
arun_pk5-May-10 22:14 
AnswerRe: window Position C++ win32 Pin
CPallini5-May-10 22:20
mveCPallini5-May-10 22:20 
GeneralRe: window Position C++ win32 Pin
arun_pk5-May-10 23:39
arun_pk5-May-10 23:39 
GeneralRe: window Position C++ win32 Pin
CPallini6-May-10 0:13
mveCPallini6-May-10 0:13 
AnswerRe: window Position C++ win32 Pin
Michel Godfroid5-May-10 22:22
Michel Godfroid5-May-10 22:22 
GeneralRe: window Position C++ win32 Pin
arun_pk5-May-10 23:39
arun_pk5-May-10 23:39 
AnswerRe: window Position C++ win32 Pin
Stuart Dootson6-May-10 0:14
professionalStuart Dootson6-May-10 0:14 
QuestionCreating API for my application... Pin
Shy Agam5-May-10 22:09
Shy Agam5-May-10 22:09 
AnswerRe: Creating API for my application... Pin
CPallini5-May-10 22:14
mveCPallini5-May-10 22:14 
AnswerRe: Creating API for my application... Pin
Michel Godfroid5-May-10 22:26
Michel Godfroid5-May-10 22:26 

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.