home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / ipc / ddeml / ddeinst / dialogs.dlg < prev    next >
Text File  |  1997-10-08  |  1KB  |  32 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples. 
  4. // Copyright (C) 1993-1997 Microsoft Corporation.
  5. // All rights reserved. 
  6. //  
  7. // This source code is only intended as a supplement to 
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the 
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13. 1 DLGINCLUDE "Dialogs.H"
  14.  
  15. ProgressDialog DIALOG 15, 18, 241, 76
  16. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  17. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  18. CAPTION "Installer Progress"
  19. FONT 8, "MS Shell Dlg"
  20. BEGIN
  21.     LTEXT           "Executable Path", 101, 1, 9, 61, 9
  22.     EDITTEXT        IDL_EXEPATH, 68, 9, 173, 9, ES_AUTOHSCROLL | NOT 
  23.                     WS_BORDER
  24.     LTEXT           "Program Item Name", 103, 1, 25, 70, 8
  25.     EDITTEXT        IDL_ITEMNAME, 68, 25, 173, 8, ES_AUTOHSCROLL | 
  26.                     ES_READONLY | NOT WS_BORDER
  27.     CONTROL         "", IDL_PROGRESSBAR, "Static", SS_BLACKFRAME, 0, 50, 241, 
  28.                     16
  29.     EDITTEXT        IDL_PERCENTAGE, 104, 39, 32, 9, ES_CENTER | ES_MULTILINE | 
  30.                     ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER
  31. END
  32.