<html><body>
<DIV>Jeff: You can try couple of things:</DIV>
<DIV> </DIV>
<DIV>I did not see what "knotCounter" is from your sample code. The 2nd Parameter to SHPWriteObject expects a integer which points to the position of existing shape or you have to pass -1 (negative one) for creating a new shape. </DIV>
<DIV> </DIV>
<DIV>   -> nObject = SHPWriteObject( hShape, -1 , phObject );</DIV>
<DIV> </DIV>
<DIV>Are you doing dynamic library load using Load Library or you are doing static linking with the shape lib source file? Make sure the SHPWriteObject method is exported and it must exist in the .EXP file. </DIV>
<DIV> </DIV>
<DIV>
<DIV>If your SHPWriteObject is throwing Access violation, its probably because one of the paramter to this method may not be valid or may be pointing to bad memory loc. </DIV>
<DIV> </DIV>
<DIV>Did you Assert the following? </DIV>
<DIV>1. phObject is it a Pointer to SHPObject ?</DIV>
<DIV>2. is hShape Valid ? </DIV></DIV>
<DIV> </DIV>
<DIV>Thats all i can think off at this time. </DIV>
<DIV> </DIV>
<DIV>Good luck </DIV>
<DIV> </DIV>
<DIV>Mahesh </DIV>
<DIV> <BR><BR> <BR><BR>            hShape = SHPCreate( szRemotePath, SHPT_POLYGON );<BR><BR>            hDBF = DBFCreate( szRemotePath );<BR><BR> <BR><BR>            vPolygonNum.vt = VT_I4;<BR><BR>            vPolygonNum.iVal = 0;<BR><BR>            KSHAPEFILES_AddFieldsToDBFNoConnection( hDBF, nTypeInteger,<BR>vPolygonNum, nPrecision1, nNumericScale0, strPolygonNumber );<BR><BR> <BR><BR>                            phObject = SHPCreateSimpleObject(<BR>SHPT_POLYGON, knotCounter, dXPos, dYPos, dZPos );<BR><BR>//          &
nbsp;                       nObject = SHPWriteObject( hShape,<BR>knotCounter, phObject );<BR><BR>                    SHPDestroyObject( phObject );<BR><BR> <BR><BR>// Polygon Number<BR><BR>                                    vPolygonNum.iVal = nThisPolygonNum;<BR><BR>                                    KSHAPEFILES_WriteAttributeToDBF(<BR>hDBF, knotCounter, 0, nTypeInteger, vPolygonNum.iVal );<BR><BR> <BR><BR>DBFClose( hDBF );<BR><BR>SHPCl
ose( hShape );<BR><BR> <BR><BR></DIV></body></html>