how can i open a file using a common dialogue instead of doing it this way:
____________________________________
Dim i As Integer
Dim temp As String
i = 0
CountAges = 0
Open "a:\data.txt" For Input As #1
i = i + 1
Input #1, Names(i), Ages(i)
CountAges = i
_________________________________
how do bring up the open dialogue box instead of accessing the file directly????
