Click here to Skip to main content
15,889,176 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Clarification regarding Boolean variable Pin
Chuck O'Toole17-Oct-11 5:01
Chuck O'Toole17-Oct-11 5:01 
QuestionProgress Window, where to attach Pin
jkirkerx14-Oct-11 9:42
professionaljkirkerx14-Oct-11 9:42 
QuestionRe: Progress Window, where to attach Pin
David Crow14-Oct-11 10:06
David Crow14-Oct-11 10:06 
AnswerRe: Progress Window, where to attach Pin
jkirkerx14-Oct-11 10:38
professionaljkirkerx14-Oct-11 10:38 
GeneralRe: Progress Window, where to attach Pin
Richard MacCutchan14-Oct-11 23:02
mveRichard MacCutchan14-Oct-11 23:02 
GeneralRe: Progress Window, where to attach Pin
jkirkerx15-Oct-11 7:02
professionaljkirkerx15-Oct-11 7:02 
GeneralRe: Progress Window, where to attach Pin
Richard MacCutchan15-Oct-11 7:09
mveRichard MacCutchan15-Oct-11 7:09 
GeneralRe: Progress Window, where to attach Pin
jkirkerx15-Oct-11 8:13
professionaljkirkerx15-Oct-11 8:13 
Or perhaps I will just trip over it by accident, Just Joking, and I like the motivational push forward you gave me. Actually after a complete day of failure or experimenting, Things are clearer for me now in the c++ windows world.

I went on to the next project, some sort of Label control in c++, and found that I can use CreateWindow to make a Label, Textbox, ComboBox, and a Progress Bar.

So I replaced my Drawtext and created a STATIC in the same place, and I will make a progress bar under it.

Since I painted by background white, I need to figure out how to paint the Label and Progress background white as well.


// Create the Operational Status Text
		txt_Website_Default_Status = CreateWindow(TEXT("STATIC"), TEXT("Press Next to begin the programming"), WS_CHILD | WS_VISIBLE | SS_LEFT,
			winWidth - 300,
			winHeight - 250,
			275, 20, hWebsite_Default, (HMENU)IDC_WEBSITE_DEFAULT_LABEL, GetModuleHandle(NULL), 0
		);
		SendMessage(txt_Website_Default_Status, WM_SETFONT, (WPARAM)hFont_Label, FALSE);
		ShowWindow(txt_Website_Default_Status, SW_SHOW);

GeneralRe: Progress Window, where to attach Pin
Richard MacCutchan15-Oct-11 21:24
mveRichard MacCutchan15-Oct-11 21:24 
GeneralRe: Progress Window, where to attach Pin
jkirkerx16-Oct-11 6:53
professionaljkirkerx16-Oct-11 6:53 
GeneralRe: Progress Window, where to attach Pin
Richard MacCutchan16-Oct-11 7:16
mveRichard MacCutchan16-Oct-11 7:16 
QuestionGetting IP Address from IP Control Pin
pandit8414-Oct-11 2:42
pandit8414-Oct-11 2:42 
AnswerRe: Getting IP Address from IP Control Pin
«_Superman_»14-Oct-11 3:12
professional«_Superman_»14-Oct-11 3:12 
GeneralRe: Getting IP Address from IP Control Pin
pandit8414-Oct-11 3:15
pandit8414-Oct-11 3:15 
AnswerRe: htonl() converts Pin
Software_Developer14-Oct-11 4:48
Software_Developer14-Oct-11 4:48 
QuestionSuggest a third party library for MFC applications Pin
rahul.kulshreshtha13-Oct-11 22:39
rahul.kulshreshtha13-Oct-11 22:39 
AnswerRe: Suggest a third party library for MFC applications Pin
_AnsHUMAN_ 13-Oct-11 23:45
_AnsHUMAN_ 13-Oct-11 23:45 
GeneralRe: Suggest a third party library for MFC applications Pin
App_14-Oct-11 0:42
App_14-Oct-11 0:42 
GeneralRe: Suggest a third party library for MFC applications Pin
rahul.kulshreshtha14-Oct-11 7:17
rahul.kulshreshtha14-Oct-11 7:17 
GeneralRe: Suggest a third party library for MFC applications Pin
rahul.kulshreshtha14-Oct-11 7:14
rahul.kulshreshtha14-Oct-11 7:14 
GeneralRe: Suggest a third party library for MFC applications Pin
_AnsHUMAN_ 16-Oct-11 18:51
_AnsHUMAN_ 16-Oct-11 18:51 
AnswerRe: Suggest a third party library for MFC applications Pin
Maximilien14-Oct-11 1:05
Maximilien14-Oct-11 1:05 
GeneralRe: Suggest a third party library for MFC applications Pin
Stefan_Lang14-Oct-11 6:25
Stefan_Lang14-Oct-11 6:25 
GeneralRe: Suggest a third party library for MFC applications Pin
rahul.kulshreshtha14-Oct-11 7:20
rahul.kulshreshtha14-Oct-11 7:20 
AnswerRe: third party ui controls for MFC Pin
Software_Developer14-Oct-11 1:44
Software_Developer14-Oct-11 1:44 

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.