From c1f03d249ee22afdc7dfd43941e99c35048bd662 Mon Sep 17 00:00:00 2001 From: NazmusLabs Date: Sun, 22 Apr 2018 04:41:13 -0400 Subject: [PATCH] Complete Port of Original Help Docs to Fully Functional, interactive, HTML The original documentations for winfile, as extracted from the Windows 98 operating system, has now been ported to an open, and fully functional web based help system, complete with hyper-link support and table of contents. This represents the initial milestone "freeing" the documentation, making it easy to read on any device. And now that this is done, contributors can now easily add information to reflect the current state of the applicaion. Furthermore, I'm hoping to have the webpage that is stored on the reposity serve as a live, up-to-date, documentation for the applicaion, that can be launched right from the help menu. And, and the same time, with subsequent releases of Winfile, a forzen version of these documents can be distributed with the binaries, allowing that particular release enjoy a fully offline copy of the help files, as they were at the time of the release. This can be especially useful in older computers without internet access. I have not done extensive testing in all the differnt browsers, and, but it appears all desktop browsers are able to view the files perfectly fine. I have yet to test mobile browser compatibilities. But that's where the community comes in. By having the help file out there and easily accessible, it can be improved quickly whereas, before, the documentation was trapped in propriotary file fomates that were difficult to read. Best --- help/Winfile_WebHelp/winfile-help.html | 223 +++++++++++++++ .../winfile_help_docs/add_button.htm | 264 ++++++++++++++++++ .../winfile_help_docs/arrange_icons_fm.htm | 244 ++++++++++++++++ .../winfile_help_docs/arrange_windows_fm.htm | 246 ++++++++++++++++ .../winfile_help_docs/associate_file.htm | 254 +++++++++++++++++ .../calibreHtmlOutBasicCss.css | 60 ++++ .../winfile_help_docs/change_directories.htm | 247 ++++++++++++++++ .../winfile_help_docs/change_drives.htm | 247 ++++++++++++++++ .../winfile_help_docs/change_font.htm | 247 ++++++++++++++++ .../change_properties_fm.htm | 253 +++++++++++++++++ .../winfile_help_docs/change_view_fm.htm | 245 ++++++++++++++++ .../winfile_help_docs/confirm_off.htm | 254 +++++++++++++++++ .../winfile_help_docs/connect_net.htm | 248 ++++++++++++++++ .../winfile_help_docs/copy_disk.htm | 253 +++++++++++++++++ .../winfile_help_docs/copy_files.htm | 248 ++++++++++++++++ .../winfile_help_docs/create_directory.htm | 253 +++++++++++++++++ .../winfile_help_docs/create_sysdisk.htm | 251 +++++++++++++++++ .../winfile_help_docs/delete_files.htm | 251 +++++++++++++++++ .../winfile_help_docs/disconnect_net.htm | 251 +++++++++++++++++ .../winfile_help_docs/display_allinfo.htm | 253 +++++++++++++++++ .../winfile_help_docs/display_group_files.htm | 251 +++++++++++++++++ .../winfile_help_docs/display_nameinfo.htm | 253 +++++++++++++++++ .../winfile_help_docs/display_someinfo.htm | 260 +++++++++++++++++ .../winfile_help_docs/display_subdir.htm | 249 +++++++++++++++++ .../winfile_help_docs/display_ver.htm | 248 ++++++++++++++++ .../winfile_help_docs/format_disk.htm | 251 +++++++++++++++++ .../winfile_help_docs/hide_bars.htm | 246 ++++++++++++++++ .../winfile_help_docs/move_button.htm | 262 +++++++++++++++++ .../winfile_help_docs/move_files.htm | 250 +++++++++++++++++ .../winfile_help_docs/onestep.gif | Bin 0 -> 815 bytes .../winfile_help_docs/open_dirwindow.htm | 247 ++++++++++++++++ .../winfile_help_docs/page_styles.css | 4 + .../winfile_help_docs/print_file.htm | 248 ++++++++++++++++ .../winfile_help_docs/remove_button.htm | 260 +++++++++++++++++ .../winfile_help_docs/rename_file.htm | 253 +++++++++++++++++ .../winfile_help_docs/restore_button.htm | 260 +++++++++++++++++ .../winfile_help_docs/search_files.htm | 253 +++++++++++++++++ .../winfile_help_docs/sort_files.htm | 246 ++++++++++++++++ .../winfile_help_docs/start_fm_run.htm | 251 +++++++++++++++++ .../winfile_help_docs/start_prog.htm | 244 ++++++++++++++++ .../winfile_help_docs/stylesheet.css | 73 +++++ .../winfile_help_docs/update_dirwindow.htm | 244 ++++++++++++++++ .../winfile_help_docs/volume_label.htm | 255 +++++++++++++++++ .../windows_fm_wfw_diffs.htm | 244 ++++++++++++++++ .../windows_fm_win_diffs.htm | 247 ++++++++++++++++ 45 files changed, 10391 insertions(+) create mode 100644 help/Winfile_WebHelp/winfile-help.html create mode 100644 help/Winfile_WebHelp/winfile_help_docs/add_button.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/arrange_icons_fm.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/arrange_windows_fm.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/associate_file.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/calibreHtmlOutBasicCss.css create mode 100644 help/Winfile_WebHelp/winfile_help_docs/change_directories.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/change_drives.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/change_font.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/change_properties_fm.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/change_view_fm.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/confirm_off.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/connect_net.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/copy_disk.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/copy_files.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/create_directory.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/create_sysdisk.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/delete_files.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/disconnect_net.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/display_allinfo.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/display_group_files.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/display_nameinfo.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/display_someinfo.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/display_subdir.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/display_ver.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/format_disk.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/hide_bars.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/move_button.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/move_files.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/onestep.gif create mode 100644 help/Winfile_WebHelp/winfile_help_docs/open_dirwindow.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/page_styles.css create mode 100644 help/Winfile_WebHelp/winfile_help_docs/print_file.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/remove_button.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/rename_file.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/restore_button.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/search_files.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/sort_files.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/start_fm_run.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/start_prog.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/stylesheet.css create mode 100644 help/Winfile_WebHelp/winfile_help_docs/update_dirwindow.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/volume_label.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/windows_fm_wfw_diffs.htm create mode 100644 help/Winfile_WebHelp/winfile_help_docs/windows_fm_win_diffs.htm diff --git a/help/Winfile_WebHelp/winfile-help.html b/help/Winfile_WebHelp/winfile-help.html new file mode 100644 index 00000000..2b0e2b56 --- /dev/null +++ b/help/Winfile_WebHelp/winfile-help.html @@ -0,0 +1,223 @@ + + + + + + + + +Unknown - File Manager Help + + + + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown +
+
+ +
+
+ + +
+

