Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

makefile+res+cpp

Status
Not open for further replies.

Cagliostro

Programmer
Sep 13, 2000
4,226
GB
Give me please the simpliest code for a dialog box.
I mean the resource file, make file, source file.
However my applications are compilled ok, I can not load any resouirces.
Thanks,
Ion Ion Filipski
1c.bmp


filipski@excite.com
 
DIALOG_1 DIALOG 86, 65, 141, 78
STYLE DS_ABSALIGN | DS_SYSMODAL | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
CLASS "bordlg"
CAPTION "This program is Password protected!"
BEGIN
CONTROL "Enter your Password", -1, "STATIC", SS_CENTER | WS_CHILD | WS_VISIBLE | WS_BORDER, 33, 6, 75, 12
CONTROL "", 101, "EDIT", ES_LEFT | ES_PASSWORD | ES_WANTRETURN | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 21, 24, 99, 12
CONTROL "ACCEPT PASSWORD", 102, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE, 30, 42, 81, 12
CONTROL "CANCEL", 103, "BUTTON", BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE, 51, 60, 39, 12
END
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top