标题:CommonDialog问题
取消只看楼主
ouzhiguang
Rank: 1
来 自:湖南长沙
等 级:新手上路
威 望:1
帖 子:240
专家分:0
注 册:2007-5-18
 问题点数:0 回复次数:1 
CommonDialog问题
Private Sub Command3_Click()
Dim strfilename As String
Dim filenum
CommonDialog2.Filter = "文本文件(*.txt)|*.txt"
CommonDialog2.FilterIndex = 1
CommonDialog2.ShowSave
strfilename = CommonDialog2.FileName
filenum = FreeFile
If strfilename <> "" Then
Open strfilename For Output As filenum
Print #filenum, Text1.Text
Close filenum
End If
End Sub
请问我这里有错误吗?
为什么保存老是不显示后缀名?
如我保存为:123
保存结果就应该为123.txt
搜索更多相关主题的帖子: CommonDialog filenum strfilename txt 
2007-06-23 20:38
ouzhiguang
Rank: 1
来 自:湖南长沙
等 级:新手上路
威 望:1
帖 子:240
专家分:0
注 册:2007-5-18
得分:0 
谢谢 上楼的办法...
还有个问题就是...如果保存的有重名的txt文件,为什么系统没提示,直接就把
已经存在的txt文件 覆盖掉了呢?
2007-06-23 22:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-149787-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017210 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved