EZCheeZe Posted December 13, 2002 Posted December 13, 2002 I just cant find what the arguments for a Open File dialog are... I have an open file dialog named opnFile and when i call the event, I get () and it requires that I put in an argument of some sort. Can someone please tell me what i need to put? Quote
Moderators Robby Posted December 13, 2002 Moderators Posted December 13, 2002 Which argument do you need? What exactly do you want to do? somthing like this? Dim dlgOpen1 As New OpenFileDialog() dlgOpen1.Filter = "Text files (*.txt)|*.txt" dlgOpen1.CheckFileExists = True dlgOpen1.ShowDialog() Dim strPath As String = dlgOpen1.FileName Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.