Posts by Antônio Gally • 39 points
10 posts
-
1
votes1
answer89
viewsQ: How to capture keys inside an iframe
I am making a javascript text editor and need to create keyboard shortcuts to perform some actions. for this, I am using CDEditorIframe.document.body.setAttribute('onkeypress', 'teste()'); The error…
-
0
votes1
answer305
viewsQ: Problems running Tkinter program in Spyder IDE
I am writing a python code (3.7) using the Tkinter library, I am also using Spyder IDE (py-3) | Anaconda (3) to write the code. When I run it, the IDE only shows the [in] (runfile) in the ipython…
-
0
votes1
answer354
viewsQ: Importing values from other codes in Tkinter - python
Hello, I’m doing a large program and wanted to divide the screens into other codes, I can import the screens, but I need to get some values from other screens, but I can’t do it. First screen: from…
-
-1
votes1
answer474
viewsQ: Opening a URL from Tkinter
It is possible link a website using Python code? For example, in a menu made in Tkinter (object orientation) I wanted to click button and be redirected to a site.
-
0
votes1
answer714
viewsQ: Menu in the Tkinter Python module
Hello, I have a screen that was made in Tkinter and I have a menu with cascade submenus, what I need to do is show the different information of the submenus without having to create several other…
-
0
votes1
answer202
viewsQ: Screen printed products in Tkinter-Python
I’m having trouble getting back to one screen without creating another... I couldn’t get her to come back to the same screen I created. I wonder if I could use the .destroy()? Follow the code below:…
-
1
votes3
answers2181
viewsQ: Python functions-Global and local variables
Is there a way to let the variable from within a (local) function go global? If not, what way can we declare a global variable?
pythonasked Antônio Gally 39 -
1
votes1
answer860
viewsQ: Using screens in Tkinter-Python
You guys all right? So, I’m doing a screen test program, its function would be just a test consisting of: Open a screen (called by a button) and close the one that was open. I don’t know how to do…
-
0
votes2
answers2891
viewsA: Python and Access
I don’t know much about Acces or python, but I managed to get my code (simple) to connect to Sqlite3, creating its tables and columns. I don’t know if it’ll help, but just in case... Code is down:…
-
0
votes1
answer701
viewsQ: Using Tkinter together with a database
I am doing a program of registration of people with interface (still very basic, just to do tests) and I am with several difficulties: I’m extracting the data using the .get(), however, I can only…