注册 登录
编程论坛 Delphi论坛

delphi 路径问题,请高手指教

linanguyu 发布于 2008-04-23 15:02, 1150 次点击
procedure (Sender: TObject);
begin

if combobox2.Text='外科' then
begin
combobox3.Items.LoadFromFile('d:\外科主治医生.txt');
end
else if   combobox2.Text='内科' then
begin
combobox3.Items.LoadFromFile('d:\内科主治医生.txt');
end
else if   combobox2.Text='内科' then
begin
combobox3.Items.LoadFromFile('d:\内科主治医生.txt');
end
else if   combobox2.Text='妇产科' then
begin
combobox3.Items.LoadFromFile('d:\妇产科主治医生.txt');
end
else
begin
combobox3.Items.LoadFromFile('d:\五官科主治医生.txt');
end;
end;
我在D盘已经建了这五个txt文件,可系统总提示找不到路径
2 回复
#2
linanguyu2008-04-23 16:50
是找不到系统指定的文件,请高手指点!急!急!
#3
linanguyu2008-04-23 17:39
问题已解决,代码没错误,我建的不是txt文件,而是dos文件,所以出错。
1