Delphi combobox问题

我设置了combobox的下拉内容为1~20,第一次运行时候,比如我下拉选中7,我想下次在运行的时候combobox的默认第一个还是7,而且下拉还有1~20。请问该怎么做... 我设置了combobox的下拉内容为1~20,第一次运行时候,比如我下拉选中7,我想下次在运行的时候combobox的默认第一个还是7,而且下拉还有1~20。请问该怎么做呢?
希望能写出具体的代码!效果好的话再加 20分!谢谢!
展开
 我来答
perock
2009-11-11 · TA获得超过971个赞
知道小有建树答主
回答量:971
采纳率:50%
帮助的人:794万
展开全部
创建一个ini文件,每次更改combobox中的内容时就记录当前的ItemIndex属性写进ini文件,下次运行时读取ini中的数据为各个combobox控件的ItemIndex属性赋值就行了

代码如下:
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
ComboBox1: TComboBox;
procedure ComboBox1Change(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation
uses Inifiles;
{$R *.dfm}

procedure TForm1.ComboBox1Change(Sender: TObject);
var
ini:TInifile;
path,section,key:string;
begin
path := ExtractFilePath(application.ExeName)+'config.ini';
if FileExists(path) then
begin
ini:=Tinifile.Create(path);
Section := 'Config';
Key := 'ComboBox';
ini.WriteInteger(Section,Key,ComboBox1.ItemIndex);
end;
end;
procedure TForm1.FormCreate(Sender: TObject);
var
ini:TInifile;
path,section,key:string;
begin
path := ExtractFilePath(application.ExeName)+'config.ini';
if FileExists(path) then
begin
ini:=Tinifile.Create(path);
ComboBox1.ItemIndex := ini.ReadInteger('Config','ComboBox',0);
end;
end;

end.
wanganfuz
2009-11-10 · TA获得超过159个赞
知道答主
回答量:189
采纳率:0%
帮助的人:119万
展开全部
如果系统有数据库的话,直接在数据库里面设置
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式