I'm going to make simple program that dll importing/exporting

I have complete to compile the dll part and I gained a dll file and a lib file sucessfully.

but when I'm going to make the client code (importing part), a Linker error occurred like following:


Compiling...
tester.cpp
Linking...
LINK : error : Internal error during ReadSymbolTable
ExceptionCode = C0000005
ExceptionFlags = 00000000
ExceptionAddress = 00462730
NumberParameters = 00000002
ExceptionInformation[ 0] = 00000000
ExceptionInformation[ 1] = 005841D8
CONTEXT:
Eax = FFFFFFFF Esp = 0012E6B0
Ebx = 00000001 Ebp = 005839C8
Ecx = 015BE801 Esi = 00000103
Edx = 0000015B Edi = 3FFFE064
Eip = 00462730 EFlags = 00010206
SegCs = 0000001B SegDs = 00000023
SegSs = 00000023 SegEs = 00000023
SegFs = 00000038 SegGs = 00000000
Dr0 = 0012E6B0 Dr3 = 00000001
Dr1 = 005839C8 Dr6 = 015BE801
Dr2 = 00000000 Dr7 = 00000000
Error executing link.exe.
Tool execution canceled by user.


I have included the library file into the client's project, and copied the dll file into the execution directory of exe file also.

but It still occurs linker error.

please let me know why it is....