My Recent Documents

  • Thread starter Thread starter Brad
  • Start date Start date
B

Brad

How can I control what type of documents are listed in my "My Recent
Documents " list in Win XP Home. I would like to allow those from MS Office
but not image file extensions used by photos from my digital camera.

Thanks
 
Add this value to the edit flags for each file type in Millenium.

FTA_NoRecentDocs
0x00100000
Don't add members of this file class to the Recent Documents folder.

HKEY_CLASSES_ROOT\giffile
EditFlags=

The value in the registry is probably in the binary data format. To read
binary as a dword-
Bin 76 54 32 10
Dword 10325476 then add (in hex using windows calculator in scientific
mode) 100000 so 10325476 + 100000 = 10425476 -> in binary (byte order
reversed) 76 54 42 10
 
Back
Top