我在EVC4.0中的对话框模板中添加了3个按钮,分别实现添加,删除,修改的功能,但是我不知道EVC实现这些功能的函数和代码!求高手们给个详细的代码,万分感谢!!以下是通过按钮产生的代码,向其中怎么添加呢??
void Show::OnAdd() 
{
UpdateData (TRUE);

UpdateData (FALSE);
// TODO: Add your control notification handler code here

}void Show::OnDelete() 
{
UpdateData (TRUE);

UpdateData (FALSE);
// TODO: Add your control notification handler code here

}void Show::OnRevise() 
{
UpdateData (TRUE);

UpdateData (FALSE);
// TODO: Add your control notification handler code here

}