| 1. |
Solve : cant read old documents in my old hard drive? |
|
Answer» please help I have tried all I know to OPEN my old drive on my new computer I can bring up everything, all the pictures are good and the same but all my documents are symbols, not words. I tried to open with wordpad but they were created on word and it doesnt GIVE me that choice ene though i have word on this new one i hope that isnt too confusingLaunch WORD and use the File menu Open etc to select your file and Open the document. Hi "Open With" data is part of file association data, but it definitely is a bit convoluted. Thankfully, I recently added the ability to enumerate the items that would appear in the menu from my File library. Basically, it all starts in the key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\" within the OpenWithProgIDs and OpenWithList Keys there (if present) For OpenWithList, the key is the "MRUList" key, which stores a character sequence. the other values in the key are loaded into the Open with menu in alphabetic order. The Application Executable names are easily converted to full names of the program with some calls to the version API- this is what my program does, and I believe explorer does this as well. The "OpenWithProgIDs" entry lists other "ProgIDs" that need to be consulted. for example, with a default Windows install, a .txt file's "progID" is "txtfile". the default value of the "extension" key, such as HKEY_CLASSES_ROOT\.txt, will have a default value set to that extensions progID. so HKEY_CLASSES_ROOT\txtfile can contain all the relevant shell extensions and association data for any number of different files- such as if HKEY_CLASSES_ROOT\.log had a default value of txtfile, it's association data would become txtfile. It's a long and convoluted process, since there are often a number of entries here, but the end result can be pretty neat, with a few tricks with VERSION and the extraction of the program icons: In this case, I have selected JPG files. Alan, I'm glad you don't have a problem with your system. That's great! Unfortunately many folks do have this kind of problem. In that case I proposed a solution that has worked many times for me. And you are right, sometimes it doesn't work. Thank kpac Alan <>< |
|