.NET
mfc.txt
Associated article: Building MFC Dialogs at Runtime
Tags: .NET
Published source code accompanying the article by Adrian Hill in which he presents a class for defining MFC-based dialogs. Also see MFC.ZIP.
Building MFC Dialogs at Run Time
by Adrian Hill
Example 1:
int exposure_time_ms = 8; // Two different numeric types.
double laser_power_mw = 40.0;
Dynamic_dialog dlg("Camera Image Capture", 155, 100);
dlg.Add_OK_button(20, 70, 50, 14);
dlg.Add_Cancel_button(85, 70, 50, 14);
dlg.Add_...


