1、修改资料的输入框绑定到窗口表:
http://www.foxtable.com/help/topics/2311.htm
2、新增按钮:
Dim wbl As WinForm.Table = e.Form.Controls("Table1")
Dim tbl As Table = wbl.Table
tbl.Addnew()
Forms("修改资料").open()
3、修改按钮
Forms("修改资料").open()
4、删除按钮:
Dim wbl As WinForm.Table = e.Form.Controls("Table1")
Dim tbl As Table = wbl.Table
If tbl.Current Isnot Nothing Then
tbl.Current.Delete()
End if
如果看帮助有困难,可以先看视频教程:
http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&Id=67187