Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

  1. #include "windows.h"
  2. #include "resource.h"
  3. /////////////////////////////////////////////////////////////////////////////
  4. //
  5. // Dialog
  6. //
  7. IDD_PROGRESSDLG DIALOG DISCARDABLE 0, 0, 259, 65
  8. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  9. CAPTION "Advpack"
  10. FONT 8, "MS Shell Dlg"
  11. BEGIN
  12. PUSHBUTTON "Cancel",IDCANCEL,104,46,50,14
  13. LTEXT "",IDC_PROGRESSTEXT,16,20,230,10
  14. GROUPBOX "File Download Details",-1,6,6,250,34
  15. END
  16. //
  17. // String Table
  18. //
  19. STRINGTABLE DISCARDABLE
  20. BEGIN
  21. IDS_INIT "Initilizating download...."
  22. IDS_BINDS_CONN "Connecting to site %s ..."
  23. IDS_BINDS_FINDING "Finding site %s ..."
  24. IDS_BINDS_DOWNLOADING "Downloading Files from %s"
  25. IDS_BINDS_ENDDOWNLOAD "Finished downloading from %s"
  26. IDS_BYTEINFO "Downloading Files: %d of %d bytes received"
  27. IDS_CLEANUP "Completing download and cleaning up directories...."
  28. IDS_FILELIST "Scanning the local drive to determine files to be downloaded..."
  29. IDS_RETRY "Retrying to download failed files..."
  30. END
  31. /////////////////////////////////////////////////////////////////////////////
  32. #include "advpext.rcv"