What is LoadLibrary function returns?

Answers were Sorted based on User's Feedback



What is LoadLibrary function returns?..

Answer / suresh

if succeed it returns handle to module. if fails it returns NULL

Is This Answer Correct ?    13 Yes 0 No

What is LoadLibrary function returns?..

Answer / mvs ravi kumar

HMODULE

Is This Answer Correct ?    8 Yes 0 No

What is LoadLibrary function returns?..

Answer / hargeet

HMODULE is returned .

Success : Handle to the module loaded.
NULL : If loading fails

Is This Answer Correct ?    4 Yes 0 No

What is LoadLibrary function returns?..

Answer / kishore kumar naik p

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

What is LoadLibrary function returns?..

Answer / vijaya

HINSTANCE

Is This Answer Correct ?    3 Yes 3 No

What is LoadLibrary function returns?..

Answer / sahadev tarei

Hinstance & Hmodul both

HINSTANCE OB;
HMODULE OBJ;

OB=LoadLibrary(Path)
or
OBJ=LoadLibrary(Path)

Is This Answer Correct ?    1 Yes 4 No

What is LoadLibrary function returns?..

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

Post New Answer

More MFC Interview Questions

1)how to Display the File Dialog Box, in MFC ?

1 Answers  


if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first

10 Answers   Siemens, Symphony,


Which MFC function is used to display output?

9 Answers   TCS,


What is userdefine Messages in MFC?

1 Answers   HCL,


how to repaint when working with horizontal scroll bar

0 Answers  






Which CPrintInfo member variable must be set for multiple page printouts?

1 Answers  


what if we provide two message handler for same message ?

1 Answers  


What is document-view architecture ? Give me one real time example for SDI ?

2 Answers  


How do you change the properties for a tree view control that is part of the CTreeView class?

1 Answers  


Explain the flow of SDI application?

8 Answers   Mphasis,


Tell me the work of HTREDUCE and HTZOOM

1 Answers   E Logic,


what is message Testing ?

1 Answers   L&T,


Categories