这个意思?
Dim dlg As New OpenFileDialog '定义一个新的OpenFileDialog
dlg.Filter= "Excel文件|*.xls|Word文件|*.doc|Access文件|*.mdb" '设置筛选器
If dlg.ShowDialog = DialogResult.Ok Then '如果用户单击了确定按钮
'MessageBox.Show("你选择的是:" & dlg.FileName,"提示") '提示用户选择的文件
Dim Proc As New Process '打开文件
Proc.File = dlg.FileName
Proc.Start()
End If
还是这个意思?
Dim fl As String = ProjectPath & "Attachments\出库单.xlsx" '文件路径,默认是在程序文件目录Attachments下面
Dim Proc As New Process '打开文件
Proc.File = fl
Proc.Start()
[此贴子已经被作者于2021/6/22 13:22:02编辑过]