Hi all.<div><br></div><div>I find the error....</div><div><br></div><div>I not attach dbfopen.cpp into the project.... ;)</div><div><br></div><div>Thanks a lot!!</div><div><br></div><div><br><br><div class="gmail_quote">El 18 de abril de 2012 14:00,  <span dir="ltr">&lt;<a href="mailto:shapelib-request@lists.maptools.org">shapelib-request@lists.maptools.org</a>&gt;</span> escribió:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send Shapelib mailing list submissions to<br>
        <a href="mailto:shapelib@lists.maptools.org">shapelib@lists.maptools.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.maptools.org/mailman/listinfo/shapelib" target="_blank">http://lists.maptools.org/mailman/listinfo/shapelib</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:shapelib-request@lists.maptools.org">shapelib-request@lists.maptools.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:shapelib-owner@lists.maptools.org">shapelib-owner@lists.maptools.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Shapelib digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Dialog based application in UNICODE and VC++ (VS2010)<br>
      (Juan Antonio Pastor)<br>
   2. Re: Dialog based application in UNICODE and VC++ (VS2010)<br>
      (Sjur Kolberg)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 18 Apr 2012 12:04:46 +0200<br>
From: Juan Antonio Pastor &lt;<a href="mailto:juanpastjim@gmail.com">juanpastjim@gmail.com</a>&gt;<br>
Subject: [Shapelib] Dialog based application in UNICODE and VC++<br>
        (VS2010)<br>
To: <a href="mailto:Shapelib@lists.maptools.org">Shapelib@lists.maptools.org</a><br>
Message-ID:<br>
        &lt;CAEam2R4jgLDeG7xv0Na-ZYsN+ijzE6TLD=<a href="mailto:A53Za84yDSYY-8Cg@mail.gmail.com">A53Za84yDSYY-8Cg@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi.<br>
<br>
I&#39;m working in a dialog based vc++ application (VS2010). I set unicode<br>
option in the compiler settings. I added aes.h, shapefil.h and shpopen.cpp<br>
in the project.When the application is compiled we get errors like these:<br>
<br>
error LNK2019: unresolved external symbol _DBFClose referenced in function<br>
&quot;public: void __thiscall CClass::Function(void)&quot;<br>
error LNK2019: unresolved external symbol _DBFOpen referenced in function<br>
&quot;public: void __thiscall CClass::Function(void)&quot;<br>
<br>
In CClass.cpp I added:<br>
<br>
#include &quot;aes.h&quot;<br>
#include &quot;shapefil.h&quot;<br>
<br>
I don&#39;t know how configure the project to use shapelib API.<br>
<br>
Any information is apreciated.<br>
<br>
Best regards, To?o.<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.maptools.org/pipermail/shapelib/attachments/20120418/daa4948f/attachment.html" target="_blank">http://lists.maptools.org/pipermail/shapelib/attachments/20120418/daa4948f/attachment.html</a><br>

<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Wed, 18 Apr 2012 15:02:28 +0200<br>
From: Sjur Kolberg &lt;<a href="mailto:Sjur.A.Kolberg@sintef.no">Sjur.A.Kolberg@sintef.no</a>&gt;<br>
Subject: Re: [Shapelib] Dialog based application in UNICODE and VC++<br>
        (VS2010)<br>
To: Shapelib Development &lt;<a href="mailto:shapelib@lists.maptools.org">shapelib@lists.maptools.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:72251B925CE10A478606EEAC6AA683BE59F99F55FD@SINTEFEXMBX01.sintef.no">72251B925CE10A478606EEAC6AA683BE59F99F55FD@SINTEFEXMBX01.sintef.no</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
The unresolved external error is a linker error, meaning that it is the .lib file that cannot be found. Your #includes are well recognised (since you didn&#39;t get compilation errors) but those only look for .h files.<br>

<br>
You need to ensure that Visual Studio can find Shapelib.lib, or whatever it&#39;s called.<br>
<br>
If you use the IDE, go to Project properties, Linker, Input, Additional dependencies, and add the necessary lib file name. Also, under Linker, General, Additional Library Directories, add the folder where the lib file resides.<br>

<br>
Also, if Shapelib is a dynamic library, you need to ensure that Shapelib.dll (or similar) resides together with you executable.<br>
<br>
Good luck,<br>
<br>
Sjur K :-)<br>
<br>
<br>
<br>
<br>
From: <a href="mailto:shapelib-bounces@lists.maptools.org">shapelib-bounces@lists.maptools.org</a> [mailto:<a href="mailto:shapelib-bounces@lists.maptools.org">shapelib-bounces@lists.maptools.org</a>] On Behalf Of Juan Antonio Pastor<br>

Sent: 18. april 2012 12:05<br>
To: <a href="mailto:Shapelib@lists.maptools.org">Shapelib@lists.maptools.org</a><br>
Subject: [Shapelib] Dialog based application in UNICODE and VC++ (VS2010)<br>
<br>
Hi.<br>
<br>
I&#39;m working in a dialog based vc++ application (VS2010). I set unicode option in the compiler settings. I added aes.h, shapefil.h and shpopen.cpp in the project.When the application is compiled we get errors like these:<br>

<br>
error LNK2019: unresolved external symbol _DBFClose referenced in function &quot;public: void __thiscall CClass::Function(void)&quot;<br>
error LNK2019: unresolved external symbol _DBFOpen referenced in function &quot;public: void __thiscall CClass::Function(void)&quot;<br>
<br>
In CClass.cpp I added:<br>
<br>
#include &quot;aes.h&quot;<br>
#include &quot;shapefil.h&quot;<br>
<br>
I don&#39;t know how configure the project to use shapelib API.<br>
<br>
Any information is apreciated.<br>
<br>
Best regards, To?o.<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.maptools.org/pipermail/shapelib/attachments/20120418/0ac7acf0/attachment-0001.htm" target="_blank">http://lists.maptools.org/pipermail/shapelib/attachments/20120418/0ac7acf0/attachment-0001.htm</a><br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
Shapelib mailing list<br>
<a href="mailto:Shapelib@lists.maptools.org">Shapelib@lists.maptools.org</a><br>
<a href="http://lists.maptools.org/mailman/listinfo/shapelib" target="_blank">http://lists.maptools.org/mailman/listinfo/shapelib</a><br>
<br>
<br>
End of Shapelib Digest, Vol 77, Issue 2<br>
***************************************<br>
</blockquote></div><br></div>