Multiple file Requesting.

BlitzMax Forums/BlitzMax Programming/Multiple file Requesting.

Twinprogrammer(Posted 2012) [#1]
Hello,
I'm trying to have my RequestFile() take in multiple file formats (ie. Png , Jpeg , Bmp , Tga). Any idea on how to do this ?

Twinprogrammer


Jesse(Posted 2012) [#2]
taken from the example in the Ide:
filter$="Image Files:png,jpg,bmp,Tga"
filename$=RequestFile( "Select graphic file to open",filter$ )

Print filename



Twinprogrammer(Posted 2012) [#3]
It works thanks, Jesse!

Twinprogrammer