Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b
Simple code using the Common Dialog controll in VB opens window to look at files and if you add a bit more code you could make it into a thing
API Declarations
'put this under a command button or somthing...
Rate Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b
(1(1 Vote))
On Error GoTo dialogerror
With CommonDialog1
.Filter = "all files(*.*)|*.*"
.FilterIndex = 1
.DialogTitle = "select program to open"
.ShowOpen
End With
dialogerror:
End Sub
Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b Comments
No comments yet — be the first to post one!
Post a Comment