设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 528|回复: 1
打印 上一主题 下一主题

请教

[复制链接]
跳转到指定楼层
1#
发表于 2002-12-9 18:08:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我用了CommonDialogp这个控件,用于用户选择文件,
代码如下这样写:
CommonDialog1.DialogTitle = "Open Text File"
CommonDialog1.InitDir = CurrentProject.Path
CommonDialog1.Filter = "*.txt"
CommonDialog1.DefaultExt = "txt"
CommonDialog1.CancelError = False

CommonDialog1.ShowOpen
Me.TEXTFILE = CommonDialog1.FileName
但是这样当用户选的不是文本文件时,并不会出现出错提示,告诉用户文件类型错了。
请问还用加那些代码这样才会有提示出来
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅

点击这里给我发消息

2#
发表于 2002-12-9 19:21:00 | 只看该作者
改成这样加一个判断
CommonDialog1.DialogTitle = "Open Text File"
CommonDialog1.InitDir = CurrentProject.Path
CommonDialog1.Filter = "*.txt"
CommonDialog1.DefaultExt = "txt"
CommonDialog1.CancelError = False

CommonDialog1.ShowOpen

If Right(CommonDialog1.FileName, 4) <> ".txt" Then
    Me.TEXTFILE = ""
    MsgBox "不是TXT文件"
Else
    Me.TEXTFILE = CommonDialog1.FileName
End If



[此贴子已经被zhengjialon于2002-12-9 11:21:06编辑过]

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-29 20:42 , Processed in 0.070119 second(s), 26 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表