摘要: 同样是看英语,看完英文文献感觉英语水平有进步,但程序的帮助文档为什么就没有?看来,不管学什么,都是一个反复的过程。不懂的,看不明白的,只有反复弄明白了才会进步。所以,以后查阅的文档,把链接保存下来,关键句子,回头再消化。For conceptual information about using this namespace when programming with the .NET Frameworkhttp://msdn.microsoft.com/en-us/library/system.data.oracleclient(v=vs.80).aspx1 strC... 阅读全文
posted @ 2013-04-03 16:32 xtypeu 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 正则表达式,普通字符、元字符(metacharacter) 1 Imports System.Text.RegularExpressions 2 Module Module1 3 Public Sub Main() 4 Dim strTxt As String 5 Dim rgxExp As New System.Text.RegularExpressions.Regex("^[1-9]\d*$") 6 strTxt = "a12345" 7 Dim flag As Boolean = rgxExp.IsMatch(str... 阅读全文
posted @ 2013-04-02 16:38 xtypeu 阅读(103) 评论(0) 推荐(0) 编辑
摘要: vs调试:第一种F10调试,单步执行,不进入调用的其它函数第二种F11调试,单步执行,进入调用的其它函数运行到当前光标处:Ctrl+F10条件中断:跟踪点:进入断点时的自定义操作自定义宏:1 SubDumpLocals()2 DimoutputWindowAsEnvDTE.OutputWindow3 outputWindow=DTE.Windows.Item(EnvDTE.Constants.vsWindowKindOutput).Object4 DimcurrentStackFrameAsEnvDTE.StackFrame5 currentStackFrame=DTE.Debugger.Cu 阅读全文
posted @ 2013-04-02 11:35 xtypeu 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1、vs里面光标跳转:Ctrl+-Ctrl+Shift+-Ctrl+(Shift+)PageDnCtrl+pageUpCtrl+G 跳转到指定行Ctrl+左右光标 以单词为单位移动二、显示代码行号 工具 - 选项 - 文本编辑器 选择 对应的语言 然后把 行号 勾上Split(txtBarCode1.Text, Space(1))If strBarCode1(0).StartsWith("3N1") Then strBarCode1(0) = strBarCode1(0).Remove(0, 3)1 Dim a() As String = {"3N1", 阅读全文
posted @ 2013-04-01 13:09 xtypeu 阅读(97) 评论(0) 推荐(0) 编辑