Questions tagged as 'tkinter'

1
answer

How to Show With Tkinter The Result of Subprocess.call?

Good morning I would like to know how to use Tkinter , I can show on the screen the result of the module subprocess.call(["free","-m"]) . Thank you very much for your attention.     
asked by 09.04.2017 / 22:19
2
answers

Script does not work outside of IDLE

The following code can be executed from IDLE (a Python IDE) in 32-bit Python 3.6 on Windows 7 (64 bits) import tkinter def algo(): pass def ventanan1(): Ventana1=tkinter.Toplevel() Ventana1.geometry("250x100") Ventana1.title("Ve...
asked by 15.03.2017 / 03:33
1
answer

Tkinter I want to move forward with the enter key once the data is entered between several entry

In the example below, I want to enter the data in each of the cells and when pressing the enter / enter key, accept the data and look for the next one. I would also add if you can put an entry order in the manner of VisualBasic TabIndex. fr...
asked by 22.12.2016 / 22:18
2
answers

tkinter, method .get does not return anything

The problem is that although I write something in the Entry fields, and I link them correctly to a variable, when evaluating them with the .get and see what they got, it returns null. ventana_añadir = Tk() ventana_añadir.title("Añadir u...
asked by 27.12.2016 / 01:35
1
answer

pass words from a line of txt to list

image that there is a txt like the following: juan pepe 123 25 345 marcelo velasquez 345 45 566 where juan pepe, 123,25,345 are elements of a list called user1, which in turn belongs to a list called user. Any ideas on how I could...
asked by 09.11.2016 / 03:55
0
answers

Problems with tkinter and sockets in python

I come for your help. I happen to be doing a game in python a "Battleship". Create the interface with tkinter and to make it online I started using sockets. The problem is that when I want to perform an "attack", everything is pasted. The connec...
asked by 26.11.2016 / 19:18
1
answer

Tkinter / Python: Error deleting a text from a canvas and wanting to write a different one

I have created a "main" window with a canvas in which I load an image and a line of text from an entry Entry. When I delete the text of the canvas and the Entry with the function canvas.delete(tag_del_texto) and entry.delete(0, 'end')...
asked by 05.12.2016 / 00:03
0
answers

How to add 2 Widgets to a LabelWidget of a LabelFrame?

Hi, I'm programming in widget "Title lol?" and the Push me button! Put the two together in the LabelWidget of a labelframe Is it possible? and how can I do it?     
asked by 02.09.2016 / 19:55
1
answer

How to add an item to LabelWidget?

Good morning friends, I'm programming in
asked by 02.09.2016 / 17:58
1
answer

How to do Drag & Drop with Tkinter?

I need to be able to drag and then release the buttons to the white box. Or would you recommend using IronPython with XAMP? I accept suggestions, books, videos. Thanks     
asked by 19.10.2016 / 07:13