Questions tagged [filedialog]

Refers to both OpenFileDialog and SaveFileDialog in .NET WinForms.

This tag represents both the OpenFileDialog class and SafeFileDialog class from .NET. More information about them on MSDN here and here respectively.

358 questions
0
votes
1 answer

How to open FileDialog on top of all windows

I have a Java Swings App in which I open File Browser Dialog. For Windows, I am using JFileChooser and JDialog but using these in MAC hangs the app so I use FileDialog for MAC. This is the code I am using: Frame frame = null; …
Hemant Sisodia
  • 488
  • 6
  • 23
0
votes
2 answers

How to select the location that file is being saved to?

I am relatively new to C++ and I want to be able to open the file explorer and be able to select the location to be saved to. It currently saves within the same folder as the c++ files. How do I go about this? Thanks. std::ofstream…
0
votes
1 answer

How to create a FileDialog to appear in a frame of a window instead of the FileDialog being a popout window?

How can I embed a FileDialog that appears in the frame on the left when the application opens instead of clicking a button "browse" and having the FileDialog be a popout window? I have created a GUI using Python and in the window I have a frame on…
omgsyd28
  • 27
  • 3
0
votes
0 answers

AutoCAD VBA to Launch FileDialog with Windows API throws Error 449 "Argument Not Optional"

I have a custom VBA program that loops through a bunch of AutoCAD files and extracts data from them. As of right now I'm using a separate Excel file to select multiple .dwg files via Excel FileDialog and I'd like to have that file selection be done…
John
  • 21
  • 4
0
votes
2 answers

How to implement Application.FileDialog using Outlook VBA?

I want to attach a file to my mail. I want to choose the path. I tried Application.FileDialog. I get Runtime Error 438. I found this code on the Internet: Sub Main() Dim fd As FileDialog Set fd =…
Jocasso
  • 465
  • 1
  • 7
  • 20
0
votes
1 answer

change button in tkinter filedialog

I made a filedialog by tkinter, and I just wondered if I could change text in this button.
jwoojin9
  • 295
  • 1
  • 5
  • 16
0
votes
2 answers

RobotFramework | Choose File | Angular | Not working

I cannot figure out how to use the "Choose File" functionality I have the following website in which i want to upload the file C://RobotAutomation/Customers/in/test.csv The website looks as follows The corresponding html is as follows: My Test…
Arun
  • 1
  • 1
0
votes
1 answer

Open file with Python DirSelector

is it somehow possible to open a file (instead of a directory) with Python's DirSelector. It's also fine to make a wx.FileSelector to open also a directory. I just need one dialog window to open both, files and directories.
bitman
  • 547
  • 2
  • 6
  • 23
0
votes
2 answers

User selected path

I have a program that reads and writes to a text file. The program creates the file if it doesn't exist. Currently I have a predefined path and name to store the file. How do I allow a user to name, and select where they want to store it, and then…
Todd
  • 1
  • 2
0
votes
1 answer

Folder Picker Excel VBA & paste Path to Cell

I am having difficulty figuring out how to put the Folder Path in Cell C49. I'd like to have the Path there for the User to understand where they are searching and if they have to change said Path. I got this VBA code…
Kenny
  • 343
  • 2
  • 9
  • 28
0
votes
1 answer

c# Customized file dialog to add additional control depending on selection

I would like to customize a window 10 style file dialog (open) adding additional control below the file name filed (see the attached image). And update the additional control depending on the selection if I can. Click here to see image How I could…
0
votes
1 answer

System.IO.Exception : the directory name is invalid

enter image description herei want to save to save a selected file in a specific folder. For that, i used a normal FileDialog. Additional, the main aim is that the opened file which will be open with this FileDialog, must be saved automatically in…
0
votes
1 answer

Using File Opened via File Dialog with VBA

I am trying to Copy information from a tab in file opened via File Dialog and paste it into "ThisWorkbook" Below is my attempt. I keep getting the error "object doesn't support this property or method" on the line in bold font. Sub…
0
votes
2 answers

Filepicker VBA to select file and store the file name not working

I am trying to run the following in order to get the file name that the user selects. The file is an .mdf file that is attached previously to an SQL server. But when I run it, a window comes out and says I don't have permission to open the file. I…
janf
  • 81
  • 11
0
votes
1 answer

Loop in QML when using FileDialog

I have some problem with the loop. I'm trying to load img from browserfile and show others in 3s as image - slide. I used while loop FileDialog { id: fileDialog visible: false title: "Choose a file" property url defaultz: "E:\IMG" …
TrungPC
  • 57
  • 1
  • 7