我有一個EXCEL片witgh各種未說明的標識符
C:\ Documents和Settings \ DELFI \ MilkDataMgr \ FtsExcel.pas(2056):未聲明的標識符:smrBgm167GallonsGrosssDA'
procedure convertXSLToDelfi(fuel: TFtsFuelTypes; const prefix: string);
var
ColumnNameMap : TStrings;
i : Integer;
other : string;
begin
{ ColumnNameMap := TStrings; }
ColumnNameMap := TStringList.Create;
ColumnNameMap.Values['smrBgm229GallonsGross']:=' smrBgm167GallonsGrosssDA';
i := ColumnNameMap.IndexOfName(smrBgm229GallonsGross);
if i >= 0 then
smrBgm229GallonsGross:= ColumnNameMap.Values[smrBgm229GallonsGross]
else
smrBgm229GallonsGross:= smrBgm229GallonsGross;
end;
詳細的問題是在這個鏈接,我folowed提供的解決方案 how to create Delphi 4 structure to map column names in XLS to column names in SQL
我只是撿線程好心幫我。
一個Excel工作表與各種*什麼*?這個問題真的是關於一個未聲明的標識符嗎?如果是這樣,這裏的代碼與錯誤有什麼關係?請複製並粘貼顯示錯誤的代碼。 –