当然可以啊,判断一下caption的内容,根据它执行不同的方法
if button1.caption = '添加' then
******
else if button1.caption = '更新'then
******
end;
可在Button的OnClick事件中添加如下代码:
if (Sender as TButton).Caption='添加' then
begin
//此处为插入数据的代码
end
else if (Sender as TButton).Caption='更新' then
begin
//此处为更新数据的代码
end
else
Showmessage('按钮标题不正确,请检查修正');
完全可以的,先判断一下button的caption值就可以了