Prev: Word 2003
Next: Showing a fraction in Word
From: Peter T. Daniels on 22 May 2010 21:58 Your arrow key or the combination Shift-Left Arrow must have been assigned to some different command. The arrow keys normally do not do anything but move the cursor. (You're not pressing Backspace, are you, which also shows a left-pointing arrow on the keytop?) If your password is written out where anyone can view it, it's not much of a password. On May 22, 9:17 pm, Brian <abb1...(a)live.com.(donotspam)> wrote: > When I do that it erases the word. What is wrong with having a file with my > passwords listed? I have about 300 passwords. Should I write them on my hand? > -- > Brian > Kansas City > > > > "Peter T. Daniels" wrote: > > Well, you can Shift+Left Arrow to deselect each space.-
From: Graham Mayor on 23 May 2010 02:10 I don't see what Lotus Pro has to do with the different behaviour of Word. They are entirely different applications. However while it is not a particularly good idea to store your passwords in a document - there are plenty of password management applications around that would be more secure - you can address your immediate problem with a macro. Add the following macro to a toolbar button and use it to copy your password to the clipboard. It will eliminate any following spaces or paragraph mark (which would also be selected if you double click the last word in a paragraph) from your double click selection. Sub MyCopy() Dim oRng As Range If Len(Selection.Range) > 1 Then Set oRng = Selection.Range Do While oRng.Characters.Last = Chr(32) Or _ oRng.Characters.Last = Chr(13) oRng.End = oRng.End - 1 Loop oRng.Copy Else MsgBox "Select the text first!" End If End Sub http://www.gmayor.com/installing_macro.htm -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> "Brian" <abb1825(a)live.com.(donotspam)> wrote in message news:30D03F94-206F-49BB-AF0A-07BB990A87F9(a)microsoft.com... > So there is no way around this problem (did you read my initial post?)? It > seems weird to me that it wouldnt just pick up what Im double clicking on, > as > it has always done, for years, using my Lotus Word Pro, which I can no > longer > use as it is not supported by Win-7. I copy/paste Passwords all day every > day, so this is a big hassle for me, as a new Word user. I guess I will > [amazingly] have to put a 'period' after each of my passwords, so I can > [double-click] copy/paste. > -- > Brian > Kansas City > > > "Doug Robbins - Word MVP" wrote: > >> The double click will always pick up the space(s) after a word unless it >> is >> immediately followed by a punctation mark. >> >> -- >> Hope this helps. >> >> Please reply to the newsgroup unless you wish to avail yourself of my >> services on a paid consulting basis. >
From: Brian on 23 May 2010 22:41 Im sorry, you are correct, Shift-LeftArrow does move the highlighting back one-space at a time, I mis-interpreted your message as Shift-LeftTab. Thanks for the tip. Ive also found that my idea of a 'period' at the end of the password works pretty good for quick double-click copy also. How else would a person keep track of hundreds of passwords, if they didnt write them down in an alphabetical order? No one else has access to my computer, unless they can access it some way that I am not aware of. -- Brian Kansas City "Peter T. Daniels" wrote: > Your arrow key or the combination Shift-Left Arrow must have been > assigned to some different command. The arrow keys normally do not do > anything but move the cursor. (You're not pressing Backspace, are you, > which also shows a left-pointing arrow on the keytop?) > > If your password is written out where anyone can view it, it's not > much of a password.
From: Peter T. Daniels on 23 May 2010 23:49
Maybe someone who uses hundreds of passwords can share how they deal with them! On May 23, 10:41 pm, Brian <abb1...(a)live.com.(donotspam)> wrote: > Im sorry, you are correct, Shift-LeftArrow does move the highlighting back > one-space at a time, I mis-interpreted your message as Shift-LeftTab. Thanks > for the tip. Ive also found that my idea of a 'period' at the end of the > password works pretty good for quick double-click copy also. > > How else would a person keep track of hundreds of passwords, if they didnt > write them down in an alphabetical order? No one else has access to my > computer, unless they can access it some way that I am not aware of. > -- > Brian > Kansas City > > > > "Peter T. Daniels" wrote: > > Your arrow key or the combination Shift-Left Arrow must have been > > assigned to some different command. The arrow keys normally do not do > > anything but move the cursor. (You're not pressing Backspace, are you, > > which also shows a left-pointing arrow on the keytop?) > > > If your password is written out where anyone can view it, it's not > > much of a password.- |