How to use open file dialog in VB 6?

vb6

Solution

There's some example code in this question. Quoting:

In VB6, add the component:

- Project > Components

- On the Controls tab, choose Microsoft Common Dialog Control 6.0 (SP6)

Now on your form, add the new Common Dialog control from the toolbox

In code, you need:

CommonDialog1.Filter = "Apps (*.txt)|*.txt|All files (*.*)|*.*"
CommonDialog1.DefaultExt = "txt"
CommonDialog1.DialogTitle = "Select File"
CommonDialog1.ShowOpen

'The FileName property gives you the variable you need to use
MsgBox CommonDialog1.FileName

Problem

I want to select a file from the directory or other system. How to use open file dialog in VB 6?

Original source