このエラーが発生し続けます。私FGetZoneData
が持っている:
var
SelectedDept: String;
implementation
procedure TFGetZoneDept.GetClick1(Sender: TObject);
var
azone: string;
adept: string;
bstats,
bname,
btop,
bleft,
bnumber,
basset: string;
machine : TMachine;
begin
fdb.count := 0; //keeps track of number of machines in zone
azone := Combobox1.Text; //gets name of zone
adept := TfDB.GetDeptDBName(SelectedDept); //gets name of dept from a function
fdeptlayout.ListBox1.Clear;
end;
そしてTFdB
、パブリックで宣言された関数があります:
public
Function GetDeptDBName(name :string):String;
end;
なぜこれがうまくいかないのでしょうか?