我想在form2的一段代码中调用form1中edit1.text中内容, Delphi中listbox中内容可不可以修改
具体我是在form2中有个popupmenu,我设置了一个插入选项,我点“插入”就会form2.show,然后form2中有个edit和button,在edit中输入完内...
具体我是在form2中有个popupmenu,我设置了一个插入选项,我点“插入”就会form2.show,然后form2中有个edit和button,在edit中输入完内容后单击button,该条内容就可以插入进去了,
顺便问下 Delphi中listbox中内容可不可以修改 展开
顺便问下 Delphi中listbox中内容可不可以修改 展开
1个回答
展开全部
简单点的:
//form1
//插入
procedure TForm1.N1Click(Sender: TObject);
begin
Form2.Edit1.Text := '';
if Form2.ShowModal = mrOK then
ListBox1.Items.Add(form2.Edit1.Text);
end;
//修改
procedure TForm1.N2Click(Sender: TObject);
begin
if (ListBox1.Count > 0) and (ListBox1.ItemIndex >= 0) then
begin
Form2.Edit1.Text := ListBox1.Items[ListBox1.ItemIndex];
if Form2.ShowModal = mrOK then
ListBox1.Items[ListBox1.ItemIndex] := form2.Edit1.Text;
end;
end;
//form2:
procedure TForm2.Button1Click(Sender: TObject);
begin
ModalResult := mrOk;
end;
//form1
//插入
procedure TForm1.N1Click(Sender: TObject);
begin
Form2.Edit1.Text := '';
if Form2.ShowModal = mrOK then
ListBox1.Items.Add(form2.Edit1.Text);
end;
//修改
procedure TForm1.N2Click(Sender: TObject);
begin
if (ListBox1.Count > 0) and (ListBox1.ItemIndex >= 0) then
begin
Form2.Edit1.Text := ListBox1.Items[ListBox1.ItemIndex];
if Form2.ShowModal = mrOK then
ListBox1.Items[ListBox1.ItemIndex] := form2.Edit1.Text;
end;
end;
//form2:
procedure TForm2.Button1Click(Sender: TObject);
begin
ModalResult := mrOk;
end;
更多追问追答
追问
谢谢了 昨晚已经实现了, 又是你回答的 ,哈哈,第三题了 ,那我再补充问句,能不能在form2调用form1的adoquery1
追答
呵呵~~可以,例如Edit1.Text := form1.ADOQuery1.Fields[1].AsString;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询