Chinaunix首页 | 论坛 | 博客
  • 博客访问: 35157
  • 博文数量: 55
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 500
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-23 14:08
文章分类

全部博文(55)

文章存档

2024年(11)

2023年(22)

2022年(22)

我的朋友

分类: Windows平台

2024-06-21 14:36:05

On Error Resume Next

If MSHFlexGrid1.TextMatrix(1, 1) = "" Then
    MsgBox "无记录可导出", 0 + vbExclamation, "提示"
    Exit Sub
Else


    Dim strTemp As String
    Dim i As Integer, j As Integer
    strTemp = ""
    For i = 1 To MSHFlexGrid1.Rows - 1
    For j = 1 To MSHFlexGrid1.Cols - 1
    strTemp = strTemp & CStr(MSHFlexGrid1.TextMatrix(i, j)) & vbTab
    Next j
    strTemp = strTemp & vbCrLf
    Next i
    
    CommonDialog1.Filter = "文本文档(*.txt)|*.txt|所有文件(*.*)|*.*"
    CommonDialog1.ShowSave
    filename = CommonDialog1.filename
    Open filename For Output As #1
    Print #1, strTemp
    Close #1


End If
阅读(167) | 评论(0) | 转发(0) |
0

上一篇:pciide-BAD

下一篇:判断文件是否存在

给主人留下些什么吧!~~