Board index » cppbuilder » Building My Project Crashes BCB6 IDE
Kathleen
![]() CBuilder Developer |
Building My Project Crashes BCB6 IDE2007-08-17 01:18:39 AM cppbuilder114 Help! I have a DLL project that performs look-up into a table of zip code records. This table is generated (by me) into a header file (format shown below). I seem to be having a problem with the number of records (79,672) in this table... when I try to build the project, it crashes the IDE with this error: Assertion failed: Config, file c:\src\ilink\import.cpp, line 311 When I click OK, a message box with title "bcb.exe" states "Abnormal program termination". I then enter an endless loop of crash dialogs offering to send a report to Microsoft. Windows Task Manager lets me kill the processes. I have been experimenting with commenting out huge sections of the header file, and although I haven't determined the maximum number of records that can be compiled and linked, the problem definitely appears to be one of volume. HAVE I EXCEEDED A LIMIT I SHOULD KNOW ABOUT? typedef struct { char ZipCode[6]; char CityName[29]; char CityAbbr[14]; char State[3]; char FIPS[4]; char CountyName[26]; } TZipStruct; static TZipStruct zip_objects [] = { { "00501", "HOLTSVILLE ", " ", "NY", "103", "SUFFOLK " }, // 79,670 more records go here { "99950", "KASAAN ", " ", "AK", "130", "KETCHIKAN GATEWAY" } }; Thanks for your help, Kathleen |