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.
48 lines
1.8 KiB
48 lines
1.8 KiB
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Mean Time To Failure Setup"
|
|
|
|
#define VER_INTERNALNAME_STR "GETMTTF.EXE"
|
|
#define VER_ORIGINALFILENAME_STR "GETMTTF.EXE"
|
|
|
|
#include <common.ver>
|
|
|
|
#include "setupdef.h"
|
|
|
|
setup ICON "setup.ico"
|
|
|
|
IDD_SIGNON DIALOG 6, 18, 170, 80
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Mttf Setup -- Enter Path"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Please enter path to Mttf files:", -1, 38, 12, 99, 8
|
|
EDITTEXT IDS_PATH, 38, 30, 94, 12, ES_AUTOHSCROLL
|
|
DEFPUSHBUTTON "&OK", IDOK, 10, 55, 40, 14
|
|
PUSHBUTTON "&Cancel", IDCANCEL, 65, 55, 40, 14
|
|
PUSHBUTTON "&Help", IDB_HELP, 120, 55, 40, 14
|
|
END
|
|
|
|
|
|
|
|
IDD_VALUES DIALOG 6, 18, 239, 142
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "Mttf Setup -- Enter Values"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
LTEXT "Please enter the server file for &mttf results: (\\\\srv\\share\\file)",
|
|
IDV_LABEL_MTTF, 17, 9, 200, 8
|
|
EDITTEXT IDV_MTTF, 65, 25, 104, 12, ES_AUTOHSCROLL
|
|
LTEXT "Please enter the server file for &name list: (\\\\srv\\share\\file)",
|
|
IDV_LABEL_NAMES, 20, 47, 194, 8
|
|
EDITTEXT IDV_NAMES, 65, 62, 104, 12, ES_AUTOHSCROLL
|
|
LTEXT "Please enter the &polling period (in minutes) for collecting data:",
|
|
IDV_LABEL_PERIOD, 16, 84, 202, 8
|
|
EDITTEXT IDV_PERIOD, 65, 98, 104, 12, ES_AUTOHSCROLL
|
|
PUSHBUTTON "&OK", IDOK, 42, 121, 40, 14
|
|
PUSHBUTTON "&Cancel", IDCANCEL, 98, 121, 40, 14
|
|
PUSHBUTTON "&Help", IDB_HELP, 154, 121, 40, 14
|
|
END
|