October 16th, 2008, 5:01 pm
Hi Dominic,It would be a long commute for me to come to your class. However, I can be a good reference if that's ok with you.Here is the struct in question:#define g_rgDialogRows 16#define g_rgDialogCols 7static LPWSTR g_rgDialog[g_rgDialogRows][g_rgDialogCols] ={ {L"\000", L"\000", L"\000", L"\003494", L"\003210", L"\025Generic Sample Dialog", L"\000"}, {L"\0011", L"\003330", L"\003174", L"\00288", L"\000", L"\002OK", L"\000"}, {L"\0012", L"\003225", L"\003174", L"\00288", L"\000", L"\006Cancel", L"\000"}, {L"\0015", L"\00219", L"\00211", L"\000", L"\000", L"\006&Name:", L"\000"}, {L"\0016", L"\00219", L"\00229", L"\003251", L"\000", L"\000", L"\000"}, {L"\00214", L"\003305", L"\00215", L"\003154", L"\00273", L"\010&College", L"\000"}, {L"\00211", L"\000", L"\000", L"\000", L"\000", L"\000", L"\0011"}, {L"\00212", L"\000", L"\000", L"\000", L"\000", L"\010&Harvard", L"\0011"}, {L"\00212", L"\000", L"\000", L"\000", L"\000", L"\006&Other", L"\000"}, {L"\0015", L"\00219", L"\00250", L"\000", L"\000", L"\013&Reference:", L"\000"}, {L"\00210", L"\00219", L"\00267", L"\003253", L"\000", L"\000", L"\000"}, {L"\00214", L"\003209", L"\00293", L"\003250", L"\00263", L"\017&Qualifications", L"\000"}, {L"\00213", L"\000", L"\000", L"\000", L"\000", L"\010&BA / BS", L"\0011"}, {L"\00213", L"\000", L"\000", L"\000", L"\000", L"\010&MA / MS", L"\0011"}, {L"\00213", L"\000", L"\000", L"\000", L"\000", L"\021&PhD / Other Grad", L"\0010"}, {L"\00215", L"\00219", L"\00299", L"\003160", L"\00296", L"\015GENERIC_List1", L"\0011"},};I can tell it starts with the length of the string, followed by the content. However, what should I put in [0][0], [0][1]? What is the formatrequirement? Is it documentated? What if I want to change the dialog box somewhat? That's what've bugged me thus far.Jeff