Sorry for the delay, I haven't see you post before :)
Your problem came from an error in the unit :
Line 1033 :
for i:=0 to FColumnInfoList.Count - 1 do
SetColumnDatatype( FColumnInfoList.Items[i]^.iColumn, FColumnInfoList.Items[i]^.iQNumber, );
At the end of the line, you have the lasty comma with no parameter !
It works with this fix.
TridenT
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
There is an error while 'compiling' this file with DelphiCodeToDoc
http://home.zonnet.nl/delphiro/code/deg_gef.pas
I'll try to see if I can find the reason myself but I thought I'd mention it.
Cheers,
Rob
Sorry for the delay, I haven't see you post before :)
Your problem came from an error in the unit :
Line 1033 :
for i:=0 to FColumnInfoList.Count - 1 do
SetColumnDatatype( FColumnInfoList.Items[i]^.iColumn, FColumnInfoList.Items[i]^.iQNumber, );
At the end of the line, you have the lasty comma with no parameter !
It works with this fix.
TridenT