Click here to Skip to main content
15,898,036 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Auto Load Exployer with auto-loading of a specified file Pin
Mark Salsbery17-Dec-06 14:16
Mark Salsbery17-Dec-06 14:16 
GeneralRe: Auto Load Exployer with auto-loading of a specified file Pin
Larry Mills Sr20-Dec-06 14:11
Larry Mills Sr20-Dec-06 14:11 
GeneralRe: Auto Load Exployer with auto-loading of a specified file Pin
Mark Salsbery20-Dec-06 14:20
Mark Salsbery20-Dec-06 14:20 
GeneralRe: Auto Load Exployer with auto-loading of a specified file Pin
Larry Mills Sr21-Dec-06 23:21
Larry Mills Sr21-Dec-06 23:21 
GeneralRe: Auto Load Exployer with auto-loading of a specified file Pin
Mark Salsbery22-Dec-06 4:36
Mark Salsbery22-Dec-06 4:36 
QuestionVC6 is loosing my imports?! Pin
Neounk16-Dec-06 7:56
Neounk16-Dec-06 7:56 
Questionstructure problem (adaptive-sized char type variable in a structure) [modified] Pin
cy163@hotmail.com16-Dec-06 3:02
cy163@hotmail.com16-Dec-06 3:02 
AnswerRe: structure problem (adaptive-sized char type variable in a structure) Pin
Rob Caldecott16-Dec-06 3:15
Rob Caldecott16-Dec-06 3:15 
Use a CString/std::string instead?

Or use a map of names/scores:

std::map<std::string, float> aMap
aMap["cy163"] = 100.00;


Or even a std::vector of std::pair:

std::vector<std::pair<std::string, float> > myVec;
myVec.push_back(std::make_pair("cy163", 100.00));





GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
Gary R. Wheeler16-Dec-06 3:22
Gary R. Wheeler16-Dec-06 3:22 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
cy163@hotmail.com16-Dec-06 3:31
cy163@hotmail.com16-Dec-06 3:31 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
Rob Caldecott16-Dec-06 3:46
Rob Caldecott16-Dec-06 3:46 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
Jeffrey Walton17-Dec-06 10:15
Jeffrey Walton17-Dec-06 10:15 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
Rob Caldecott17-Dec-06 11:01
Rob Caldecott17-Dec-06 11:01 
AnswerRe: structure problem (adaptive-sized char type variable in a structure) Pin
Gary R. Wheeler16-Dec-06 3:22
Gary R. Wheeler16-Dec-06 3:22 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
cy163@hotmail.com16-Dec-06 3:31
cy163@hotmail.com16-Dec-06 3:31 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
CPallini16-Dec-06 4:07
mveCPallini16-Dec-06 4:07 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
Eytukan16-Dec-06 4:10
Eytukan16-Dec-06 4:10 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
Jeffrey Walton17-Dec-06 10:21
Jeffrey Walton17-Dec-06 10:21 
AnswerRe: structure problem (adaptive-sized char type variable in a structure) Pin
CPallini16-Dec-06 3:42
mveCPallini16-Dec-06 3:42 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
cy163@hotmail.com19-Dec-06 0:00
cy163@hotmail.com19-Dec-06 0:00 
GeneralRe: structure problem (adaptive-sized char type variable in a structure) Pin
CPallini19-Dec-06 0:11
mveCPallini19-Dec-06 0:11 
AnswerRe: structure problem (adaptive-sized char type variable in a structure) Pin
Michael Dunn16-Dec-06 7:10
sitebuilderMichael Dunn16-Dec-06 7:10 
QuestionGDI+ GetBounds bugs? Pin
moonreflection200016-Dec-06 0:50
moonreflection200016-Dec-06 0:50 
AnswerRe: GDI+ GetBounds bugs? Pin
Mark Salsbery16-Dec-06 9:45
Mark Salsbery16-Dec-06 9:45 
AnswerRe: GDI+ GetBounds bugs? Pin
Mark Salsbery16-Dec-06 10:09
Mark Salsbery16-Dec-06 10:09 

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.