by Rick Lipkin » Sun Dec 02, 2007 11:26 pm
Antonio
Just a 32 bit resource editor .. The componants I use most are:
1: Tool pallate and alignment pallate
2: standard windows controls and line drawings
3: Edit as text
4: generate unique id's per control
5: set order
6: double click on control to edit properties, captions, attributes, tab stop
7: create a .rc without header include statements
8: formated like this .. ( typical brw output )
AUDIT DIALOG 184, 15, 235, 120
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
FONT 6, "MS Sans Serif"
{
LTEXT "Audit Date", -1, 6, 14, 53, 12, SS_NOPREFIX | WS_BORDER | WS_GROUP
EDITTEXT 130, 65, 14, 56, 12, WS_BORDER | WS_TABSTOP
EDITTEXT 120, 65, 29, 66, 12, WS_BORDER | WS_TABSTOP
EDITTEXT 123, 65, 44, 66, 12, WS_BORDER | WS_TABSTOP
EDITTEXT 124, 65, 59, 66, 12, WS_BORDER | WS_TABSTOP
EDITTEXT 150, 7, 91, 221, 12, WS_BORDER | WS_TABSTOP
LTEXT "Auditor 1", -1, 6, 29, 53, 12, SS_NOPREFIX | WS_BORDER | WS_GROUP
LTEXT "Auditor 2", -1, 6, 44, 53, 12, SS_NOPREFIX | WS_BORDER | WS_GROUP
LTEXT "District", -1, 6, 59, 53, 12, SS_NOPREFIX | WS_BORDER | WS_GROUP
LTEXT "Comments", -1, 7, 77, 53, 12, SS_NOPREFIX | WS_BORDER | WS_GROUP
PUSHBUTTON "&Ok", 121, 148, 56, 37, 25
PUSHBUTTON "&Cancel", 122, 190, 56, 37, 25
}
This would capture most everything I need ..
Rick Lipkin