vote up 3 vote down star
1

You can use

SelectFolder() to get a folder

or

GetOpenFolderitem(filter as string) to get files

but can you select either a folder or file? ( or for that matter selecting multiple files )

flag

60% accept rate

3 Answers

vote up 4 vote down check

The MonkeyBread plugin allows this in the OpenDialogMBS class.

http://www.monkeybreadsoftware.net/pluginhelp/navigation-opendialogmbs.shtml

OpenDialogMBS.AllowFolderSelection as Boolean
property, Navigation, MBS Util Plugin (OpenDialog), class OpenDialogMBS, Plugin version: 7.5, Mac OS X: Works, Windows: Does nothing, Linux x86: Does nothing, Feedback.

Function: Whether folders can be selected.
Example: 
dim o as OpenDialogMBS
dim i,c as integer
dim f as FolderItem

o=new OpenDialogMBS
o.ShowHiddenFiles=true
o.PromptText="Select one or more files/folders:"
o.MultipleSelection=false
o.ActionButtonLabel="Open files/folders"
o.CancelButtonLabel="no, thanks."
o.WindowTitle="This is a window title."
o.ClientName="Client Name?"
o.AllowFolderSelection=true
o.ShowDialog

c=o.FileCount
if c>0 then
  for i=0 to c-1
    f=o.Files(i)

    FileList.List.AddRow f.AbsolutePath
  next
end if


Notes: 
Default is false.
Setting this to true on Windows or Linux has no effect there.
(Read and Write property)
link|flag
thanks for that - just hate dependencies ;-) – Danny Oct 7 '08 at 22:53
vote up 0 vote down

It's not possible via any of the built-in APIs. There might be a plugin to do it, but I don't think there's OS support for it.

link|flag
vote up -2 vote down

Assuming you're using .Net I think you'll need to create your own control (or buy one).

link|flag
the tag states I'm using realbasic – Danny Sep 19 '08 at 7:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.