home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 November
/
pcwk_11_98B.iso
/
Lotus
/
SPANISH
/
LOTUS027.DSK
/
COMMDLG.TPL
< prev
next >
Wrap
Text File
|
1995-08-24
|
576b
|
20 lines
REM Common File Open/Save Example
REM
REM This script illustrates using the common file
REM dialog box for the current operating system.
REM Initialize the dialog box
Dim commonDlg As LWPCommonDialog
Set commonDlg = Bind("")
REM Fill in defaults
commonDlg.Filter = "Text|*.*|Ami Pro|*.sam" ' List of filters
commonDlg.Text = "Abrir archivo com·n" ' Caption
commonDlg.FilterIndex = 1 ' Filter to show initially
commonDlg.Type = 2
commonDlg.InitDir = "d:\" ' Starting directory
commonDlg.Show(0)
Print commonDlg.FileName