VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b

by Joe Montgomery (3 Submissions)
Category: Windows System Services
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 24th January 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



On Error GoTo dialogerror
With CommonDialog1
.Filter = "all files(*.*)|*.*"
.FilterIndex = 1
.DialogTitle = "select program to open"
.ShowOpen
End With
dialogerror:

End Sub

Download this snippet    Add to My Saved Code

Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b Comments

No comments have been posted about Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b. Why not be the first to post a comment about Simple code using the Common Dialog controll in VB opens window to look at files and if you add a b.

Post your comment

Subject:
Message:
0/1000 characters