Click here to Skip to main content
15,909,530 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: ImageList_Create,ImageList_AddIcon,ListView_SetImageList gives linking error Pin
prasad_som20-Feb-07 18:07
prasad_som20-Feb-07 18:07 
GeneralRe: ImageList_Create,ImageList_AddIcon,ListView_SetImageList gives linking error [modified] Pin
amitmistry_petlad 20-Feb-07 19:30
amitmistry_petlad 20-Feb-07 19:30 
QuestionControlling Move Speed Pin
T.RATHA KRISHNAN20-Feb-07 17:32
T.RATHA KRISHNAN20-Feb-07 17:32 
AnswerRe: Controlling Move Speed Pin
Stephen Hewitt20-Feb-07 19:00
Stephen Hewitt20-Feb-07 19:00 
GeneralRe: Controlling Move Speed Pin
T.RATHA KRISHNAN20-Feb-07 19:17
T.RATHA KRISHNAN20-Feb-07 19:17 
GeneralRe: Controlling Move Speed Pin
Stephen Hewitt20-Feb-07 19:21
Stephen Hewitt20-Feb-07 19:21 
GeneralRe: Controlling Move Speed Pin
T.RATHA KRISHNAN20-Feb-07 19:36
T.RATHA KRISHNAN20-Feb-07 19:36 
GeneralRe: Controlling Move Speed Pin
Stephen Hewitt20-Feb-07 19:41
Stephen Hewitt20-Feb-07 19:41 
No, that is not what I meant. A local variable should should ***NEVER*** be prefixed with "m_". Here's what I meant:
float kHorz = (float) (point.x - m_kScreenCenter[0]);
if (fabs(kHorz) > HORIZONTAL_DEAD_ZONE) 
{
	if (kHorz < 0.0f) 
		m_kHorz += (float)HORIZONTAL_DEAD_ZONE;
	else
		m_kHorz -= (float)HORIZONTAL_DEAD_ZONE;
}


I'm only guessing however; you haven't given enough information for me to be sure.


Steve

GeneralRe: Controlling Move Speed Pin
T.RATHA KRISHNAN20-Feb-07 23:36
T.RATHA KRISHNAN20-Feb-07 23:36 
QuestionHow do we add vertical scroll bar for dialog based application? Pin
Super Hornet20-Feb-07 16:13
Super Hornet20-Feb-07 16:13 
AnswerRe: How do we add vertical scroll bar for dialog based application? Pin
Nibu babu thomas20-Feb-07 17:32
Nibu babu thomas20-Feb-07 17:32 
AnswerRe: How do we add vertical scroll bar for dialog based application? Pin
Hamid_RT20-Feb-07 17:33
Hamid_RT20-Feb-07 17:33 
QuestionDetect color Using C++ Pin
ricardo montemayor20-Feb-07 14:21
ricardo montemayor20-Feb-07 14:21 
AnswerRe: Detect color Using C++ Pin
Hamid_RT20-Feb-07 17:35
Hamid_RT20-Feb-07 17:35 
GeneralRe: Detect color Using C++ Pin
prasad_som20-Feb-07 18:08
prasad_som20-Feb-07 18:08 
AnswerRe: Detect color Using C++ Pin
Stephen Hewitt20-Feb-07 19:24
Stephen Hewitt20-Feb-07 19:24 
AnswerRe: Detect color Using C++ Pin
Mark Salsbery21-Feb-07 8:50
Mark Salsbery21-Feb-07 8:50 
GeneralRe: Detect color Using C++ Pin
ricardo montemayor21-Feb-07 13:26
ricardo montemayor21-Feb-07 13:26 
GeneralRe: Detect color Using C++ Pin
Mark Salsbery21-Feb-07 14:48
Mark Salsbery21-Feb-07 14:48 
GeneralRe: Detect color Using C++ Pin
ricardo montemayor21-Feb-07 16:17
ricardo montemayor21-Feb-07 16:17 
GeneralRe: Detect color Using C++ Pin
Mark Salsbery21-Feb-07 16:43
Mark Salsbery21-Feb-07 16:43 
QuestionIntercepting Output from another application Pin
shatterstar645720-Feb-07 13:19
shatterstar645720-Feb-07 13:19 
AnswerRe: Intercepting Output from another application Pin
Stephen Hewitt20-Feb-07 13:27
Stephen Hewitt20-Feb-07 13:27 
AnswerRe: Intercepting Output from another application Pin
ThatsAlok21-Feb-07 6:10
ThatsAlok21-Feb-07 6:10 
QuestionUniversal Progress Dialog Pin
BuckBrown20-Feb-07 12:38
BuckBrown20-Feb-07 12:38 

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.