In Excel, I tried to add a Common DIalog Box (to select files).
In Design Mode, I opened a new User Form and added a Commom DIalog Box.
In code, I entered the name of the Dialog Box and added : .ShowOpen
I tried to degub (F8) the code. The Dialog Box doesn't appear.
PHP Code:
Option Explicit
Private Sub frmChoose_load() 'This is the Form on which I loaded the Common Dialog Box
cdbFileChoose.ShowOpen 'This is the Common Dialog Box I wish to see
End Sub
Bookmarks