Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What does rundll32.exe do?

Status
Not open for further replies.

aclayborne

Programmer
May 3, 2000
49
US
What does rundll32.exe do and what type of dlls work with it. I have a SDK that requires me to register the dll's with this command:
("RUNDLL32.EXE xxxx.DLL,Install /NOUI", 1)
The OCX file associated with the dll won't run properly if I simply try to register the dlls.
Is there anyway to access the code in xxx.DLL so I can see what actually being done.
 
RUNDLL32 and RUNDLL (only available on win9x and ME OSs) are designed to help test some DLLs. It provides the EXE that a DLL can link to and can be used to call exported functions. The DLLs have to be writen with RUNDLL in mind, ie they must be writen to support that functionality.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top