说狐表是VB.NET开发,VB.NET是VS工具开发,狐表代码可以在VS调试运行?
有以下情况,如何解决:
1.因开发扩展或其他原因,要用VS来开发,调试等需要:
2.申请专利,
如何实现下面代码在VS正常运行?
Public Class 登记窗口
Private Sub AfterLoad(e as object)
'订单表的DataColChanged事件代码应设置为:
If e.DataCol.Name = "产品编号" Then
If e.NewValue Is Nothing Then
e.DataRow("品名") = Nothing
e.DataRow("型号") = Nothing
e.DataRow("规格") = Nothing
e.DataRow("单价") = Nothing
Else
Dim dr As DataRow
dr = DataTables("产品").Find("[产品编号] = '" & e.NewValue & "'")
If dr IsNot Nothing
e.DataRow("品名") = dr("品名")
e.DataRow("型号") = dr("型号")
e.DataRow("规格") = dr("规格")
e.DataRow("单价") = dr("单价")
End If
End If
End If
End Sub