.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: OpenFileDialog method
This agent deletes files specified by the user through the Open dialog box.

Sub Initialize
 Dim ws As New NotesUIWorkspace
 REM Get filename from user
 filenames = ws.OpenFileDialog( _
 True, "Select files to be deleted",, "c:\work")
 If Not(Isempty(filenames)) Then
   Forall filename In filenames
     Kill filename
   End Forall
 End If
End Sub

See Also