A anson Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-04 #1 我想根据一个文件动态生成控件,包括控件位置,大小,颜色,类型等资料,谁能帮我设计此文件格式 控可能包括 combobox edit dbgrid label等
A anson Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-04 #2 我想根据一个文件动态生成控件,包括控件位置,大小,颜色,类型等资料,谁能帮我设计此文件格式 控可能包括 combobox edit dbgrid label等
M muhx Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-04 #3 文件使用INI文件 比如 var tmpCB: TCombobox; tmpFile: TINIFile; begin tmpCB := TCombobox.Create(Application); try tmpCB.Parent := Self;//Self是窗体 tmpCB.Height := tmpFile.ReadInteger('Position', 'Height', 0); ......... end;
文件使用INI文件 比如 var tmpCB: TCombobox; tmpFile: TINIFile; begin tmpCB := TCombobox.Create(Application); try tmpCB.Parent := Self;//Self是窗体 tmpCB.Height := tmpFile.ReadInteger('Position', 'Height', 0); ......... end;