
VB
月亮哥
不积跬步无以至千里不积小流无以成江海骐骥一跃不能十步驽马十驾功在不舍锲而舍之朽木不折锲而不舍金石可镂 为API生为框架死为debug奋斗一辈子吃符号亏上大小写的当最后死在需求上
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
点击 VB 中 DataGrid 行 触发事件 弹出窗口 并传递 所点击行参数
如何实现点击VB中DataGrid行,触发事件弹出窗口,并传递所点击行参数:通过双击事件来实现的:Private Sub DataGrid1_DblClick() Dim frm1 As New frmNew ''定义一个窗体对象frm1,frmNew是程序中的一个窗体 Dim ActiveRow As Integer On Error Go原创 2013-08-13 10:35:29 · 5833 阅读 · 0 评论 -
VB操作EXCEL文件大全
Private Sub writeToExcel(strTmp1() As String, colTmp1 As Collection)'' Dim tmp1 Dim i1 As Integer, intCol As Integer, intRow As Integer Dim xlApp As New Excel.Application Dim xlB转载 2015-12-23 13:22:49 · 2739 阅读 · 0 评论 -
VB6.0 直接打印 PDF
Private Declare Function ShellExecuteEx Lib "shell32.dll" Alias "ShellExecuteExA" (lpExecInfo As SHELLEXECUTEINFO) As LongPrivate Type SHELLEXECUTEINFO cbSize As Long fMask As Long hw原创 2016-02-22 10:10:03 · 6385 阅读 · 3 评论 -
VB6.0 遍历文件夹 & 遍历文件夹里文件 & 拷贝文件
Public Sub Search_folder(folder As String) '遍历指定文件夹下的所有文本夹 Dim path Dim filename Dim folders(1 To 20000) Dim i%, j% i = 1 j = 1 '...原创 2018-09-06 15:23:12 · 8129 阅读 · 3 评论