Reply
 
Thread Tools Display Modes
  #1   Report Post  
 
Posts: n/a
Default Delete-to-End-of File Command

Many pre-Windows word processors and editors came with a
very convenient command that let the user delete text
from the current point of the cursor to the end of the
file. M/S Word never put this feature in. What an
oversight!

Another nice thing M/W Windows denies users is the
abililty to Find one or more words in a line. Some CP/M
utilities did this.

Are there such supplementary applications or programs
for Windows users? Thanks.

JLoui
  #2   Report Post  
Jay Freedman
 
Posts: n/a
Default

On Mon, 17 Jan 2005 16:10:13 -0800,
wrote:

Many pre-Windows word processors and editors came with a
very convenient command that let the user delete text
from the current point of the cursor to the end of the
file. M/S Word never put this feature in. What an
oversight!

Another nice thing M/W Windows denies users is the
abililty to Find one or more words in a line. Some CP/M
utilities did this.

Are there such supplementary applications or programs
for Windows users? Thanks.

JLoui


Hi JLoui

The Delete to End of Document command can be created as the following
macro (see http://www.gmayor.com/installing_macro.htm) and assigned to
a keystroke:

Public Sub DeleteToEndOfDoc()
Dim oRg As Range
Set oRg = Selection.Range
oRg.End = ActiveDocument.Range.End
oRg.Delete
Set oRg = Nothing
End Sub

You could use a wildcard search
(http://www.gmayor.com/replace_using_wildcards.htm) to find words in
the same paragraph. (Word doesn't really know what line things are in,
because layout is done on the fly.) For example, to find "fox" and
"dog" in the same paragraph, check the "Use wildcards" box in the Find
dialog and use the Find expression
fox[!^13]@dog
The portion between the words is interpreted as "one or more
characters that are not paragraph marks".

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
  #3   Report Post  
TF
 
Posts: n/a
Default

Try Control+Shift+End to select from the cursor to the end of the document.

--
Terry Farrell - Word MVP
http://word.mvps.org/

wrote in message
...
: Many pre-Windows word processors and editors came with a
: very convenient command that let the user delete text
: from the current point of the cursor to the end of the
: file. M/S Word never put this feature in. What an
: oversight!
:
: Another nice thing M/W Windows denies users is the
: abililty to Find one or more words in a line. Some CP/M
: utilities did this.
:
: Are there such supplementary applications or programs
: for Windows users? Thanks.
:
: JLoui


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Why get multiple copies of file when try to delete ucsd Microsoft Word Help 2 January 17th 05 05:07 PM
How do I delete all non matching lines in a word file? Carl Microsoft Word Help 1 January 11th 05 07:16 PM
DELETE TABS IN FILE NEW TEMPLATES Cynthia Needs Help Microsoft Word Help 1 December 9th 04 03:55 PM
missing File command Cooldep Microsoft Word Help 2 December 4th 04 11:25 AM
not responding when using the open command from the file menu Katdog Microsoft Word Help 1 December 1st 04 04:41 AM


All times are GMT +1. The time now is 05:44 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"