View Single Post
Old 09-16-2005, 01:43 PM   #2 (permalink)
DJMaze
Senior Contributor
 
DJMaze's Avatar
 
Join Date: Mar 2005
Posts: 735
DJMaze is on a distinguished road
nvm i'm a real ediot, i've overlooked one stupid line that crashes it completely :p

The above code works flawless there was an issue in my file reader that shifted to the next column (fColCount) to early.

Let me explain:

I read an file where i have each row on a line split with '\n' and each cell data is split with '\0'
The format of a header cell is "Title,150.0Ⓝ" and a function splits on each '\0' however where it needs to shift to the next column ('\0') it uses "++col" but ++col wasn't called on '\0' but right after title.
DJMaze is offline   Reply With Quote