[Linker Error] Unresolved external 'xxxxxx' referenced from F:\xxx\xxx\xxxx.OBJ
出现这一错误的原因是链接程序没有找到函数xxxxx()的外部引用而引起的,经过查阅MSDN的资料后得知该函数需要“xxx.dll”的支持,而在BCB中却没有直接对该DLL提供相应的链接库。
解决的步骤
1. 复制文件xxx.dll到工程目录中
2. 然后进入控制台并转入工程目录后,把dll convert to lib with bcb
implib xxx.lib xxx.dll
3. Add xxx.lb into your project ,and compiles again.,,then compile ok.