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

C / C++ / MFC

 
GeneralRe: How to disable control animation, combobox Pin
Moak2-Sep-09 15:17
Moak2-Sep-09 15:17 
GeneralRe: How to disable control animation, combobox Pin
Randor 2-Sep-09 15:23
professional Randor 2-Sep-09 15:23 
GeneralRe: How to disable control animation, combobox Pin
Code-o-mat2-Sep-09 20:34
Code-o-mat2-Sep-09 20:34 
QuestionHow to dispatch WM_LBUTTONDOWN message after calling ReleaseCapture()? Pin
includeh102-Sep-09 8:48
includeh102-Sep-09 8:48 
AnswerRe: How to dispatch WM_LBUTTONDOWN message after calling ReleaseCapture()? Pin
Stuart Dootson2-Sep-09 9:07
professionalStuart Dootson2-Sep-09 9:07 
GeneralRe: How to dispatch WM_LBUTTONDOWN message after calling ReleaseCapture()? Pin
includeh103-Sep-09 7:45
includeh103-Sep-09 7:45 
Questionchar char[] variables help Pin
egerving2-Sep-09 8:26
egerving2-Sep-09 8:26 
AnswerRe: char char[] variables help Pin
Iain Clarke, Warrior Programmer2-Sep-09 8:47
Iain Clarke, Warrior Programmer2-Sep-09 8:47 
There's not going to be all that simple an answer for you. What you are asking for is the stuff you learn in a lesson, or from a book - not from a quick post.

But here's a start.

char means character. In those other languages, "Hello" is a string, not a char either.

Another work for character is letter. So, 'H' is a char, "Hello" is a string, or bunch of characters one after another.

char message [] = "Hello";


That means that the message variable is an arrach of characters - or an array of letters. In this case, 'H' followed by 'e', 'l', 'l', 'o', and lastly a char value of 0, to denote the end of a string.

And that's all I'll reply - otherwise I'll write a book for you - and other people have already done that.
But hopefully ot will get you started on your journey.

I learned from Kernigan & Richie - small language, small book.

Now, if you want to *pay* me to write you a book...

Iain.

I have now moved to Sweden for love (awwww).
If you're in Scandinavia and want an MVP on the payroll (or happy with a remote worker), or need cotract work done, give me a job! http://cv.imcsoft.co.uk/[^]

AnswerRe: char char[] variables help Pin
Stuart Dootson2-Sep-09 9:01
professionalStuart Dootson2-Sep-09 9:01 
AnswerRe: char char[] variables help Pin
Randor 2-Sep-09 9:09
professional Randor 2-Sep-09 9:09 
AnswerRe: char char[] variables help Pin
David Crow2-Sep-09 9:50
David Crow2-Sep-09 9:50 
AnswerRe: char char[] variables help Pin
egerving2-Sep-09 11:31
egerving2-Sep-09 11:31 
AnswerRe: char char[] variables help Pin
Joe Woodbury2-Sep-09 17:11
professionalJoe Woodbury2-Sep-09 17:11 
QuestionSecurity Access Functions Pin
Richard Andrew x642-Sep-09 7:28
professionalRichard Andrew x642-Sep-09 7:28 
AnswerRe: Security Access Functions Pin
Stuart Dootson2-Sep-09 8:17
professionalStuart Dootson2-Sep-09 8:17 
GeneralRe: Security Access Functions Pin
Richard Andrew x642-Sep-09 9:47
professionalRichard Andrew x642-Sep-09 9:47 
AnswerRe: Security Access Functions Pin
Randor 2-Sep-09 8:45
professional Randor 2-Sep-09 8:45 
GeneralRe: Security Access Functions Pin
Richard Andrew x642-Sep-09 9:48
professionalRichard Andrew x642-Sep-09 9:48 
QuestionSetting x-microsoftajax:Delta=true header Giving http error "400" Pin
Ash_VCPP2-Sep-09 5:38
Ash_VCPP2-Sep-09 5:38 
QuestionMDI framework do not cross over through OnActivateFrame(int nCmdShow) ? Pin
mesajflaviu2-Sep-09 4:41
mesajflaviu2-Sep-09 4:41 
AnswerRe: MDI framework do not cross over through OnActivateFrame(int nCmdShow) ? Pin
Stuart Dootson2-Sep-09 5:11
professionalStuart Dootson2-Sep-09 5:11 
GeneralRe: MDI framework do not cross over through OnActivateFrame(int nCmdShow) ? Pin
mesajflaviu2-Sep-09 7:54
mesajflaviu2-Sep-09 7:54 
GeneralRe: MDI framework do not cross over through OnActivateFrame(int nCmdShow) ? Pin
Stuart Dootson2-Sep-09 8:45
professionalStuart Dootson2-Sep-09 8:45 
GeneralRe: MDI framework do not cross over through OnActivateFrame(int nCmdShow) ? Pin
mesajflaviu3-Sep-09 7:44
mesajflaviu3-Sep-09 7:44 
QuestionTe difference between OnKeyDown and OnKeyUp Pin
prithaa2-Sep-09 2:27
prithaa2-Sep-09 2:27 

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.