Click here to Skip to main content
15,888,351 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionwriting a plug in for internet browsers Pin
muharrem2-Jan-13 1:28
muharrem2-Jan-13 1:28 
AnswerRe: writing a plug in for internet browsers Pin
Richard MacCutchan2-Jan-13 1:33
mveRichard MacCutchan2-Jan-13 1:33 
GeneralRe: writing a plug in for internet browsers Pin
muharrem2-Jan-13 2:07
muharrem2-Jan-13 2:07 
GeneralRe: writing a plug in for internet browsers Pin
Richard MacCutchan2-Jan-13 4:20
mveRichard MacCutchan2-Jan-13 4:20 
Questionhow to convert resource only dll to hex-format *.cpp file? Pin
Falconapollo1-Jan-13 22:57
Falconapollo1-Jan-13 22:57 
AnswerRe: how to convert resource only dll to hex-format *.cpp file? Pin
Richard MacCutchan1-Jan-13 23:59
mveRichard MacCutchan1-Jan-13 23:59 
GeneralRe: how to convert resource only dll to hex-format *.cpp file? Pin
Erudite_Eric2-Jan-13 7:10
Erudite_Eric2-Jan-13 7:10 
GeneralRe: how to convert resource only dll to hex-format *.cpp file? Pin
Richard MacCutchan2-Jan-13 7:16
mveRichard MacCutchan2-Jan-13 7:16 
NewsFor help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin1-Jan-13 8:35
mrt-amin1-Jan-13 8:35 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
David Crow1-Jan-13 17:23
David Crow1-Jan-13 17:23 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin1-Jan-13 18:29
mrt-amin1-Jan-13 18:29 
QuestionRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
David Crow2-Jan-13 4:27
David Crow2-Jan-13 4:27 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan1-Jan-13 22:22
mveRichard MacCutchan1-Jan-13 22:22 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 2:41
mrt-amin2-Jan-13 2:41 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 4:25
mveRichard MacCutchan2-Jan-13 4:25 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 9:54
mrt-amin2-Jan-13 9:54 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 10:06
mveRichard MacCutchan2-Jan-13 10:06 
And I explained how to do this in my first answer. Create an array or list which contains the names of all numbers, and use the digits of the numbers to select them. Something like:
C++
char* numbers = { "one", "two", ...
int day = currentDate.day;
cout << numbers[day - 1];
// etc

One of these days I'm going to think of a really clever signature.

GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 19:02
mrt-amin2-Jan-13 19:02 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 22:02
mveRichard MacCutchan2-Jan-13 22:02 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin3-Jan-13 18:16
mrt-amin3-Jan-13 18:16 
QuestionEmpty String Pin
john563230-Dec-12 20:27
john563230-Dec-12 20:27 
AnswerRe: Empty String Pin
Richard MacCutchan30-Dec-12 22:22
mveRichard MacCutchan30-Dec-12 22:22 
AnswerRe: Empty String Pin
Chris Meech31-Dec-12 1:57
Chris Meech31-Dec-12 1:57 
AnswerRe: Empty String Pin
David Crow31-Dec-12 5:25
David Crow31-Dec-12 5:25 
AnswerRe: Empty String Pin
manem21k2-Jan-13 1:26
manem21k2-Jan-13 1: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.