Hi,
My latest little masterpiece could potentially need to open .txt, .csv and .xsl files
Is it possible to fashion FILEREQUEST to "see" all these extensions at once, and
then choose any one of them?
Brian
			
			
			
				I believe this will do it for you.
filter = "All Files (*.*)|*.txt;*.csv;*.xsl||"
LarryMc
			
			
			
				Larry,
Many thanks - just seen your post. However, I had been tinkling the ivories, and came up with just the same!
filename=FILEREQUEST("Data files",win,1,"Data files (*.txt *.csv *.xls)|*.txt;*.csv;*.xls|Text files (*.txt)|*.txt|CSV files (*.csv)|*.csv|XLS files (*.xls)|*.xls|All Files (*.*)|*.*||","txt",0,sourcepath)
Works a treat - thanks
Brian