Click here to Skip to main content
15,914,820 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: GDI Objects question. Pin
Anonymous31-Oct-02 3:48
Anonymous31-Oct-02 3:48 
GeneralRe: GDI Objects question. Pin
Chris Richardson31-Oct-02 7:08
Chris Richardson31-Oct-02 7:08 
GeneralRe: GDI Objects question. Pin
Christian Graus30-Oct-02 11:53
protectorChristian Graus30-Oct-02 11:53 
GeneralDocView with tree info... Pin
Nick Jacobs30-Oct-02 11:22
Nick Jacobs30-Oct-02 11:22 
GeneralRe: DocView with tree info... Pin
Chris Richardson30-Oct-02 11:42
Chris Richardson30-Oct-02 11:42 
QuestionHow to load whole file to a CStringEx object ? Pin
ooosawaddee330-Oct-02 11:14
ooosawaddee330-Oct-02 11:14 
AnswerRe: How to load whole file to a CStringEx object ? Pin
Stephane Rodriguez.30-Oct-02 11:17
Stephane Rodriguez.30-Oct-02 11:17 
GeneralI need to detect a float Pin
ns30-Oct-02 11:09
ns30-Oct-02 11:09 
For an integer I have:

bool IsNumber( LPCTSTR pszText )
{
	ASSERT_VALID_STRING( pszText );

	for( int i = 0; i < lstrlen( pszText ); i++ )
		if( !_istdigit( pszText[ i ] ) )
			return false;

	return true;
}


However I need a routine to check if its a float. IsDigit returns false at the decimal point....I need to write a IsFloat( LPCTSTR pszText ). How do I do this?

Appreciate your help,
ns
GeneralRe: I need to detect a float Pin
S van Leent30-Oct-02 11:13
S van Leent30-Oct-02 11:13 
GeneralRe: I need to detect a float Pin
alex.barylski30-Oct-02 11:13
alex.barylski30-Oct-02 11:13 
GeneralRe: I need to detect a float Pin
markkuk30-Oct-02 11:34
markkuk30-Oct-02 11:34 
GeneralRe: I need to detect a float Pin
alex.barylski30-Oct-02 14:39
alex.barylski30-Oct-02 14:39 
GeneralRe: I need to detect a float Pin
ns31-Oct-02 1:18
ns31-Oct-02 1:18 
GeneralRe: I need to detect a float Pin
Christian Graus30-Oct-02 11:15
protectorChristian Graus30-Oct-02 11:15 
GeneralThank you! Pin
ns31-Oct-02 1:15
ns31-Oct-02 1:15 
GeneralRe: I need to detect a float Pin
ns31-Oct-02 1:54
ns31-Oct-02 1:54 
Generaldeadlock woes Pin
mystro_AKA_kokie30-Oct-02 11:06
mystro_AKA_kokie30-Oct-02 11:06 
GeneralRe: deadlock woes Pin
User 988530-Oct-02 12:53
User 988530-Oct-02 12:53 
GeneralHelp with ListView Control Pin
Steven M Hunt30-Oct-02 11:06
Steven M Hunt30-Oct-02 11:06 
GeneralRe: Help with ListView Control Pin
alex.barylski30-Oct-02 11:11
alex.barylski30-Oct-02 11:11 
GeneralRe: Help with ListView Control Pin
Anonymous30-Oct-02 11:36
Anonymous30-Oct-02 11:36 
GeneralRe: Help with ListView Control Pin
Steven M Hunt30-Oct-02 13:52
Steven M Hunt30-Oct-02 13:52 
Generalreal time audio encoding/decoding over a network Pin
ascherchen30-Oct-02 10:58
ascherchen30-Oct-02 10:58 
GeneralRe: real time audio encoding/decoding over a network Pin
Stephane Rodriguez.30-Oct-02 11:13
Stephane Rodriguez.30-Oct-02 11:13 
Generalatoi(123.567) Pin
ns30-Oct-02 10:54
ns30-Oct-02 10:54 

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.