Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
OpenSaveDialog
#1
how do i give selection options for rar and zip files ?

Code:
Copy      Help
str s
if OpenSaveDialog(0 &s "Archive Files[]*.rar[]*.zip[]")
,out s

i get only zip, but rar doen't show up.
pi
#2
Filter format is

Description1
*.ext1;*.ext2...
Description2
*.ext3;*.ext4...
...
#3
how do i enable mutliple selection of files ?

thanks
pi
#4
use array as last argument

Code:
Copy      Help
ARRAY(str) a
if(OpenSaveDialog(0 0 "" "" 0 "" 0 a))
,for(int'i 0 a.len) out a[i]
#5
perfect !
pi


Forum Jump:


Users browsing this thread: 1 Guest(s)