What is LoadLibrary function returns?
Answers were Sorted based on User's Feedback
Answer / suresh
if succeed it returns handle to module. if fails it returns NULL
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / hargeet
HMODULE is returned .
Success : Handle to the module loaded.
NULL : If loading fails
| Is This Answer Correct ? | 4 Yes | 0 No |
HINSTANCE and HMODULE both are same. Because it is declared
as follows in windef.h
typedef HINSTANCE HMODULE;
NULL Indicates failure, otherwise a handle to the module.
| Is This Answer Correct ? | 1 Yes | 0 No |
Hinstance & Hmodul both
HINSTANCE OB;
HMODULE OBJ;
OB=LoadLibrary(Path)
or
OBJ=LoadLibrary(Path)
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / somil vijay
It resturn HINSTANCE(to the dll) if succesful in loading
the dll else return NULL.
| Is This Answer Correct ? | 0 Yes | 4 No |
What is the range of intensity of RGB
what is the meaning of constant FILE EXCEEDS LENGTH LIMIT while loading from ps file to vsam in the jcl?
Which CPrintInfo member variable must be set for multiple page printouts?
Whats is DDX & DDV in MFC?
Why not virtual functions to handle messages?
Explain about MDI and CMultiDocTemplate ?
Will there be any difference in the image buffer size if it is loaded in from CString to LPTSTR using GetBuffer()? lptstr = string.GetBuffer(0);
What is the base class for MFC Framework ?
What is socket?
What is stack size in win32 program?
What is the use of CObject::Dump function ?
i have created runtime menu -- ( admistrator ->managepackage,manage module). but now i want to open a dialog when i select manage package and any other diaolg when selecting manage module ( whole selection is at run time only ) . Please HELP .its urgently required