mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 10:46:58 +00:00
[SHELL32] Implement the 'Advanced' button of the 'File Types' dialog (#565)
This allows the user to edit the File Type / extension information by clicking 'Advanced' button in the 'File Types' property sheet of Folder Options. CORE-12906, CORE-10972
This commit is contained in:
parent
f0a792631d
commit
5187ec858f
35 changed files with 2235 additions and 40 deletions
File diff suppressed because it is too large
Load diff
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -661,6 +661,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -887,4 +923,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -661,6 +661,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -907,4 +943,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -656,6 +656,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -902,4 +938,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -656,6 +656,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -902,4 +938,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -657,6 +657,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -903,4 +939,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -663,6 +663,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -909,4 +945,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -652,6 +652,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "MS UI Gothic"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "MS UI Gothic"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -898,4 +934,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "굴림"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "굴림"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -660,6 +660,42 @@ BEGIN
|
||||||
PUSHBUTTON "Anuluj", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Anuluj", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -906,4 +942,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Rozszerzenie jest w użyciu"
|
IDS_NEWEXT_EXT_IN_USE "Rozszerzenie jest w użyciu"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -657,6 +657,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -903,4 +939,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -657,6 +657,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -903,4 +939,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -659,6 +659,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -905,4 +941,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -657,6 +657,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -903,4 +939,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -655,6 +655,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 8, "MS Shell Dlg"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -901,4 +937,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -663,6 +663,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "宋体"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "宋体"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -911,4 +947,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -663,6 +663,42 @@ BEGIN
|
||||||
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
PUSHBUTTON "Cancel", IDCANCEL, 190, 55, 60, 14
|
||||||
END
|
END
|
||||||
|
|
||||||
|
IDD_EDITTYPE DIALOG 0, 0, 225, 190
|
||||||
|
CAPTION "Edit File Type"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "新細明體"
|
||||||
|
BEGIN
|
||||||
|
ICON "", IDC_EDITTYPE_ICON, 5, 8, 20, 20
|
||||||
|
EDITTEXT IDC_EDITTYPE_TEXT, 30, 10, 115, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "Change &Icon...", IDC_EDITTYPE_CHANGE_ICON, 150, 10, 70, 14
|
||||||
|
LTEXT "&Actions:", -1, 5, 37, 70, 10
|
||||||
|
LISTBOX IDC_EDITTYPE_LISTBOX, 5, 50, 140, 60, LBS_NOINTEGRALHEIGHT | LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY | WS_VSCROLL | WS_TABSTOP
|
||||||
|
PUSHBUTTON "&New...", IDC_EDITTYPE_NEW, 150, 50, 70, 14
|
||||||
|
PUSHBUTTON "&Edit...", IDC_EDITTYPE_EDIT_BUTTON, 150, 65, 70, 14
|
||||||
|
PUSHBUTTON "&Remove", IDC_EDITTYPE_REMOVE, 150, 80, 70, 14
|
||||||
|
PUSHBUTTON "&Set Default", IDC_EDITTYPE_SET_DEFAULT, 150, 95, 70, 14
|
||||||
|
AUTOCHECKBOX "Confirm &open after download", IDC_EDITTYPE_CONFIRM_OPEN, 5, 115, 150, 14
|
||||||
|
AUTOCHECKBOX "Al&ways show extension", IDC_EDITTYPE_SHOW_EXT, 5, 130, 150, 14
|
||||||
|
AUTOCHECKBOX "&Browse in same window", IDC_EDITTYPE_SAME_WINDOW, 5, 145, 150, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 95, 170, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 170, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
|
IDD_ACTION DIALOG 0, 0, 225, 95
|
||||||
|
CAPTION "New Action"
|
||||||
|
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
|
FONT 9, "新細明體"
|
||||||
|
BEGIN
|
||||||
|
LTEXT "&Action:", -1, 5, 7, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_ACTION, 5, 20, 150, 14, ES_AUTOHSCROLL
|
||||||
|
LTEXT "App&lication used to perform action:", -1, 5, 42, 150, 10
|
||||||
|
EDITTEXT IDC_ACTION_APP, 5, 55, 150, 14, ES_AUTOHSCROLL
|
||||||
|
PUSHBUTTON "B&rowse...", IDC_ACTION_BROWSE, 160, 60, 60, 14
|
||||||
|
AUTOCHECKBOX "&Use DDE", IDC_ACTION_USE_DDE, 10, 75, 103, 14
|
||||||
|
DEFPUSHBUTTON "OK", IDOK, 160, 20, 60, 14
|
||||||
|
PUSHBUTTON "Cancel", IDCANCEL, 160, 40, 60, 14
|
||||||
|
END
|
||||||
|
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
/* columns in the shellview */
|
/* columns in the shellview */
|
||||||
|
@ -909,4 +945,11 @@ BEGIN
|
||||||
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
IDS_NEWEXT_EXT_IN_USE "Extension is in use"
|
||||||
|
|
||||||
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
IDS_REMOVE_EXT "If you remove a registered file name extension, you will not be able to open files with this extension by double-clicking their icons.\n\nAre you sure you want to remove this extension?"
|
||||||
|
IDS_SPECIFY_ACTION "You must specify an action."
|
||||||
|
IDS_INVALID_PROGRAM "The specified program could not be found. Make sure the file name and path are correct."
|
||||||
|
IDS_REMOVE_ACTION "Are you sure you want to remove this action?"
|
||||||
|
IDS_ACTION_EXISTS "The action '%s' is already registered for this file type. Please enter a different name and try again."
|
||||||
|
IDS_EXE_FILTER "Programs\0*.exe\0All Files\0*.*\0"
|
||||||
|
IDS_EDITING_ACTION "Editing action for type: "
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
#include <atlcom.h>
|
#include <atlcom.h>
|
||||||
#include <atlwin.h>
|
#include <atlwin.h>
|
||||||
#include <atlstr.h>
|
#include <atlstr.h>
|
||||||
|
#include <atlsimpcoll.h>
|
||||||
#include <powrprof.h>
|
#include <powrprof.h>
|
||||||
#include <winnetwk.h>
|
#include <winnetwk.h>
|
||||||
#include <objsafe.h>
|
#include <objsafe.h>
|
||||||
|
|
|
@ -266,6 +266,13 @@
|
||||||
#define IDS_NEWEXT_ALREADY_ASSOC 30520
|
#define IDS_NEWEXT_ALREADY_ASSOC 30520
|
||||||
#define IDS_NEWEXT_EXT_IN_USE 30521
|
#define IDS_NEWEXT_EXT_IN_USE 30521
|
||||||
|
|
||||||
|
#define IDS_SPECIFY_ACTION 30523
|
||||||
|
#define IDS_INVALID_PROGRAM 30524
|
||||||
|
#define IDS_REMOVE_ACTION 30525
|
||||||
|
#define IDS_ACTION_EXISTS 30526
|
||||||
|
#define IDS_EXE_FILTER 30527
|
||||||
|
#define IDS_EDITING_ACTION 30528
|
||||||
|
|
||||||
#define IDS_REMOVE_EXT 30522
|
#define IDS_REMOVE_EXT 30522
|
||||||
|
|
||||||
/* Dialogs */
|
/* Dialogs */
|
||||||
|
@ -364,13 +371,34 @@
|
||||||
#define IDC_NEWEXT_COMBOBOX 14003
|
#define IDC_NEWEXT_COMBOBOX 14003
|
||||||
#define IDC_NEWEXT_ASSOC 14004
|
#define IDC_NEWEXT_ASSOC 14004
|
||||||
|
|
||||||
|
/* Control IDs for IDD_EDITTYPE dialog */
|
||||||
|
#define IDC_EDITTYPE_ICON 14001
|
||||||
|
#define IDC_EDITTYPE_TEXT 14002
|
||||||
|
#define IDC_EDITTYPE_CHANGE_ICON 14003
|
||||||
|
#define IDC_EDITTYPE_LISTBOX 14004
|
||||||
|
#define IDC_EDITTYPE_NEW 14005
|
||||||
|
#define IDC_EDITTYPE_EDIT_BUTTON 14006
|
||||||
|
#define IDC_EDITTYPE_REMOVE 14007
|
||||||
|
#define IDC_EDITTYPE_SET_DEFAULT 14008
|
||||||
|
#define IDC_EDITTYPE_CONFIRM_OPEN 14009
|
||||||
|
#define IDC_EDITTYPE_SHOW_EXT 14010
|
||||||
|
#define IDC_EDITTYPE_SAME_WINDOW 14011
|
||||||
|
|
||||||
|
/* Control IDs for IDD_ACTION dialog */
|
||||||
|
#define IDC_ACTION_ACTION 14001
|
||||||
|
#define IDC_ACTION_APP 14002
|
||||||
|
#define IDC_ACTION_BROWSE 14003
|
||||||
|
#define IDC_ACTION_USE_DDE 14004
|
||||||
|
|
||||||
/* Other dialogs */
|
/* Other dialogs */
|
||||||
#define IDD_RUN_AS 23
|
#define IDD_RUN_AS 23
|
||||||
#define IDD_OPEN_WITH 24
|
#define IDD_OPEN_WITH 24
|
||||||
#define IDD_FORMAT_DRIVE 25
|
#define IDD_FORMAT_DRIVE 25
|
||||||
#define IDD_CHECK_DISK 26
|
#define IDD_CHECK_DISK 26
|
||||||
#define IDD_NOOPEN 27
|
#define IDD_NOOPEN 27
|
||||||
#define IDD_NEWEXTENSION 28
|
#define IDD_NEWEXTENSION 28
|
||||||
|
#define IDD_EDITTYPE 36
|
||||||
|
#define IDD_ACTION 37
|
||||||
|
|
||||||
/* Not used dialogs */
|
/* Not used dialogs */
|
||||||
#define IDD_SHUTDOWN 29
|
#define IDD_SHUTDOWN 29
|
||||||
|
|
Loading…
Reference in a new issue