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

What is a critical section and how is it implemented?

2 Answers  


What view class enables you to use an edit control as a view?

1 Answers  


Tell us something about MFC?

7 Answers   Microsoft,


if i modified data in 1 view how does the other view knows

2 Answers   Siemens,


Whats is DDX & DDV in MFC?

1 Answers   HCL,


1) How do you Destroy a Dialog Box ?

2 Answers   Honeywell,


how to give colour for dialog button or static buuto?any one explain full code ?pls pls

3 Answers  


plzz tell me what we can do and dont in tally ERP & sap business one?

0 Answers  


How do I create a dialog box in mfc?

0 Answers  


Does the application have more than one object? If Yes, Briefly explain.

2 Answers   Soltius Infotech,


What is the difference between GetMessage and PeekMessage ?

3 Answers  


What is serialization ?which function is responsible for serializing data ?

5 Answers  


Categories