Questions tagged [filebrowse]

20 questions
3
votes
1 answer

Python GUI (Tkinter) file browser and state the file selected on the blank

This GUI allows the user to open the file browser and select the files you need, show it on the field blank and then open the file once open is pressed. I'm new to python and had tried placing print tkFileDialog.askopenfilename() at the…
Sandy
  • 45
  • 1
  • 8
3
votes
1 answer

Is there a way to add multiple filemasks in wx.lib.filebrowsebutton.FileBrowseButton?

I'm trying to make a wx.lib.filebrowsebutton.FileBrowseButton button match both txt and csv files, but it doesn't seem to support glob pattern as described, *.{txt,csv} ends up matching nothing on windows and it literally tries to look for files…
Shane
  • 4,875
  • 12
  • 49
  • 87
2
votes
2 answers

Can i browse file stored on Remote server through simple control in asp.net MVC 2.0

I have a file control of HTML And i want to browse file from the remote server. I want to locate a file which is stored on remote server. For eg. If my website is hosted on http://192.168.56.116 and if there is a folder on…
HeyItsMe007
  • 101
  • 2
  • 8
2
votes
2 answers

Ajax Files browser ; What are the good practices

I'm working on a file browser (a very ligth file manager if you prefer) based on PHP and Javascript. I'm building a treeview with my folders :
grunk
  • 14,718
  • 15
  • 67
  • 108
2
votes
3 answers

How to disable the folder navigation in FileUpload control

How to disable the folder navigation in the browse file popup window that appears when browse button is clicked in FileUpload control. Currently, the browse file popup window shows specific folder which contain subfolders and files; I want to limit…
KMån
  • 9,896
  • 2
  • 31
  • 41
2
votes
0 answers

Ftp FolderView File Browse in Asp.net C#

In my Web Application I need to give facility to the user to browse their FTP Location, as of File Browse of Asp.Net. To do so, I have used OpenFileDialog of Windows Forms. It works for any local location, but it does not work for any ftp location.…
meghana
  • 907
  • 1
  • 20
  • 45
1
vote
3 answers

How to remove "Choose File" button from the textbox?

How to Hide choose file button inside the text box, As I am using another button to browse. If I give type="File", the button "choose file" automatically come inside my text box. Code below:
NewCoder
  • 11
  • 3
1
vote
0 answers

Is there a way to handle the Windows File Browse with JavaScript from Selenium WebDriver (C#)?

I'm wondering if there is a way to handle the selection of files or multiple files then click Open on the Windows File Browse dialog using javascript? The need comes during our Selenium WebDriver test in C# for a file upload. A button is clicked,…
mawa316
  • 151
  • 1
  • 1
  • 3
1
vote
1 answer

MFC: How to Set initial value of CMFCEditBrowseCtrl object?

I have MFC application for which I want to add one dialog to browse file location, using CMFCEditBrowseCtrl object. But I have not been able to set initial path properly, e.g. "C:\Program Files\Path". When tried it is showing chinese letters. How…
Codename_DJ
  • 553
  • 1
  • 11
  • 40
1
vote
2 answers

Calling ubuntu file browser (explorer) in python

I'm trying to develop a python GUI that allows the user to select a file using the native file browser (I'm using Ubuntu 12.04) and display it on the interface. First: how can I call the native file explorer using a python script and get the…
Sam
  • 41
  • 7
1
vote
1 answer

How to disable/remove the input box in wx.lib.filebrowsebutton.FileBrowseButton?

Looks like there's no built-in option to disable/remove the InputBox/TextCtrl part in wx.lib.filebrowsebutton.FileBrowseButton, well I did come up with a workaround which is simply set labelText to blank and then size it down to fit only the button…
Shane
  • 4,875
  • 12
  • 49
  • 87
1
vote
0 answers

Folderbrowserdialog browsing a remote pc

I have a question regarding folderbrowser when i browse to a remote computer nothing is showing under that object. But if i use fileopen and browse to the same location it lists all the folders and files, is there some sort of authenication…
Kevin Babb
  • 111
  • 1
  • 2
  • 13
0
votes
0 answers

Android WebView html file browse buttons are not selecting files. The ActivityResult.getResultCode() is always 0

I have just started using Android, but I have used the Java language in the past. I have loaded a web application in an android WebWiew. The app was published successfully but the file browse buttons did not work. I have tried searching for many…
Sukh
  • 13
  • 5
0
votes
1 answer

Efficient file browser using python

I want to build an efficient file browser, where my intention is to open up only 4 specific file types, it is happening, but the problem is I want that in the file dialog box, only those file types should appear, so that selection becomes easier,…
0
votes
4 answers

c# FileBrowse changes path for the rest of my application

i have created a form with FileBrowse control to load a file from. the problem is, after i load a file the application looks for files in the path i'v selected instead of the 'Debug' directory (where files should be...) how can i avoid it ? is it…
kaycee
  • 1,199
  • 4
  • 24
  • 42
1
2