August (2010)
S M T W T F S
1234567
891011121314
15161718192021
22232425262728
293031

September (2010)
S M T W T F S
   1234
567891011
12131415161718
19202122232425
2627282930

Windows

  The following Weblog items are filed under the Windows category. There are 4 entries in this section. The earliest was published on October 10, 2007 and the latest entry was filed on June 25, 2009. If you have any comments about Windows please let me know!

Pages:1

June 25, 2009
Outlook 2007 Shortcut

When typing an email using Outlook 2007 if you click the Alt key you'll see some bubbles appear in the header menu. These are guides to which key to press to perform that action. For example, Alt-1 would save the email. If I type in H,N,O,P additional short cuts will show for that area.

Some useful short cuts:

ALT-H-AF Insert File
ALT-N-P Insert Picture
ALT-P-B Show BCC field
Alt-H-I Highlight
Alt-H-S-R Dictionary


 Redbullet Filed under the "Windows" category. The direct link to this blog entry is here.

May 13, 2009
ADODB.Connection error '800a0e7a'

If you are getting the following error when try to run as ASP code:

ADODB.Connection error '800a0e7a'
Provider cannot be found. It may not be properly installed.
/inc/require.asp, line 184 

The code on Line 184 references opening a Microsoft Access Driver:

s = "PROVIDER=MSDASQL;DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("db/rcf.mdb") & ";"

The reason you are getting this error is because Microsoft hasn't made a 64 bit driver for Access. You best solution is to try running the ASP code in a non 64 bit environment. (i.e Install it on another machine.) Sorry for the bad news, but this will stop you from spending hours searching for a solution that doesn't exist.

 Redbullet Filed under the "Windows" category. The direct link to this blog entry is here.

March 19, 2009
ASP .NET Issue

This morning I was trying to create a short cut of a directory that contains .NET code and being severed by IIS. However, I accidentally moved the directory to the desktop. When I moved it back users were seeing: "Failed to start monitoring directory changes"

I worked with one of my co-workers into finding the problem. We restarted IIS, that didn't work, we deleted the entire directory and reloaded the SVN version via TortoiseSVN but that didn't work. We finally found the solution on Microsofts Help and Support site. The problem was the directory lost a permission that it needed.

I hope this helps someone else who might encounter the same problem!

 Redbullet Filed under the "Windows" category. The direct link to this blog entry is here.

October 10, 2007
Programmers File Editor Replacement

For years I would use PFE (Programmers File Editor) to write my code, even thou the application is no longer supported. I have a zip version that I put on my laptop and on my website so that I would always have it available. The application doesn't work that well under Windows 2000+, but for most features its fine. You really can't be the price.

I have recently moved on to NotePad++ as a replacement. The application is also free and it pretty much does everything that I want a text editor to do: Ability to open up multiple documents, show line numbers and a quick search and replace.

My all time favorite editor on the Windows platform is Homesite. I used that alot when it first came out and then when Macromedia purchased it and integrated it to Dreamweaver. Dreamweaver allows to you create a setup a custom tab to have the buttons that a developer may need for a particular project.

 Redbullet Filed under the "Windows" category. The direct link to this blog entry is here.