• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Does anybody know of a file to open .DLL's?

palad

Golden Member
I'm looking for a utility that will open .dll files for viewing/editing. Something simple. What made me think of it was that our proxy was down for a few minutes, and I got that wonderful 'The page cannot be displayed' message. If you reload the page after that, and if it is still unavailable, it lists the source in the title bar as c:\windows\system\shdoclc.dll/dnserror.htm. How can I edit this .dll file and, more specifically, get to the embedded .htm file?
 
I dont think you can edit dlls like that, well atleast not very good...dlls are compiled files, im pretty sure u wont just find that url inside the dll...
 
I don't think you really want to be messing with editing .dll files. These are normaly dynamically linked and loaded executables, so editing them is a little bit more than just typing in stuff to replace what is there. Generally if you edit any code that will be executed, you need to keep the size the same or you will get segment faults and other things when executing the code.

If you still want to do editing of the .DLL file, don't touch anything that does not look like text because it is likely executable code. Open the file with a hex editor and find the place where the data code that contains the .html stuff is. If you find it and for every character that is present, replace it with something else, then you should be fine. If there are extra characters, you will need to leave spaces in their place to keep the size the same and you usually can't add extra characters without more experience on how to modify other areas of the .DLL.
 
Back
Top