主题:求助。。。
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
typedef void(*pShowMsg)(void);
HINSTANCE hDLL;
pShowMsg ShowMeg;
hDLL=LoadLibrary("BinaryDll.dll");
ShowMeg=(pShowMsg)GetProcAddress(hDLL,"ShowMesBox");
ShowMeg();
::FreeLibrary(hDLL);
return 0;
}
用VB怎么实现上面过程。。。
#include <windows.h>
using namespace std;
int main()
{
typedef void(*pShowMsg)(void);
HINSTANCE hDLL;
pShowMsg ShowMeg;
hDLL=LoadLibrary("BinaryDll.dll");
ShowMeg=(pShowMsg)GetProcAddress(hDLL,"ShowMesBox");
ShowMeg();
::FreeLibrary(hDLL);
return 0;
}
用VB怎么实现上面过程。。。