I want to instantiate 2 property pages from the same class and template, because the settings they show are basically the same.
CCPUSettingsSheet sheet;
CCPUSettingsPage cpucore1, cpucore2;
sheet.AddPage(&cpucore1);
sheet.AddPage(&cpucore2);
The only problem is that they get the same tab label text, which is the caption field in their resource template. I need to assign a different text to each one, however.