
vb.net
文章平均质量分 62
iceou
这个作者很懒,什么都没留下…
展开
-
XMLDLL操作说明文档(二)
本文的操作多基于以下XML文档1、XMLDLL文档声明并格式化保存下面给出示例Dim xmlData As System.Xml.Linq.XDocument =<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.x原创 2015-11-13 22:19:41 · 346 阅读 · 0 评论 -
XMLDLL操作说明文档(一)
最近用vb.net编写了XMLDLL,提供xml文件的基本操作。现将说明文档提供如下:New()New(ByVal xmlFile As String)New(ByVal inStream As System.IO.Stream)New(ByVal txtReader As System.IO.TextReader)New(ByVal xmlReader As System原创 2015-11-13 21:27:41 · 939 阅读 · 0 评论 -
XMLDLL操作说明文档(四)
'xmltotable示例 Dim myxml1 As New mydll("d:\iceou.xml") myxml1.XMLFile_Format("d:\iceou.xml") Dim myxml As New mydll("d:\iceou.xml") Dim nt As New Xml.NameTable Dim原创 2015-12-06 17:31:07 · 375 阅读 · 0 评论 -
vb.net “已创建对嵌入的互操作程序集“stdole”的引用“警告的清除
使用了videocapx.ocx,错误列表内提示:已创建对嵌入的互操作程序集“stdole”的引用,因为程序集“Interop.VIDEOCAPXLib”间接引用了该程序集。请考虑更改其中一个程序集上的“嵌入互操作类型”属性。百度查找到解决办法:嵌入互操作类型改为FALSE原创 2016-02-17 09:34:42 · 2673 阅读 · 0 评论 -
xmldll
Dim xmlData As System.Xml.Linq.XDocument = <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://原创 2016-02-14 11:19:10 · 615 阅读 · 0 评论 -
list<T>作为datagridview的datasource
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a As New List(Of m_stru) Dim t As New m_stru("zhang", "male", "20")原创 2016-02-01 08:30:54 · 411 阅读 · 0 评论 -
vb.net下打印清单示例(连续纸和固定纸张打印)
清单按类别打印 Private Sub print_doc(ByVal sender As Object, ByVal e As PrintPageEventArgs) Dim m_arg As New drawArg(m_printArg.m_title_font, Brushes.Black, New Pen(Color.Blue, 2)) Dim m_原创 2015-12-08 11:15:22 · 1220 阅读 · 0 评论 -
XMLDLL操作说明文档(三)
''//*创建XMLDLL文档示例 'Dim m_xmldll As New XMLDLL.XMLDLL() ''m_xmldll.CreateXmlFile("d:\test1.xml", "utf-8", "Envelope", "SOAP-ENV", "", "http://schemas.xmlsoap.org/soap/envelope/")原创 2015-12-06 17:27:41 · 720 阅读 · 0 评论 -
VB.net 结构体的遍历
Structure TEmployee Dim idno As String Dim name As String Dim age As Integer Dim memo As String End Structure Private Sub Button2_Click(ByVal sender As Syst原创 2015-11-22 22:07:00 · 3224 阅读 · 1 评论 -
自动对时实现小结
一、使用windows对时①添加internet时间服务器地址单击“开始→运行”,键入“Regedit”后回车,打开注册表编辑器,依次展开HKEY_LOCAL_MACHINE/SOFT-WARE/Microsoft/Windows/CurrentVersion/DateTime/Servers分支Time.apple.comntp.sjtu.edu.cntime.pool.aliyun.com在w...原创 2018-06-11 16:23:09 · 2661 阅读 · 0 评论