VC6.0调试的显示调用调试和隐式调用调试怎么用的

VC6.0调试的显示调用调试和隐式调用调试如何用的啊
好像有个什么隐式调用方法和显示调用方法好我我有个MYDLL.h文件
:extern "C" __declspec(dllexport) int sum(int a,int b);
MYDLL.cpp文件如下:
#include "MYDLL.h"
int sum(int a,int b){
    int result=a+b;
    return result;
}

------最佳解决方案--------------------
显示调用LoadLibrary(Ex)/GetProcAddress()
------其他解决方案--------------------
显示调用用:AfxLoadLibrary函数,隐式调用是把扩展名LIB的库文件在工程属性里的"连接"里加上,在工程里再包括头文件
------其他解决方案--------------------
好像只有先绑定和后绑定,
前者用#pragma comment(lib,"xxx"),放在stdafx.h里面
后者用LoadLibrary();可以放在程序代码里面
------其他解决方案--------------------
本帖最后由 VisualEleven 于 2012-12-04 13:30:52 编辑 书上的代码答案是这样的。。//隐式调用
#prama comment(lib",\\MYDLL.lib")
int m=12;
int n=8;
int result=Sum(m,n);
//显示调用 
int m=12;
int n=8;
typedef int(_cdecl *MYFunc)(int,int);
HMODULE hModule=::LoadLibray("MYDLL.dll");
MYFunc Sum=(MYFunc)GetProcAddress(hModule,"Sum");
int result=Sum(m,n);
FreeLibrary(hModule);
 
但是我不会操作!能不能给我多打几个字教下我 我刚刚碰VC