looks like a call to an array (or vector or something) is trying to reference an index that is out of range. it's probably a loop that you're running somewhere. probably just need to change something like 'for(int i = 0; i <= 40; i++)' to 'for(int i = 0; i < 40; i++)'.
you should probably compile it '-g' and running it thru gdb, but i hope that helps. On Fri, Jan 31, 2003 at 11:34:44AM -0600, John Ibarra wrote: > > Hey guys > > excuse my ignorance but I have developed an Excel application > that Unix accepts but I get this > > Run time error code 9 > subscript out of range > > error message on occassion. any ideas why???? > > need some input!!!! > > John Ibarra > BEGIN:VCARD > VERSION:2.1 > X-GWTYPE:USER > FN:John Ibarra > N:Ibarra;John > ORG:;CST-Construction Section > TEL;WORK:(512) 416-2528 > TITLE:Information Systems Analyst > TEL;PREF;FAX:(512) 416-2537 > ADR;DOM;WORK;PARCEL;POSTAL:;200 E. Riverside, Austin, TX;125 E. 11th >Street;Austin;TX;78701-2483 > LABEL;DOM;WORK;PARCEL;POSTAL;ENCODING=QUOTED-PRINTABLE:John Ibarra=0A= > 200 E. Riverside, Austin, TX=0A= > 125 E. 11th Street=0A= > Austin, TX 78701-2483 > EMAIL;WORK;PREF:JIBARRA.HQ10.RS1 > END:VCARD > _______________________________________________ Siglinux mailing list [EMAIL PROTECTED] http://www.utacm.org/mailman/listinfo/siglinux
