View previous topic :: View next topic |
Author |
Message |
CluM09 KiXforms Follower

Joined: 29 May 2007 Posts: 25
|
Posted: Sat Feb 28, 2009 6:07 pm Post subject: Select multiple files from OpenFileDialog |
|
|
Hello,
Is there any property that allows selecting multple files from the OpenFileDialog box?
I know I can use FolderBrowserDialog box to browse the folder and have a function to enumerate the files to fill in a listbox and then allow the selection of multiple files from there, but I just like to have the ability to use the OpenFileDialog diretly.
Thanks. |
|
Back to top |
|
 |
Lonkero KiXforms Devotee


Joined: 13 Mar 2003 Posts: 1022 Location: Espoo, Finland
|
Posted: Sun Mar 01, 2009 3:45 pm Post subject: |
|
|
well, according to the official document, there is nothing you can do.
and by testing it, I concur:
Code: | $=createobject("kixforms.system")
$dialog = $.openfiledialog
$dialog.multiselect = not false
$n=$dialog.showdialog
$dialog.filename ?
get $ |
Shawn hasn't made multiselect visible property and it's false by default. _________________ Hammer |
|
Back to top |
|
 |
CluM09 KiXforms Follower

Joined: 29 May 2007 Posts: 25
|
Posted: Sun Mar 01, 2009 6:19 pm Post subject: |
|
|
Lonkero,
Thank you for the respone.
I tried the Multiselect property with VBscript, and it did not support it.
I saw the Multiselect property in VB .Net, and I just wondered if Kixforms .NET would have the same property. I guess it does not. |
|
Back to top |
|
 |
Lonkero KiXforms Devotee


Joined: 13 Mar 2003 Posts: 1022 Location: Espoo, Finland
|
Posted: Sun Mar 01, 2009 7:11 pm Post subject: |
|
|
yeah, short answer is, you can't use multiselect with current kf version.
but, it's piece of cage to implement it in the next build. _________________ Hammer |
|
Back to top |
|
 |
|