fiogf49gjkf0d Indeed there is. In Architect you will find (just above SLX Controls, called SalesLogix Common Dialogs) an Open File Browser object. You can add this to your form (make it invisible) - you can assume the name is OpenDialog in code below. Then, you can add a button that calls this:
OpenDialog.Execute
This then invokes the file explorer. Whatever the user then selects will be in:
filefolder = OpenDialog.FileName
|