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

C / C++ / MFC

 
AnswerRe: WinHelp problem Pin
David Crow30-Nov-05 9:12
David Crow30-Nov-05 9:12 
QuestionHow to make my program the highest priority Pin
jinzhecheng30-Nov-05 8:45
jinzhecheng30-Nov-05 8:45 
AnswerRe: How to make my program the highest priority Pin
Blake Miller30-Nov-05 9:20
Blake Miller30-Nov-05 9:20 
QuestionRe: How to make my program the highest priority Pin
David Crow30-Nov-05 9:27
David Crow30-Nov-05 9:27 
AnswerRe: How to make my program the highest priority Pin
jinzhecheng30-Nov-05 14:29
jinzhecheng30-Nov-05 14:29 
GeneralRe: How to make my program the highest priority Pin
David Crow1-Dec-05 3:44
David Crow1-Dec-05 3:44 
Questionneed help input with hr : min Pin
pheradise30-Nov-05 7:08
pheradise30-Nov-05 7:08 
AnswerRe: need help input with hr : min Pin
David Crow30-Nov-05 7:58
David Crow30-Nov-05 7:58 
There is insufficient information to provide you with a useful answer (e.g., how was the time acquired). In a very general sense:

char *pTime = "12:59";
char *pSep = strchr(pTime, ':');
int nHour = atoi(pTime); // stops at the first non-digit
int nMin = atoi(pSep + 1);



"Take only what you need and leave the land as you found it." - Native American Proverb


QuestionHow to disable automatic COMMAND_UI routing? Pin
ClockDivider30-Nov-05 6:43
ClockDivider30-Nov-05 6:43 
AnswerRe: How to disable automatic COMMAND_UI routing? Pin
ClockDivider30-Nov-05 8:02
ClockDivider30-Nov-05 8:02 
QuestionHow to get rid of "Untitled" in SDI app title bar? Pin
Ian Bowler30-Nov-05 6:37
Ian Bowler30-Nov-05 6:37 
AnswerRe: How to get rid of "Untitled" in SDI app title bar? Pin
toxcct30-Nov-05 6:46
toxcct30-Nov-05 6:46 
GeneralRe: How to get rid of "Untitled" in SDI app title bar? Pin
Ian Bowler30-Nov-05 6:52
Ian Bowler30-Nov-05 6:52 
GeneralRe: How to get rid of "Untitled" in SDI app title bar? Pin
toxcct30-Nov-05 7:01
toxcct30-Nov-05 7:01 
AnswerRe: How to get rid of "Untitled" in SDI app title bar? Pin
ClockDivider30-Nov-05 6:46
ClockDivider30-Nov-05 6:46 
AnswerRe: How to get rid of "Untitled" in SDI app title bar? Pin
David Crow30-Nov-05 8:00
David Crow30-Nov-05 8:00 
GeneralRe: How to get rid of "Untitled" in SDI app title bar? Pin
Ian Bowler30-Nov-05 6:53
Ian Bowler30-Nov-05 6:53 
AnswerRe: How to get rid of "Untitled" in SDI app title bar? Pin
Owner drawn30-Nov-05 19:27
Owner drawn30-Nov-05 19:27 
QuestionHelp to remove a level 4 warning Pin
Chris Meech30-Nov-05 5:44
Chris Meech30-Nov-05 5:44 
AnswerRe: Help to remove a level 4 warning Pin
Graham Bradshaw30-Nov-05 5:51
Graham Bradshaw30-Nov-05 5:51 
GeneralRe: Help to remove a level 4 warning Pin
Chris Meech30-Nov-05 6:13
Chris Meech30-Nov-05 6:13 
AnswerRe: Help to remove a level 4 warning Pin
Blake Miller30-Nov-05 9:25
Blake Miller30-Nov-05 9:25 
AnswerRe: Help to remove a level 4 warning Pin
Roland Pibinger30-Nov-05 9:41
Roland Pibinger30-Nov-05 9:41 
Questionwhat is alternation for "ODBCVER.H"of vc6.0 in vc7.0? Pin
G Haranadh30-Nov-05 5:12
G Haranadh30-Nov-05 5:12 
AnswerRe: what is alternation for "ODBCVER.H"of vc6.0 in vc7.0? Pin
Mike Dimmick30-Nov-05 5:53
Mike Dimmick30-Nov-05 5:53 

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.