openfiledialog with filter property
-
Hi All, i Have made a web application, working fine in WINDOWS and MAC, but in my application i have a file upload option by which, user can select file and upload it on server. For this i use openfiledialog to select files and use filter to filter only allowed file types in selection. the filter is like :
dlg1.filter=Files Allowed(*.pdf;*.doc;*.docx;*.txt;*.xls;*.xlsx;*.ppt;*.pptx;*.bmp;*.jpg;*.jpeg;*.gif;*.tif;*.tiff;*.png)|*.pdf;*.doc;*.docx;*.txt;*.xls*;*.xlsx;*.ppt;*.pptx;*.bmp;*.jpg;*.jpeg;*.gif;*.tif;*.tiff;*.png"
Now it is working fine but in MAC i m unable to pick excel files, excel files not available in allowed types, all though .xls and .xlsx is been added into filter and working for windows. so what changes required in filter for MAC machine. Thanks Yogesh Agarwal
-
Hi All, i Have made a web application, working fine in WINDOWS and MAC, but in my application i have a file upload option by which, user can select file and upload it on server. For this i use openfiledialog to select files and use filter to filter only allowed file types in selection. the filter is like :
dlg1.filter=Files Allowed(*.pdf;*.doc;*.docx;*.txt;*.xls;*.xlsx;*.ppt;*.pptx;*.bmp;*.jpg;*.jpeg;*.gif;*.tif;*.tiff;*.png)|*.pdf;*.doc;*.docx;*.txt;*.xls*;*.xlsx;*.ppt;*.pptx;*.bmp;*.jpg;*.jpeg;*.gif;*.tif;*.tiff;*.png"
Now it is working fine but in MAC i m unable to pick excel files, excel files not available in allowed types, all though .xls and .xlsx is been added into filter and working for windows. so what changes required in filter for MAC machine. Thanks Yogesh Agarwal
yogesh_kumar_agarwal wrote:
docx;*.txt;*.xls*;*.xlsx;*.ppt
In your filter, its written: *.xls*; I guess, it should be: *.xls;
Anurag Gandhi.
http://www.gandhisoft.com
Life is a computer program and every one is the programmer of his own life. -
yogesh_kumar_agarwal wrote:
docx;*.txt;*.xls*;*.xlsx;*.ppt
In your filter, its written: *.xls*; I guess, it should be: *.xls;
Anurag Gandhi.
http://www.gandhisoft.com
Life is a computer program and every one is the programmer of his own life.Hi Anurag, Have a look into this forum General Indian Topics [^] You may interested over here too :)
Cheers ! Abhijit Jana | MVP Web Site : abhijitjana.net | Follow Me @ twitter Visit My Blog Abhijit's World of .NET
-
Hi Anurag, Have a look into this forum General Indian Topics [^] You may interested over here too :)
Cheers ! Abhijit Jana | MVP Web Site : abhijitjana.net | Follow Me @ twitter Visit My Blog Abhijit's World of .NET
Cool. :)
Anurag Gandhi.
http://www.gandhisoft.com
Life is a computer program and every one is the programmer of his own life.