举手之劳~请~~
怎么添加一个VB.NET模块???
例:需在一个模块中定义联系人的数据结构
指的是这样吗?:
Module Module1
Structure Contact
<VBFixedString(10)> Public Name As String
<VBFixedString(20)> Public Telephone As String
<VBFixedString(20)> Public Email As String
<VBFixedString(20)> Public Address As String
<VBFixedString(20)> Public Remark As String
End Structure
End Module]
然后怎么把模块和Form1联系到一起??
[解决办法]
这是.net么?
[解决办法]
怎么叫把模块和form联系到一块?
你在form里面调用模块里面的公共函数,或者公共变量就可以了