vb 选择文件 获取文件路径
发布网友
发布时间:2022-04-27 02:58
我来回答
共1个回答
热心网友
时间:2022-06-25 03:59
首先在窗体中放置
Microsoft
Common
Dialog
Control,名称指定为
cdlg1。
然后放一个按钮,代码如下:
Private
Sub
Command1_Click()
Dim
fname
As
String
Dim
content
As
String
cdlg1.ShowOpen
fname
=
cdlg1.FileName
MsgBox
fname
Open
fname
For
Input
As
#1
Input
#1,
content
MsgBox
content
Close
#1
End
Sub