forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


How to select more than on file ?

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
filip
Valued Contributor
Valued Contributor


Joined: 07 Aug 2004
Posts: 340

PostPosted: Sun Oct 23, 2005 1:51 pm    Post subject: How to select more than on file ? Reply with quote

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
View user's profile Send private message Send e-mail
ShinobiSoft
Professional Member
Professional Member


Joined: 06 Nov 2002
Posts: 790
Location: Knoxville, Tn

PostPosted: Sun Oct 23, 2005 5:52 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website Yahoo Messenger
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Tue Oct 25, 2005 7:59 am    Post subject: Reply with quote

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
View user's profile Send private message
filip
Valued Contributor
Valued Contributor


Joined: 07 Aug 2004
Posts: 340

PostPosted: Tue Oct 25, 2005 8:31 am    Post subject: Reply with quote

It's OK

Im using with list combination so later on is used...
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group