Table of contents

+
+ +
+ +
+ + +
+ +
+ + next page + +
+
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/add_button.htm b/help/Winfile_WebHelp/winfile_help_docs/add_button.htm new file mode 100644 index 00000000..92f9baef --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/add_button.htm @@ -0,0 +1,264 @@ + + + + + To add a button to the toolbar + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To add a button to the toolbar +

    +
  1. +On the Options menu, click Customize Toolbar.
  2. +
  3. +In Toolbar buttons, click the button below the place where you want the new button.
  4. +
  5. +In Available buttons, click the button that you want to add.
  6. +
  7. +Click Add.
  8. +
+Notes +
    +
  • If there is not enough room on the toolbar for another button, remove a button that you do not use as often.
  • For more information, click Help while using the dialog box.
+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/arrange_icons_fm.htm b/help/Winfile_WebHelp/winfile_help_docs/arrange_icons_fm.htm new file mode 100644 index 00000000..8ba489b9 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/arrange_icons_fm.htm @@ -0,0 +1,244 @@ + + + + + To arrange icons + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To arrange icons

+

+ On the Window menu, click Arrange Icons.

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/arrange_windows_fm.htm b/help/Winfile_WebHelp/winfile_help_docs/arrange_windows_fm.htm new file mode 100644 index 00000000..48580e30 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/arrange_windows_fm.htm @@ -0,0 +1,246 @@ + + + + + To arrange folder windows + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To arrange folder windows +

    +
  • To arrange windows so that they overlap (starting in the upper-left corner of the File Manager window), click Window, and then click Cascade. +
  • To arrange windows side by side so that they do not overlap, click Window, and then click Tile Vertically. +
  • To arrange windows top to bottom so that they do not overlap, click Window, and then click Tile Horizontally.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/associate_file.htm b/help/Winfile_WebHelp/winfile_help_docs/associate_file.htm new file mode 100644 index 00000000..360fdfe1 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/associate_file.htm @@ -0,0 +1,254 @@ + + + + + To associate a file with a program + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To associate a file with a program +

    +
  1. +Click the name of the file you want to associate with a program.
  2. +
  3. +On the File menu, click Associate.
  4. +
  5. +In Associate With, click the program you want to associate with the file, and then click OK.
  6. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/calibreHtmlOutBasicCss.css b/help/Winfile_WebHelp/winfile_help_docs/calibreHtmlOutBasicCss.css new file mode 100644 index 00000000..79787feb --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/calibreHtmlOutBasicCss.css @@ -0,0 +1,60 @@ +body{ + margin:0px; + padding: 0.5em; + background-color:#F6F3E9; + font-size:12px; + font-family:Arial, Helvetica, sans-serif; +} + +.calibreMeta{ + background-color:#39322B; + color:white; + padding:10px; +} + +.calibreMeta a, .calibreEbNav a, .calibreEbNavTop a, .calibreToc a{ + color:white; +} + +.calibreMeta h1{ + margin:0px; + font-size:18px; + background-color:#39322B; +} + +.calibreEbookContent{ + padding:20px; +} + +.calibreEbNav, .calibreEbNavTop{ + clear:both; + background-color:#39322B; + color:white; + padding:10px; + text-align:center; +} + +.calibreEbNavTop{ + margin-bottom:20px; +} + +.calibreEbNav a, .calibreEbNavTop a{ + padding:0px 5px; +} + +.calibreTocIndex{ + line-height:18px; +} + +.calibreToc{ + float:left; + margin:20px; + width:300px; + background-color:#39322B; + color:white; + padding:10px; +} +.calibreEbookContent{ + width:600px; + float:left; +} diff --git a/help/Winfile_WebHelp/winfile_help_docs/change_directories.htm b/help/Winfile_WebHelp/winfile_help_docs/change_directories.htm new file mode 100644 index 00000000..58fc10f4 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/change_directories.htm @@ -0,0 +1,247 @@ + + + + + To change folders + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To change folders

+

+ Click a folder (directory) in the tree.

+Note +
    +
  • To quickly change to the root directory, press the HOME key.
+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/change_drives.htm b/help/Winfile_WebHelp/winfile_help_docs/change_drives.htm new file mode 100644 index 00000000..ecb6f519 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/change_drives.htm @@ -0,0 +1,247 @@ + + + + + To change drives + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To change drives

+

+ Click a drive icon on the drive bar.

+Note +
    +
  • You can also double-click a drive icon to display the drive's contents in a new folder window.
+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/change_font.htm b/help/Winfile_WebHelp/winfile_help_docs/change_font.htm new file mode 100644 index 00000000..f572daaa --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/change_font.htm @@ -0,0 +1,247 @@ + + + + + To change the font + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + +
+ + + +

+To change the font +

    +
  1. +On the Options menu, click Font.
  2. +
  3. +In the Font dialog box, click the font, style, and size, and then click OK.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/change_properties_fm.htm b/help/Winfile_WebHelp/winfile_help_docs/change_properties_fm.htm new file mode 100644 index 00000000..06adcfc7 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/change_properties_fm.htm @@ -0,0 +1,253 @@ + + + + + To change file or folder properties + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To change file or folder properties +

    +
  1. +In the folder (directory) window, click the item for which you want to change properties.
  2. +
  3. +On the File menu, click Properties.
  4. +
  5. +Under Attributes, click the options you want to change, and then click OK.
  6. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/change_view_fm.htm b/help/Winfile_WebHelp/winfile_help_docs/change_view_fm.htm new file mode 100644 index 00000000..afe5290f --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/change_view_fm.htm @@ -0,0 +1,245 @@ + + + + + To change views in a folder window + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To change views in a folder window +

    +
  • To display only the folder (directory) tree, on the View menu, click Tree Only. +
  • To display only the folder contents, on the View menu, click Directory Only.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/confirm_off.htm b/help/Winfile_WebHelp/winfile_help_docs/confirm_off.htm new file mode 100644 index 00000000..25033688 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/confirm_off.htm @@ -0,0 +1,254 @@ + + + + + To turn confirmation messages on or off + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To turn confirmation messages on or off +

    +
  1. +On the Options menu, click Confirmation.
  2. +
  3. +Select the check boxes for the confirmation messages you want to turn on.

    +Click to clear the check boxes for the confirmation messages you want to turn off.

  4. +
  5. +Click OK.
  6. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/connect_net.htm b/help/Winfile_WebHelp/winfile_help_docs/connect_net.htm new file mode 100644 index 00000000..3c3e042a --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/connect_net.htm @@ -0,0 +1,248 @@ + + + + + To connect to a shared folder + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To connect to a shared folder +

    +
  1. +On the Disk menu, click Connect Network Drive.
  2. +
  3. +In Path, type the path to the folder, and then click OK.
  4. +
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/copy_disk.htm b/help/Winfile_WebHelp/winfile_help_docs/copy_disk.htm new file mode 100644 index 00000000..79ca7496 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/copy_disk.htm @@ -0,0 +1,253 @@ + + + + + To copy a disk + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To copy a disk +

    +
  1. +Insert the source disk in the drive you want to copy from.
  2. +
  3. +In the drive bar, click the drive icon for the source disk.
  4. +
  5. +On the Disk menu, click Copy Disk, and then click OK.
  6. +
+Notes +
    +
  • If your computer has two floppy disk drives, insert the destination disk in the drive you want to copy to, and then, in Destination In, click the letter of the destination drive.
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/copy_files.htm b/help/Winfile_WebHelp/winfile_help_docs/copy_files.htm new file mode 100644 index 00000000..3f6d036f --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/copy_files.htm @@ -0,0 +1,248 @@ + + + + + To copy a file or folder + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To copy a file or folder +

    +
  • To copy a file or folder (directory) to the same drive, press and hold down CTRL and drag the file or folder icon to a folder icon, drive icon, or minimized folder window. +
  • To copy a file or folder to a different drive, drag the file or folder icon without pressing CTRL.
+Notes +
    +
  • If you drag a file or folder to a drive icon, the file is copied to the current folder on that drive.
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/create_directory.htm b/help/Winfile_WebHelp/winfile_help_docs/create_directory.htm new file mode 100644 index 00000000..7f4b18f8 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/create_directory.htm @@ -0,0 +1,253 @@ + + + + + To create a folder + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To create a folder +

    +
  1. +Click the folder (directory) in which you want to create the new folder.
  2. +
  3. +On the File menu, click Create Directory.
  4. +
  5. +In Name, type the name of the new folder, and then click OK.
  6. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/create_sysdisk.htm b/help/Winfile_WebHelp/winfile_help_docs/create_sysdisk.htm new file mode 100644 index 00000000..acb324f0 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/create_sysdisk.htm @@ -0,0 +1,251 @@ + + + + + To create a system disk + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To create a system disk +

    +
  1. +Insert a formatted floppy disk in a drive.
  2. +
  3. +On the Disk menu, click Make System Disk, and then click OK.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/delete_files.htm b/help/Winfile_WebHelp/winfile_help_docs/delete_files.htm new file mode 100644 index 00000000..a7cfacfb --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/delete_files.htm @@ -0,0 +1,251 @@ + + + + + To delete a file or folder + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To delete a file or folder +

    +
  1. +Click the item you want to delete.
  2. +
  3. +On the File menu, click Delete, and then click OK.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/disconnect_net.htm b/help/Winfile_WebHelp/winfile_help_docs/disconnect_net.htm new file mode 100644 index 00000000..63b71965 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/disconnect_net.htm @@ -0,0 +1,251 @@ + + + + + To disconnect from a network drive + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To disconnect from a network drive +

    +
  1. +On the Disk menu, click Disconnect Network Drive.
  2. +
  3. +Click the network drive you want to disconnect from, and then click OK.
  4. +
+Notes +
    +
  • For more information, click Help while using the dialog box.
  • You can extend your selection to disconnect from more than one network drive.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/display_allinfo.htm b/help/Winfile_WebHelp/winfile_help_docs/display_allinfo.htm new file mode 100644 index 00000000..d37075d6 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/display_allinfo.htm @@ -0,0 +1,253 @@ + + + + + To display all file information + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To display all file information

+

+ On the View menu, click All File Details.

+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/display_group_files.htm b/help/Winfile_WebHelp/winfile_help_docs/display_group_files.htm new file mode 100644 index 00000000..44ee79ff --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/display_group_files.htm @@ -0,0 +1,251 @@ + + + + + To display a group of files + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To display a group of files +

    +
  1. +On the View menu, click By File Type.
  2. +
  3. +Click the file types you want to display in the folder window, and then click OK.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/display_nameinfo.htm b/help/Winfile_WebHelp/winfile_help_docs/display_nameinfo.htm new file mode 100644 index 00000000..d6459032 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/display_nameinfo.htm @@ -0,0 +1,253 @@ + + + + + To display only names of files and folders + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To display only names of files and folders

+

+ On the View menu, click Name.

+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/display_someinfo.htm b/help/Winfile_WebHelp/winfile_help_docs/display_someinfo.htm new file mode 100644 index 00000000..2da804ee --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/display_someinfo.htm @@ -0,0 +1,260 @@ + + + + + To display specific file information + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To display specific file information +

    +
  1. +On the View menu, click Partial Details.
  2. +
  3. +Under Details, click the information you want to display, and then click OK.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/display_subdir.htm b/help/Winfile_WebHelp/winfile_help_docs/display_subdir.htm new file mode 100644 index 00000000..2154af42 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/display_subdir.htm @@ -0,0 +1,249 @@ + + + + + To display or hide subfolders + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To display or hide subfolders +

    +
  • To display subfolders, double-click the folder you want to expand. +
  • To hide subfolders, double-click the expanded folder you want to collapse.
+

+Note +

    +
  • You can mark folders that have subfolders by using the Indicate Expandable Branches command on the Tree menu. The folders that have subfolders are marked with a plus sign. After you expand a folder, it is marked with a minus sign. If you use the Indicate Expandable Branches command, File Manager may take longer to create the folder tree.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/display_ver.htm b/help/Winfile_WebHelp/winfile_help_docs/display_ver.htm new file mode 100644 index 00000000..24db7baf --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/display_ver.htm @@ -0,0 +1,248 @@ + + + + + To display version information for a program + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To display version information for a program +

    +
  1. +In the folder window, click the program file (it has an .exe, .dll, or .drv extension).
  2. +
  3. +On the File menu, click Properties.
  4. +
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/format_disk.htm b/help/Winfile_WebHelp/winfile_help_docs/format_disk.htm new file mode 100644 index 00000000..512b1744 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/format_disk.htm @@ -0,0 +1,251 @@ + + + + + To format a disk + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To format a disk +

    +
  1. +Insert a disk in a drive.
  2. +
  3. +On the Disk menu, click Format Disk, and then click OK.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/hide_bars.htm b/help/Winfile_WebHelp/winfile_help_docs/hide_bars.htm new file mode 100644 index 00000000..5aaf3e91 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/hide_bars.htm @@ -0,0 +1,246 @@ + + + + + To hide the toolbar, drive bar, or status bar + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To hide the toolbar, drive bar, or status bar

+

+ On the Options menu, click Toolbar, Drivebar, or Status Bar. +

+The check mark disappears, indicating the item will no longer be displayed.

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/move_button.htm b/help/Winfile_WebHelp/winfile_help_docs/move_button.htm new file mode 100644 index 00000000..df62cf4c --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/move_button.htm @@ -0,0 +1,262 @@ + + + + + To move a toolbar button + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To move a toolbar button +

    +
  1. +On the Options menu, click Customize Toolbar.
  2. +
  3. +In Toolbar buttons, click the button you want to move.
  4. +
  5. +Click Move Up or Move Down to move the button to the location you want.
  6. +
+Note +
    +
  • You can also move a toolbar button by pressing and holding down the SHIFT key while you drag the button to its new position.
+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/move_files.htm b/help/Winfile_WebHelp/winfile_help_docs/move_files.htm new file mode 100644 index 00000000..93cc5810 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/move_files.htm @@ -0,0 +1,250 @@ + + + + + To move files or folders + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To move files or folders +

    +
  • To move a file or folder (directory) to a different drive, press and hold down the SHIFT key, and then drag the file or folder icon to a folder icon, drive icon, or minimized folder window. +
  • To move a file or folder to the same drive, drag the file or folder icon without pressing SHIFT. +
  • To move a file or folder by using the Move command, click the items you want to move. On the File menu, click Move. In To, type the location where you want to move the file or folder.
+

+Notes +

    +
  • If you drag a file or folder to a drive icon, the file is moved to the current folder on that drive.
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/onestep.gif b/help/Winfile_WebHelp/winfile_help_docs/onestep.gif new file mode 100644 index 0000000000000000000000000000000000000000..3911a9ff782eeffee78e6f06aaa4dacefd542a3d GIT binary patch literal 815 zcmZ?wbh9u|WMSZ7_|5 + + + + To open another folder window + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To open another folder window

+

+ Click a drive icon.

+Note +
    +
  • To open a folder window that displays only the contents of a particular folder, press and hold down SHIFT while you double-click the folder icon in the folder list.
+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/page_styles.css b/help/Winfile_WebHelp/winfile_help_docs/page_styles.css new file mode 100644 index 00000000..7ee6c2c8 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/page_styles.css @@ -0,0 +1,4 @@ +@page { + margin-bottom: 5pt; + margin-top: 5pt + } diff --git a/help/Winfile_WebHelp/winfile_help_docs/print_file.htm b/help/Winfile_WebHelp/winfile_help_docs/print_file.htm new file mode 100644 index 00000000..74a62df5 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/print_file.htm @@ -0,0 +1,248 @@ + + + + + To print a file + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To print a file +

    +
  1. +Click the document file that you want to print.
  2. +
  3. +On the File menu, click Print, and then click OK.
  4. +
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/remove_button.htm b/help/Winfile_WebHelp/winfile_help_docs/remove_button.htm new file mode 100644 index 00000000..1b75376a --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/remove_button.htm @@ -0,0 +1,260 @@ + + + + + To remove a toolbar button + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To remove a toolbar button +

    +
  1. +On the Options menu, click Customize Toolbar.
  2. +
  3. +In Toolbar buttons, click the button you want to remove, and then click Remove.
  4. +
+Note +
    +
  • You can also remove a toolbar button by pressing and holding down the SHIFT key while you drag the button off the toolbar.
+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/rename_file.htm b/help/Winfile_WebHelp/winfile_help_docs/rename_file.htm new file mode 100644 index 00000000..33471830 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/rename_file.htm @@ -0,0 +1,253 @@ + + + + + To rename a file or folder + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To rename a file or folder +

    +
  1. +Click the file or folder you want to rename.
  2. +
  3. +On the File menu, click Rename.
  4. +
  5. +In To, type the new name, and then click OK.
  6. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/restore_button.htm b/help/Winfile_WebHelp/winfile_help_docs/restore_button.htm new file mode 100644 index 00000000..89da8ef9 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/restore_button.htm @@ -0,0 +1,260 @@ + + + + + To restore the default toolbar buttons + + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To restore the default toolbar buttons +

    +
  1. +On the Options menu, click Customize Toolbar.
  2. +
  3. +Click Reset.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + + + + + +

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/search_files.htm b/help/Winfile_WebHelp/winfile_help_docs/search_files.htm new file mode 100644 index 00000000..8a5147f3 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/search_files.htm @@ -0,0 +1,253 @@ + + + + + To search for files or folders + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To search for files or folders +

    +
  1. +Click the folder (directory) from which you want to start the search.
  2. +
  3. +On the File menu, click Search.
  4. +
  5. +In Search For, type the name of the file or folder, and then click OK.
  6. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/sort_files.htm b/help/Winfile_WebHelp/winfile_help_docs/sort_files.htm new file mode 100644 index 00000000..f3804467 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/sort_files.htm @@ -0,0 +1,246 @@ + + + + + To sort files + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To sort files

+

+ On the View menu, click Sort By Name, Sort By Type, Sort By Size, or Sort By Date.

+

+A check mark appears next to the selected option, indicating that it is the active method of sorting.

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/start_fm_run.htm b/help/Winfile_WebHelp/winfile_help_docs/start_fm_run.htm new file mode 100644 index 00000000..ba4b2d2a --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/start_fm_run.htm @@ -0,0 +1,251 @@ + + + + + To start a program and open a file by using the Run command + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To start a program and open a file by using the Run command +

    +
  1. +On the File menu, click Run.
  2. +
  3. +Enter the name and location of the file you want to open.
  4. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/start_prog.htm b/help/Winfile_WebHelp/winfile_help_docs/start_prog.htm new file mode 100644 index 00000000..fb63aeee --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/start_prog.htm @@ -0,0 +1,244 @@ + + + + + To start a program + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To start a program

+

+ Double-click the program file or document file.

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/stylesheet.css b/help/Winfile_WebHelp/winfile_help_docs/stylesheet.css new file mode 100644 index 00000000..df418c25 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/stylesheet.css @@ -0,0 +1,73 @@ +.calibre { + background: #FFF; + background-color: #FFF; + display: block; + font-family: Verdana, Arial, Helvetica, MS Sans Serif; + font-size: 1em; + margin-bottom: 0; + margin-left: 5pt; + margin-right: 5pt; + margin-top: 0; + padding-left: 0; + padding-right: 0 + } +.calibre1 { + display: block; + margin-bottom: 0.6em; + margin-left: 0; + margin-right: 0; + margin-top: 0.6em + } +.calibre2 { + font-weight: bold + } +.calibre3 { + display: block; + list-style-type: disc; + margin-bottom: 0; + margin-left: 0; + margin-right: 0; + margin-top: 0.6em + } +.calibre4 { + display: list-item; + margin-bottom: 0.7em; + margin-left: -2em + } +.calibre5 { + display: block; + list-style-image: none; + list-style-position: outside; + list-style-type: disc; + margin-bottom: 0; + margin-left: 0; + margin-right: 0; + margin-top: 0.6em + } +.calibre6 { + display: block; + list-style-type: decimal; + margin-bottom: 0; + margin-left: 4em; + margin-right: 0; + margin-top: 0.6em + } +.calibre7 { + height: auto; + width: auto + } +.calibre8 { + font-size: 0.75em + } +.calibre9 { + display: none + } +.pcalibre:visited { + color: #969 + } +.pcalibre2:link { + color: #00C + } +.pcalibre1:active { + color: #969 + } diff --git a/help/Winfile_WebHelp/winfile_help_docs/update_dirwindow.htm b/help/Winfile_WebHelp/winfile_help_docs/update_dirwindow.htm new file mode 100644 index 00000000..d94cde57 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/update_dirwindow.htm @@ -0,0 +1,244 @@ + + + + + To update a folder window + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To update a folder window

+

+ On the Window menu, click Refresh.

+ + + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/volume_label.htm b/help/Winfile_WebHelp/winfile_help_docs/volume_label.htm new file mode 100644 index 00000000..1bbd5f1f --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/volume_label.htm @@ -0,0 +1,255 @@ + + + + + To assign or change a volume label + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+To assign or change a volume label +

    +
  1. +Insert a disk in a drive.
  2. +
  3. +Click the drive icon for the disk you want to label.
  4. +
  5. +On the Disk menu, click Label Disk.
  6. +
  7. +Type the label you want to assign to the disk, and then click OK.
  8. +
+Note +
    +
  • For more information, click Help while using the dialog box.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/windows_fm_wfw_diffs.htm b/help/Winfile_WebHelp/winfile_help_docs/windows_fm_wfw_diffs.htm new file mode 100644 index 00000000..f241092a --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/windows_fm_wfw_diffs.htm @@ -0,0 +1,244 @@ + + + + + Differences from Windows for Workgroups + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+Differences from Windows for Workgroups +

  • New-style icons are used for files. +
  • You no longer can drag a file from File Manager to print it.
      +

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + + diff --git a/help/Winfile_WebHelp/winfile_help_docs/windows_fm_win_diffs.htm b/help/Winfile_WebHelp/winfile_help_docs/windows_fm_win_diffs.htm new file mode 100644 index 00000000..2abb44a2 --- /dev/null +++ b/help/Winfile_WebHelp/winfile_help_docs/windows_fm_win_diffs.htm @@ -0,0 +1,247 @@ + + + + + Differences from Windows 3.x + + + + + + + + + + + + +
+
+ + + +

+ File Manager Help + +

+ + + +
+
+ Unknown + +
+
+ +
+ +
+ +
+ + previous page + + + + next page + +
+ + + +

+Differences from Windows 3.x +

    +
  • A toolbar helps you perform common tasks more quickly. +
  • Commands on the Disk menu make it easy to connect to and disconnect from network drives. +
  • New-style icons are used for files. +
  • You no longer can drag a file from File Manager to print it.
+

+ + +
+ + +
+

Table of contents

+
+ +
+ + +
+ + +
+ + previous page + + + start + + + next page + +
+ +
+ + +