數據插入到網格我有三個記錄歸檔:如何從記錄
type
TItem = record
Item : String;
Quantity: SmallInt;
Price : Currency;
end;
我也有程序設定值到記錄:
function TForm1.SetItem(item:string;quan:SmallInt;price:Currency):TItem;
var It :TItem;
begin
It.Item :=item;
It.Quantity:= quan;
It.Price:=price;
Result :=It;
end;
現在,我需要插入一個過程記錄TItem到TStringGrid或TGrid我不知道該怎麼做。 我也有三列在我的TStringGrid:
1. col_Item :string;
2. col_Quantity :SmallInt;
3. col_Price :Currency;
每當我調用過程SetItem我需要插入到從唱片提起這三列三:
結果應該是這樣的:
ITEM | Quantity | Price
Bread 1 1,5
Coca cola 1 3
Fanta 2 3
..等等。
您的過程SetItem()是無用的。它創建一個TItem類型的記錄,用值填充它,並將其丟棄而不傳回。 – GuidoG
@GuidoG我有更新的問題。這是錯誤的。你能幫助我清楚我需要什麼嗎? – Dejan
Firemonkey應用程序? –