#include "windows.h" #include "commctrl.h" #include "proquota.h" #include IDI_ICON ICON "profile.ico" IDI_CAUTION ICON "warn.ico" IDI_STOP ICON "stop.ico" STRINGTABLE BEGIN IDS_SIZEOK "Available profile space: %d KB" IDS_SIZEWARN "Caution: Available profile space: %d KB" IDS_SIZEBAD "Warning! You have exceeded your profile space by %d KB" IDS_COLUMN1 "File Name" IDS_COLUMN2 "Size" IDS_SIZEFMT "%d KB" IDS_LOGOFFOK "You have profile storage space available." IDS_CAUTION "You are almost out of profile storage space." IDS_DEFAULTMSG "You have exceeded your profile storage space. Before you can log off, you need to move some items from your profile to network or local storage." IDS_EXCEEDMSG "You have exceeded your profile space by %d KB" IDS_MSGTITLE "Profile storage space" IDS_QUOTAENUMMSG "Enumerating Profile Directory, Listing files in increasing order of size..." END IDD_QUOTA DIALOG 6, 17, 254, 225 STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU CAPTION "Profile Storage Space" FONT 8, "MS Shell Dlg" BEGIN ICON IDI_STOP, IDC_QUOTA_ICON, 8, 8, 18, 20 LTEXT "", IDC_QUOTA_TEXT, 39, 8, 203, 34 GROUPBOX "Files in your profile:", -1, 8, 44, 236, 125 DEFPUSHBUTTON "OK", IDOK, 194, 201, 50, 14 CONTROL "", IDC_QUOTA_FILELIST, WC_LISTVIEW, LVS_REPORT | WS_TABSTOP, 15, 57, 220, 90, WS_EX_CLIENTEDGE AUTOCHECKBOX "Hide items smaller than 2 KB", IDC_QUOTA_HIDESMALL, 15, 153, 132, 10 GROUPBOX "Size Information:", -1, 8, 177, 145, 38 LTEXT "Current profile size:", -1, 15, 189, 75, 8 LTEXT "Maximum profile size:", -1, 14, 200, 75, 8 LTEXT "", IDC_QUOTA_SIZE, 109, 189, 33, 8 LTEXT "",IDC_QUOTA_MAXSIZE, 109, 200, 33, 8 END #define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "ProQuota" #define VER_INTERNALNAME_STR "proquota\0" #define VER_ORIGINALFILENAME_STR "proquota.exe" #include "common.ver"