Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
113 views

Why can I not show a TopLevel window after launching the FileDialog module? I would like to show a window with a waiting message after executing FileDialog code. If I create the TopLevel window before ...
Ric's user avatar
  • 31
1 vote
2 answers
108 views

I feel like I am 3/4 of the way to my objective. I've created VBA that will populate an automated e-mail with attachments, based on the name of a folder the user previously selected. It goes like this:...
Joey56's user avatar
  • 35
0 votes
2 answers
69 views

In my VBA application, I'm opening a FileDialog and waiting for the user to select a file. FileDialog.Show displays the contents of the folder and waits until the user makes a selection. Once the user ...
Gordon Prince's user avatar
0 votes
1 answer
121 views

I am upgrading a database from Access 2010 to Office 365. The issue is that the code from the Access 97 Developer's Handbook by Litwin, Getz, and Gilbert (Sybex) Copyright 1997, which has been used ...
MTrounson's user avatar
0 votes
2 answers
702 views

Since my research has led me to belief that my references could have something to do with it ,here my references to my MS Access: Visual Basic for applications Microsoft Access 16.0 object library ...
Kingsley Obeng's user avatar
0 votes
1 answer
190 views

I have a FileDialog in QML. If I click a button the dialog opens and I can select a file via the FileDialog window. I want to close the FileDialog automatically when I click out of the FileDialog ...
hossein's user avatar
  • 15
0 votes
0 answers
213 views

I have created an Windows MFC Dialog C++ application with VS2022 it builds and loads as expected. What I am trying to figure out is how to add the FileDialog class/function etc to open a file's. I ...
user avatar
1 vote
1 answer
661 views

I have a Python code that shall interact with a Filedialog Window opened by another software. I need to insert Filename and Filepath in the File Dialog boxes. The Python code identifies the window, ...
Chakot's user avatar
  • 39
0 votes
1 answer
310 views

I am using Application.FileDialog(msoFileDialogFilePicker) and navigating to any specific folder to automatically select (and highlight if possible) all files in that folder, populating the Filename ...
sifar's user avatar
  • 1,158
0 votes
0 answers
724 views

Hi I am working on a QML project now with Qt 5.15 version. The problem is that the following Binding loop warning occurs in the FileDialog I declared. " ~~ QtQuick/Dialogs/DefaultFileDialog.qml:...
이우리's user avatar
1 vote
1 answer
94 views

I am in the process of creating a program that prompts for source folder, destination folder, old text string, and new text string and then copies, renames, and pastes files from the source folder to ...
Lynn Stevens's user avatar
-1 votes
1 answer
221 views

Using Jupyter notebook, I created a Python code that would copy files with a keyword from one directory to a new one created in the script (i.e. files were kept in: D:/Main_Folder/SubFolder1/...
AndSS's user avatar
  • 11
1 vote
2 answers
3k views

I want to do a Tkinter-based python program which would allow me to open an image file and to display it in a Label widget. But when I run the program and I click the button to call the OpenFile() ...
TheGeek2021's user avatar
0 votes
2 answers
72 views

My company has a standard model tool, which uses a standard Excel file as input. To update inputs from an old template, you download a standard file from a platform, and use an Excel VBA sub that ...
Methodrone8's user avatar
0 votes
1 answer
170 views

I've been following a Codemy tutorial on YouTube showing how to create a basic text editor. The tutorial is created using Python on Windows. I'm using a Mac. The program works for the guy in the ...
Graham Gill's user avatar
0 votes
1 answer
38 views

I managed to adapt a vba macro (which I also found here) and got it running. So when the macro is started a file dialog asks me for the source file and the output gives me the word count of this file ...
Flamey's user avatar
  • 1
0 votes
2 answers
835 views

Consider: from tkinter import * from tkinter import filedialog def openFile(): filepath = filedialog.askopenfile() file = open(filepath), 'r') print(file.read()) file.close() window = ...
hahaly's user avatar
  • 33
0 votes
1 answer
305 views

I have a filedialog in Outlook VBA, generated by a Word application. It opens behind all the windows. The opened email is hidden, while the main Outlook application remains opened causing a "...
TechMatt__'s user avatar
0 votes
1 answer
163 views

I try to make a tool that can merge multiple pdf file types, I use askopenfilenames method, select the files and when I print the files it looks like they are ordered alphabetically. Is there a way to ...
Leonard Basag's user avatar
0 votes
1 answer
202 views

When I try to build a simple UI, everything works well, except the tkinter function I used always repeats twice, I am not sure why this happens and how to deal with it. Here is an example code: import ...
tangjikededela's user avatar
2 votes
1 answer
251 views

I'm using Tkinter for the code below. Goal Use filedialog to input the path of a folder to search and return the list of "mp3" files from the folder and put all the "mp3" in one ...
walo net's user avatar
1 vote
1 answer
414 views

I am trying to open a file, which I save before, in the program. Then I want to write some text, into the file. But it gives me the following Error, I have already looked for solutions in google and ...
baumanager's user avatar
0 votes
0 answers
189 views

I have file dialog, where I click "open" it will open the filedialog. However, I need to restrict user to only select the files in current folder. How do I disable the top folder ...
Amy's user avatar
  • 1
0 votes
2 answers
792 views

I have written this. Its short and supposed to open a file dialog window, with buttons "open a file, turn, save, exit." I want to open a jpeg, turn it 180° and then save it and quit. The ...
Banshek's user avatar
1 vote
1 answer
547 views

I have a function that I want to open .dat files with, to extract data from them, but the problem is I don't know how to turn that data back into a dictionary to store in a variable. Currently, the ...
danielshmaniel's user avatar

1
2 3 4 5
8