1、授权表增加一个列【不可新增】
3、到全局表BeforeAddDataRow事件判断权限
dim dr As DataRow = DataTables("授权表").Find("用户名 = '" & User.Name & "' and 表名='" & e.datatable.name & "'" )
if dr isnot nothing andalso dr("不可新增")=true then
e.Cancel = True '那么取消输入并提示用户
Messagebox.Show("没有权限新增!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
end if