View Single Post
  #2  
Old 02-23-2003, 09:33 AM
Windcatcher
Demi-God
 
Join Date: Jan 2002
Posts: 1,175
Default

AHHHHHHH! Found it! I was sctatching my had at this one for a while...

I := StrToIntDef(Copy(St,3,3),0);

This should be:

I := StrToIntDef(Copy(St,3,Length(St)),0);

It's in the code that reads it back from the DB. Ok, expect a new version shortly...

WC
Reply With Quote