Excel Fun
I made a copy and paste button for the "master password" I use at work. This way, when I sign in to various programs, I don't have to type every time. Here is the VBA code:
Sub Copy()
Range("B2").Select
Selection.Copy
End Sub
I can send you the excel if needed :) Just put your password in Cell B2 and use it daily. Be sure to hide your password from the sight of others by making the font and fill the same color.