Question:
what programming software that can open and edit DLL files?
Avenger
2007-09-20 21:25:39 UTC
.....i meeed your answers immediately
Five answers:
2007-09-22 00:45:58 UTC
You can use Visual C++ to edit and develope Dll files.



A DLL is not meant to be read per se; DLL stands for Dynamic Link Library, and contains collections of functions, shared code and resources (small bitmap images, for example, are stored for all programs to access in Windows' shell32.dll, resident in the OS system directory). Many DLLs also contain predefined methods of communicating and interfacing with the Operating System, which makes it more efficient from a coding standpoint to separate these (possibly large) chunks of code off into their own small container file, and then address the DLL file whenever that functionality is needed.



This does mean, however, that applications can develop 'dependencies' on files, meaning they must always be there in a location the program can see, so that it will function properly - this is also why programs can stop working properly or altogether if DLL files become corrupted, are modified or are deleted... And that's also why Microsoft comes with a small utility called, simply, "sfc" (System File Checker), which will go through all the Windows DLLs and other system files, checking for corruption and prompting for replacement or restoration if it finds problematic files.



And if you have the source code and a copy of the development environment the DLL was written in (Delphi, Watcom C, or whatever), AND you know what you are doing, you would 1. make your changes, 2. Compile and link if necessary, then 3. check for satisfying whatever dependencies there are. After that, 4. you need to make sure that you have provided properly formatted inputs and outputs for the other programs that depend on this DLL.



I'd advise you dont make anything with dll files if you are not a programmer.



For more softwares to get help, download here:

http://www.download.com/3000-2352_4-10178588.html (This helps to view the resources of a dll, ocx, exe files etc..... )

http://www.mediafire.com/?9dz10dytxmy (Reshacker can help to edit exe, dll, ocx,cpl files etc...)
2015-08-07 12:01:03 UTC
This Site Might Help You.



RE:

what programming software that can open and edit DLL files?

.....i meeed your answers immediately
el
2007-09-20 21:35:11 UTC
dll can be by the program the developed it for example if you a function in vb60 in active X you can save the function in dll format and also edit it in vb60 it also applies in c++/c if you create a module in c/c++ and save it in .dll you can open and edit in c++ but you cannot open a dll file which was created in c++ and open it in vb6 i hope i,ve helped that much
Arkane Steelblade
2007-09-20 21:42:24 UTC
dll are compiled libraries, can't open them. You can import them, and use them.



you can try decompilers, but not sure, haven't tried my self, I normally create them and use them or just import them but never tried going backwards to it's source code.
2014-07-27 08:36:51 UTC
Hi,

A simple free html editor you can use is kompozer. Link here http://j.mp/1rH1QFK

Try it out

Bye Bye


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...