Click here to Skip to main content
16,005,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help plz i am Almost next to wall and i will hit my head on it HARD Pin
Immunity1824-May-07 12:48
Immunity1824-May-07 12:48 
GeneralRe: Help plz i am Almost next to wall and i will hit my head on it HARD Pin
Mark Salsbery24-May-07 12:53
Mark Salsbery24-May-07 12:53 
AnswerRe: Help plz i am Almost next to wall and i will hit my head on it HARD Pin
Michael Dunn24-May-07 14:29
sitebuilderMichael Dunn24-May-07 14:29 
QuestionAfxMessageBox stop working after split the frame Pin
gurucplusplus24-May-07 11:11
gurucplusplus24-May-07 11:11 
AnswerRe: AfxMessageBox stop working after split the frame Pin
Nelek24-May-07 21:33
protectorNelek24-May-07 21:33 
GeneralRe: AfxMessageBox stop working after split the frame Pin
gurucplusplus25-May-07 7:07
gurucplusplus25-May-07 7:07 
GeneralRe: AfxMessageBox stop working after split the frame Pin
Nelek31-May-07 6:11
protectorNelek31-May-07 6:11 
Questionisletter' : not all control paths return a value Pin
Immunity1824-May-07 10:59
Immunity1824-May-07 10:59 
i got this warning when i try to use isletter() in my WordDocu()
{	
        CString p[26];
	CString v[26];
	p[0] = "A";
	p[1] = "B";
          ......
	p[24] = "Y";
	p[25] = "Z";

	v[0] = "a";
	v[1] = "b";
          ....
	v[24] = "y";
	v[25] = "z";

	for (int i = 0 ; i <26 ; i++)
	{
		if ( v[i] == str || p[i] == str)
		{
			return FALSE;
			break;
		}
		else if ( i==25 &&( v[i] != str && p[i] != str))
		{
			return TRUE;
		}
		else
		{
			return TRUE;
		}
		
	}

}

is there any path i dont wrote return TRUE/FALSE ? :/
AnswerRe: isletter' : not all control paths return a value Pin
Mark Salsbery24-May-07 11:13
Mark Salsbery24-May-07 11:13 
GeneralRe: isletter' : not all control paths return a value Pin
Immunity1824-May-07 11:17
Immunity1824-May-07 11:17 
GeneralRe: isletter' : not all control paths return a value Pin
Mark Salsbery24-May-07 11:26
Mark Salsbery24-May-07 11:26 
GeneralRe: isletter' : not all control paths return a value Pin
Immunity1824-May-07 11:28
Immunity1824-May-07 11:28 
GeneralRe: isletter' : not all control paths return a value Pin
Mark Salsbery24-May-07 11:32
Mark Salsbery24-May-07 11:32 
GeneralRe: isletter' : not all control paths return a value Pin
Immunity1824-May-07 11:33
Immunity1824-May-07 11:33 
GeneralRe: isletter' : not all control paths return a value Pin
Immunity1824-May-07 12:11
Immunity1824-May-07 12:11 
GeneralRe: isletter' : not all control paths return a value Pin
Mark Salsbery24-May-07 12:24
Mark Salsbery24-May-07 12:24 
GeneralRe: isletter' : not all control paths return a value Pin
Immunity1824-May-07 12:29
Immunity1824-May-07 12:29 
AnswerRe: isletter' : not all control paths return a value Pin
Mark Salsbery24-May-07 11:17
Mark Salsbery24-May-07 11:17 
GeneralRe: isletter' : not all control paths return a value Pin
Immunity1824-May-07 11:18
Immunity1824-May-07 11:18 
AnswerRe: isletter' : not all control paths return a value Pin
GameProfessor24-May-07 22:53
GameProfessor24-May-07 22:53 
GeneralRe: isletter' : not all control paths return a value Pin
Mark Salsbery25-May-07 6:09
Mark Salsbery25-May-07 6:09 
QuestionHide a window from Taskbar Pin
Perspx24-May-07 9:38
Perspx24-May-07 9:38 
AnswerRe: Hide a window from Taskbar Pin
Hamid_RT24-May-07 11:09
Hamid_RT24-May-07 11:09 
AnswerRe: Hide a window from Taskbar Pin
Naveen24-May-07 15:00
Naveen24-May-07 15:00 
GeneralRe: Hide a window from Taskbar Pin
romeshj24-Feb-09 22:22
romeshj24-Feb-09 22:22 

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.