S
SP229
Unregistered / Unconfirmed
GUEST, unregistred user!
在DELPHI园地下载了一个BusinessSkinForm汉化版.[DelphiFans.com]控件
使用出现问题!
在窗体上放一个bsSkinListBox1和一个bsSkinEdit1
procedure TFrmSRXX.bsSkinListBox1Click(Sender: TObject);
var
i: integer;
begin
for i:=0 to bsSkinListBox1.Items.Count-1 do
if bsSkinListBox1.Selected then
begin
bsSkinEdit1.Text:=copy(bsSkinListBox1.Items.Strings,9,length(bsSkinListBox1.Items.Strings)-8);
end;
end;
bsSkinEdit1中没有任何东西!
如果在窗体上放一个TEdit和一个TListBox控件使用下面事件就有反应!
procedure TFrmSRXX.LBoxClick(Sender: TObject);
var
i: integer;
begin
for i:=0 to LBox.Items.Count-1 do
if LBox.Selected then
begin
edtName.Text:=copy(LBox.Items.Strings,9,length(LBox.Items.Strings)-8);
end;
end;
使用出现问题!
在窗体上放一个bsSkinListBox1和一个bsSkinEdit1
procedure TFrmSRXX.bsSkinListBox1Click(Sender: TObject);
var
i: integer;
begin
for i:=0 to bsSkinListBox1.Items.Count-1 do
if bsSkinListBox1.Selected then
begin
bsSkinEdit1.Text:=copy(bsSkinListBox1.Items.Strings,9,length(bsSkinListBox1.Items.Strings)-8);
end;
end;
bsSkinEdit1中没有任何东西!
如果在窗体上放一个TEdit和一个TListBox控件使用下面事件就有反应!
procedure TFrmSRXX.LBoxClick(Sender: TObject);
var
i: integer;
begin
for i:=0 to LBox.Items.Count-1 do
if LBox.Selected then
begin
edtName.Text:=copy(LBox.Items.Strings,9,length(LBox.Items.Strings)-8);
end;
end;