Click here to Skip to main content
15,902,198 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: retrieving an _int64 with stroul? Pin
ns6-Aug-04 5:31
ns6-Aug-04 5:31 
GeneralInternet Explorer Pin
Member 12759356-Aug-04 4:26
Member 12759356-Aug-04 4:26 
GeneralRe: Internet Explorer Pin
David Crow6-Aug-04 4:29
David Crow6-Aug-04 4:29 
GeneralSorting CTreeCtrl items ... Pin
Maximilien6-Aug-04 4:24
Maximilien6-Aug-04 4:24 
QuestionPossible to check for download? Pin
Larsson6-Aug-04 3:53
Larsson6-Aug-04 3:53 
AnswerRe: Possible to check for download? Pin
David Crow6-Aug-04 4:28
David Crow6-Aug-04 4:28 
Generalunicode case insensative compares Pin
Henry miller6-Aug-04 3:40
Henry miller6-Aug-04 3:40 
GeneralRe: unicode case insensative compares Pin
Jim Crafton6-Aug-04 3:53
Jim Crafton6-Aug-04 3:53 
I ran into something liek this for some code I had to write for my project, the VCF.

int Win32LocalePeer::collateCaseInsensitive( const UnicodeString& s1, const UnicodeString& s2 )
{
	int result = 0;
	if ( System::isUnicodeEnabled() ) {
		result = ::CompareStringW( lcid_, NORM_IGNORECASE, s1.c_str(), s1.size(), s2.c_str(), s2.size() );
	}
	else {
		AnsiString tmp1 = s1;
		AnsiString tmp2 = s2;

		result = ::CompareStringA( lcid_, NORM_IGNORECASE, tmp1.c_str(), tmp1.size(), tmp2.c_str(), tmp2.size() );
	}

	return result;
}


DOn't know if this is exactly what you want but here's hoping! Smile | :)

¡El diablo está en mis pantalones! ¡Mire, mire!

Real Mentats use only 100% pure, unfooled around with Sapho Juice(tm)!

SELECT * FROM User WHERE Clue > 0
0 rows returned

GeneralRe: unicode case insensative compares Pin
Jim Crafton6-Aug-04 3:55
Jim Crafton6-Aug-04 3:55 
GeneralRe: unicode case insensative compares Pin
Henry miller6-Aug-04 4:29
Henry miller6-Aug-04 4:29 
GeneralAre named pipes Secure Pin
Malcolm Smart6-Aug-04 3:36
Malcolm Smart6-Aug-04 3:36 
GeneralRe: Are named pipes Secure Pin
valikac6-Aug-04 6:09
valikac6-Aug-04 6:09 
GeneralList controll Pin
Larsson6-Aug-04 2:57
Larsson6-Aug-04 2:57 
GeneralRe: List controll Pin
Ravi Bhavnani6-Aug-04 3:12
professionalRavi Bhavnani6-Aug-04 3:12 
Generalwindow doesn't get redrawn Pin
Kamis6-Aug-04 2:56
Kamis6-Aug-04 2:56 
GeneralRe: window doesn't get redrawn Pin
Ravi Bhavnani6-Aug-04 3:14
professionalRavi Bhavnani6-Aug-04 3:14 
GeneralRe: window doesn't get redrawn Pin
Kamis6-Aug-04 7:04
Kamis6-Aug-04 7:04 
GeneralRe: window doesn't get redrawn Pin
Ravi Bhavnani6-Aug-04 7:37
professionalRavi Bhavnani6-Aug-04 7:37 
GeneralInserting ActiveX from VB Pin
dudic6-Aug-04 2:44
dudic6-Aug-04 2:44 
GeneralRe: Drag n Drop a file Pin
David Crow6-Aug-04 2:34
David Crow6-Aug-04 2:34 
Generaltristate menu item Pin
gokings6-Aug-04 2:30
gokings6-Aug-04 2:30 
GeneralIs there any method to draw point and ellipse using real value( i.e. floats) Pin
JHAKAS6-Aug-04 0:49
JHAKAS6-Aug-04 0:49 
GeneralNo Keyboard Dialog Controls Pin
Joel Holdsworth6-Aug-04 0:46
Joel Holdsworth6-Aug-04 0:46 
GeneralRe: No Keyboard Dialog Controls Pin
David Crow6-Aug-04 2:13
David Crow6-Aug-04 2:13 
GeneralRe: No Keyboard Dialog Controls Pin
Joel Holdsworth6-Aug-04 3:30
Joel Holdsworth6-Aug-04 3:30 

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.