| View previous topic :: View next topic |
| Author |
Message |
filip Valued Contributor


Joined: 07 Aug 2004 Posts: 340
|
Posted: Sun Oct 23, 2005 1:51 pm Post subject: How to select more than on file ? |
|
|
How to select more than on file with @filedlg ?!?
:BUTTON1BUTTON
%a = @filedlg("All files|*.*",Chose your pick...)
if @null(%a)
goto loop
end |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Sun Oct 23, 2005 5:52 pm Post subject: |
|
|
Try this Filip::
| Code: |
%F = @filedlg(All files (*.*)|*.*,,,MULTI)
if @not(@null(%F))
list create,1
list assign,1,%F
info @text(1)
list close,1
end
|
_________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Tue Oct 25, 2005 7:59 am Post subject: |
|
|
In addition to Bill's code:
| Code: | | %F = @filedlg(All files (*.*)|*.*,,,MULTI) |
If it does not work, try putting quotes around the (*.*) part to prevent VDS from thinking the ) is the end of the function:
| Code: | | %F = @filedlg(All files "(*.*)"|*.*,,,MULTI) |
_________________ [ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial! |
|
| Back to top |
|
 |
filip Valued Contributor


Joined: 07 Aug 2004 Posts: 340
|
Posted: Tue Oct 25, 2005 8:31 am Post subject: |
|
|
It's OK
Im using with list combination so later on is used... |
|
| Back to top |
|
 |
|