希米日志


主页 留言 友人 关于


4 0

程序代码 Private Sub Command1_Click() '以(覆盖)模式导出text     Open App.Path & "\123.txt" For Output As #1     Print #1, Text1.Text     Close #1 End Sub Private Sub Command2_Click()'以(追加)模式导出text     Open App.Path & "\123.txt" For Append As #1     Print #1, Text1.Text     Close #1 End Sub Private Sub Command3_Click()'导出list     Dim a As Integer     Dim b As String     For a = 0 To List1.ListCount - 1         b = b & List1.List(a) & vbCrLf     Next a     '-------------------------------------------整理文本     Open App.Path & "\123.txt" For Output As #1     Print #1, b     Close #1     '-------------------------------------------正式导出 End Sub


 2016-11-08 18:19:00

二维码



评论 0

正在加载验证码......

请先完成验证

所有评论均为人工审核,请勿浪费时间!

目 录




1