WinXP – Reference Tip #1
2
Sep0
Sep0
For managing user accounts, passwords and login options on WinXP, it sometimes helps to user the following:
Start --> Run --> control userpasswords2
That allows you to customize the login options (like if you want a machine to boot directly to a desktop, aka kiosk mode).
Excel/Outlook Macro Code
28
Aug1
Aug1
I needed this snippet for code today and had to search for it… hopefully I’ll remember that I documented it here for future reference. It allows you to assign a button in Excel to automatically open a new Outlook mail message and attach the workbook you’re working on:
Sub SendIt()
Application.Dialogs(xlDialogSendMail).Show arg1:="ask@mrexcel.com", _
arg2:="This goes in the subject line"
End Sub
You simply add this as a Macro module in Excel and then assign it to the button. Pretty easy, actually.