Hello,
I have already posted a message some time ago for this app. Since then, I
didn't code in python or made any changes. I think before getting further with
functionnalities a few things or the whole thing need to be changed.
For exemple, it would need a button to pick folders and maybe ask if
Às 22:44 de 21/11/20, Chris Angelico escreveu:
> On Sun, Nov 22, 2020 at 9:36 AM Paulo da Silva
> wrote:
>>
>> Às 22:18 de 21/11/20, Chris Angelico escreveu:
>>> On Sun, Nov 22, 2020 at 9:16 AM Paulo da Silva
>>> wrote:
Hi!
Why this does not work?!
from tkinter impor
On Sun, Nov 22, 2020 at 9:36 AM Paulo da Silva
wrote:
>
> Às 22:18 de 21/11/20, Chris Angelico escreveu:
> > On Sun, Nov 22, 2020 at 9:16 AM Paulo da Silva
> > wrote:
> >>
> >> Hi!
> >>
> >> Why this does not work?!
> >>
> >> from tkinter import *
> >>
> >> def terminate(root):
> >> root.quit
Às 22:18 de 21/11/20, Chris Angelico escreveu:
> On Sun, Nov 22, 2020 at 9:16 AM Paulo da Silva
> wrote:
>>
>> Hi!
>>
>> Why this does not work?!
>>
>> from tkinter import *
>>
>> def terminate(root):
>> root.quit
>>
>
> Is root.quit a function? Simply referencing a function's name does not
>
On Sun, Nov 22, 2020 at 9:16 AM Paulo da Silva
wrote:
>
> Hi!
>
> Why this does not work?!
>
> from tkinter import *
>
> def terminate(root):
> root.quit
>
Is root.quit a function? Simply referencing a function's name does not
call it (because functions are first-class objects - you can put a
Hi!
Why this does not work?!
from tkinter import *
def terminate(root):
root.quit
root=Tk()
#b=Button(root,text="QUIT",command=root.quit)
b=Button(root,text="QUIT",command=lambda: terminate(root))
b.pack()
mainloop()
Thanks
--
https://mail.python.org/mailman/listinfo/python-list
On Sat, Jun 1, 2019 at 5:11 AM wrote:
>
> NOT WORKING IN MINE PLZ HELP
>
>
>
> from tkinter import *
> g=Tk()
> g.geometry("{0}x{1}+0+0".format(g.winfo_screenwidth(),
> g.winfo_screenheight()))
> g.title("Check")
> g.configure(background='powder blue')
>
>
> def clear_search(event):
> e1.dele
On 31/05/2019 20:08, sakshamrahej...@gmail.com wrote:
NOT WORKING IN MINE PLZ HELP
from tkinter import *
g=Tk()
^^
g.geometry("{0}x{1}+0+0".format(g.winfo_screenwidth(), g.winfo_screenheight()))
g.title("Check")
g.configure(background='powder blue')
def clear_search(event):
e1.del
NOT WORKING IN MINE PLZ HELP
from tkinter import *
g=Tk()
g.geometry("{0}x{1}+0+0".format(g.winfo_screenwidth(), g.winfo_screenheight()))
g.title("Check")
g.configure(background='powder blue')
def clear_search(event):
e1.delete(0, tk.END)
e1=Entry(g)
e1.insert(0,'username')
e1.pack()
e1
Not happening in mine
--
https://mail.python.org/mailman/listinfo/python-list
In this series of 30 videos we learn how to create a Music Player from scratch
using Python.
Youtube Playlist -
https://www.youtube.com/playlist?list=PLhTjy8cBISEp6lNKUO3iwbB1DKAkRwutl
--
https://mail.python.org/mailman/listinfo/python-list
Thanks it was helpful
--
https://mail.python.org/mailman/listinfo/python-list
On 4/5/2017 3:48 PM, uni...@gmail.com wrote:
I'm building a python app where it should show the popular tweets
> in boxes in line with each other using TKinter.
By 'boxes' do you mean a visible border for Label widgets? If so, you
have to configure one. You don't be
hello
I'm building a python app where it should show the popular tweets in boxex in
line with each other using TKinter. The problem is that the labels of the
tweets are showing at the bottom of each other and i want them to be in boxes
like
Am 25.01.17 um 10:18 schrieb Peter Otten:
hmmeeranrizv...@gmail.com wrote:
Hello Guys,
Here i am creating a entry box with some text,i need to hide the text when
i click on it.
search.bind("", clear_search)
This is the correct answer for a mouse click. The typical use case
(disappearing
On Wednesday, January 25, 2017 at 1:15:11 PM UTC+5:30, hmmeera...@gmail.com
wrote:
> Hello Guys,
> Here i am creating a entry box with some text,i need to hide the text when i
> click on it.
> Here is my code
>
> from Tkinter import *
> obj = Tk()
> b = Entry(obj,width=100)
> b.insert(0,"Enter t
hmmeeranrizv...@gmail.com wrote:
> Hello Guys,
> Here i am creating a entry box with some text,i need to hide the text when
> i click on it. Here is my code
>
> from Tkinter import *
> obj = Tk()
> b = Entry(obj,width=100)
> b.insert(0,"Enter the value to search")
> b.pack()
> mainloop()
You nee
Hello Guys,
Here i am creating a entry box with some text,i need to hide the text when i
click on it.
Here is my code
from Tkinter import *
obj = Tk()
b = Entry(obj,width=100)
b.insert(0,"Enter the value to search")
b.pack()
mainloop()
--
https://mail.python.org/mailman/listinfo/python-list
thankyou so much, that is the exact help I required to put me in the right
direction :D
--
https://mail.python.org/mailman/listinfo/python-list
twgrops--- via Python-list wrote:
> Hi I am new here and to python,
>
> I am currently studying towards my degree in computer science and have to
> build a program but I have hit a brick wall. I am trying to make an image
> move around the canvas. I can make a rectangle move using the following:
Hi I am new here and to python,
I am currently studying towards my degree in computer science and have to build
a program but I have hit a brick wall. I am trying to make an image move around
the canvas. I can make a rectangle move using the following:
#test rectangle
id1=canvas.create_rectangl
On 5-10-2016 2:43, Dennis Lee Bieber wrote:
> Or do what I once did with the Lunar Lander game on my college
> computer... Target accuracy: Excellent... Landing gear? somewhere on the
> other side of the moon. My vertical velocity was sub-inches per second --
> the horizontal velocity was in
On 4-10-2016 10:20, Christian Gollwitzer wrote:
> Thanks! It works now with the cursor keys as intended. I'm still having
> trouble, but
> only because my game playing skills are not very good ;)
Have you managed to land the rocket again at all after a takeoff?
You can practice landing a bit by
Am 02.10.16 um 14:46 schrieb Irmen de Jong:
On 1-10-2016 22:07, Irmen de Jong wrote:
Oh, I'm sorry about that, my little knowledge of non-US keyboard layouts shows.
Arrow keys could be an option. For my education what are the 2 keys to the
right of
the P then on your keyboard?
Rebinding the
On 1-10-2016 22:07, Irmen de Jong wrote:
> On 1-10-2016 15:44, Christian Gollwitzer wrote:
>> Am 01.10.16 um 00:59 schrieb Irmen de Jong:
>>> Hi,
>>>
>>> I've made a very simple rocket simulation game, inspired by the recent
>>> success of SpaceX
>>
>>> You can get the code here if you want to giv
On 1-10-2016 15:44, Christian Gollwitzer wrote:
> Am 01.10.16 um 00:59 schrieb Irmen de Jong:
>> Hi,
>>
>> I've made a very simple rocket simulation game, inspired by the recent
>> success of SpaceX
>
>> You can get the code here if you want to give it a try:
>> https://github.com/irmen/rocketsim
Am 01.10.16 um 00:59 schrieb Irmen de Jong:
Hi,
I've made a very simple rocket simulation game, inspired by the recent success
of SpaceX
You can get the code here if you want to give it a try:
https://github.com/irmen/rocketsimulator
Nice! I'll have to rebind the keys before I can successf
can make a simple graphics animation game with just
> using Tkinter,
> instead of using other game libraries such as PyGame.
> As it turns out, that works pretty well and it was quite easy to write.
> Granted, there's
> not much going on on the screen, but still the game runs very sm
Hi,
I've made a very simple rocket simulation game, inspired by the recent success
of SpaceX
where they managed to land the Falcon-9 rocket back on a platform.
I was curious if you can make a simple graphics animation game with just using
Tkinter,
instead of using other game libraries su
On Friday, January 2, 2015 5:03:35 PM UTC-6, access...@gmail.com wrote:
> I have a script that I trying to go from command line
> entry to interface entry. [...] I have a few requirements
> when capturing the data:
>Must be able to navigate to a file and capture entire
>filename and pathnam
Am 03.01.15 um 00:03 schrieb accessnew...@gmail.com:
I have a script that I trying to go from command line entry to interface entry.
I am tinkering with Tkinter and want to review some Tkinter interface building
scripts. Really basic stuff covering file selection and making some of the data
ca
I have a script that I trying to go from command line entry to interface entry.
I am tinkering with Tkinter and want to review some Tkinter interface building
scripts. Really basic stuff covering file selection and making some of the data
captured required I am learning how to use Tkinter (Pytho
Hi i created a widget that i connected my sql server database. my goal is to
put and display data into my database from my widget. i can put data into my
database table but my problem is how to display these data on my widget like a
table...thanks you at all
--
https://mail.python.org/mailman/l
Okay. Got it now. Your help is much appreciated. Thanks.
--
https://mail.python.org/mailman/listinfo/python-list
theteacher.i...@gmail.com wrote:
> How do you exit from this function?
>
> def next_image():
> myLabel.config(image=random.choice(monster_images))
> # tell tkinter to invoke next_image() again after 200 miliseconds
You misunderstand. The problem with the function is not that it doesn't
On Sat, 30 Aug 2014 22:27:01 +0200, wrote:
Although getting next_image to run for e.g. 10 times in a for loop is
still something I can't get to work. It only displays one image.
I think this is because you do all your processing befoe starting the
event loop (myGui.mainloop() ).
A better
How do you exit from this function?
def next_image():
myLabel.config(image=random.choice(monster_images))
# tell tkinter to invoke next_image() again after 200 miliseconds
root.after(200, next_image)
--
https://mail.python.org/mailman/listinfo/python-list
Although getting next_image to run for e.g. 10 times in a for loop is still
something I can't get to work. It only displays one image.
--
https://mail.python.org/mailman/listinfo/python-list
Peter - Thanks! I've had a play around and followed your advice and have
something that should take me on to the next step! This is what I have so far
and it works, Thanks.
from tkinter import *
from tkinter import ttk
import random
root = Tk()
root.title("Messing about")
def next_image():
theteacher.i...@gmail.com wrote:
> I've started to learn to use tkinter but can't seem to rotate images.
>
> Here is a Python 3.4 program to illustrate the problem. Anyone spot why
> the for loop doesn't seem to want to display a sucssession of images
> please? Thanks.
GUI programs are different
On 8/30/2014 11:54 AM, theteacher.i...@gmail.com wrote:
I've started to learn to use tkinter but can't seem to rotate images.
Here is a Python 3.4 program to illustrate the problem.
> Anyone spot why the for loop doesn't seem to want to display
> a sucssession of images please? Thanks.
import
I've started to learn to use tkinter but can't seem to rotate images.
Here is a Python 3.4 program to illustrate the problem. Anyone spot why the for
loop doesn't seem to want to display a sucssession of images please? Thanks.
import sys
from tkinter import *
import random
from time import sleep
> Dave A.
No, not a new window, but my player function doesn't play any sound anymore.
--
http://mail.python.org/mailman/listinfo/python-list
On 04/30/2013 08:22 AM, alternativ...@rocketmail.com wrote:
> Dave A.
Yeah I'm using MRAB's code, my current code is :
#Initalisation
global event
global hitkey
#Functions
def key(event):
hitkey = event.char
instance = multiprocessing.Process(target=player, args=(hitkey,))
> Dave A.
Yeah I'm using MRAB's code, my current code is :
#Initalisation
global event
global hitkey
#Functions
def key(event):
hitkey = event.char
instance = multiprocessing.Process(target=player, args=(hitkey,))
instance.start()
def player(hitkey):
winsound
On 04/29/2013 09:17 PM, alternativ...@rocketmail.com wrote:
I thought 'clause' was reffering to the 'if __name__ == "__main__":' thing in
English, but apparently not.
Well except the import and the 'globalization' of my variables, every thing is
idented.
No clue whom you think you're replyin
I thought 'clause' was reffering to the 'if __name__ == "__main__":' thing in
English, but apparently not.
Well except the import and the 'globalization' of my variables, every thing is
idented.
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, Apr 30, 2013 at 4:44 AM, wrote:
> Yeah I did, but I globalized my variables, I've got only functions, and not
> methods, and my clause seems to work so I don't know why it doesn't work.
I don't know what you mean by your "clause", and I think we have a
language barrier here. (Though you
Yeah I did, but I globalized my variables, I've got only functions, and not
methods, and my clause seems to work so I don't know why it doesn't work.
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, Apr 30, 2013 at 3:32 AM, wrote:
> It definetly helped, windows don't pop up anymore, but now it doesn't make
> any sound anymore. Could it be because of a local (non-global) variable ?
Did you read what I linked you to? There are rules to using
multiprocessing; more of them on Windows.
It definetly helped, windows don't pop up anymore, but now it doesn't make any
sound anymore. Could it be because of a local (non-global) variable ?
--
http://mail.python.org/mailman/listinfo/python-list
On 29/04/2013 16:31, alternativ...@rocketmail.com wrote:
My full code is :
#Import
from tkinter import *
import wave
import winsound
import multiprocessing
#Initialisation
fenetre=Tk()
frame = Frame(fenetre, width=200, height=100)
instance = 'Instance'
#Fonctions
def key(event):
insta
My full code is :
#Import
from tkinter import *
import wave
import winsound
import multiprocessing
#Initialisation
fenetre=Tk()
frame = Frame(fenetre, width=200, height=100)
instance = 'Instance'
#Fonctions
def key(event):
instance = 'Instance'
hitkey = event.char
instance =
On Mon, Apr 29, 2013 at 9:40 AM, wrote:
> Well I saw this clause on most of the multiprocessing examples I saw but the
> reason it was here wasn't explained so I just ignored it (yeah stupid I
> know). I don't think I bypassed anything, at least not on purpose. I'm
> running on Windows 7 64 b
On 04/28/2013 07:40 PM, alternativ...@rocketmail.com wrote:
Well I saw this clause on most of the multiprocessing examples I saw but the
reason it was here wasn't explained so I just ignored it (yeah stupid I know).
I don't think I bypassed anything,
Yes, you skipped the essential if clause.
Well I saw this clause on most of the multiprocessing examples I saw but the
reason it was here wasn't explained so I just ignored it (yeah stupid I know).
I don't think I bypassed anything, at least not on purpose. I'm running on
Windows 7 64 bits.
--
http://mail.python.org/mailman/listinfo/p
On 04/28/2013 06:23 PM, alternativ...@rocketmail.com wrote:
Sorry for my bad english.
Here's my code :
def key(event):
instance = 'Instance'
touche = event.char
instance = multiprocessing.Process(target=player, args=(hitkey,))
instance.start()
d
Sorry for my bad english.
Here's my code :
def key(event):
instance = 'Instance'
touche = event.char
instance = multiprocessing.Process(target=player, args=(hitkey,))
instance.start()
def player(hitkey):
winsound.
On 04/28/2013 02:33 PM, alternativ...@rocketmail.com wrote:
Hi everyone,
I'm trying to use multiprocessing to avoid Python's GIL but with Tkinter,
instead of running my main function, it spawns new windows. In fact, my fuction
is used everytime I press a specified key, but with multiprocessing
Hi everyone,
I'm trying to use multiprocessing to avoid Python's GIL but with Tkinter,
instead of running my main function, it spawns new windows. In fact, my fuction
is used everytime I press a specified key, but with multiprocessing I only get
a new window when I hit a key. Does anyone have a
i figured it out. its actually because i'm using python 3.1. for python
3.0+, many of the packages are lowercased, tkinter being one of them and so
thats why i wan getting a module not found error . . . thanks for getting
back to me.
manzur
On Tue, Jul 28, 2009 at 8:06 PM, Jan Kaliszewski wro
28-07-2009 o 17:17 Manzur Ahmed wrote:
i wanted to ask you if one of you could help me to use Tkinter. i'm
trying
to just create a simple GUI for which I have provided the code for below.
[snip]
i tried to google search this and there were some threads that were
saying
to install tcl but t
MRAB wrote:
> Manzur Ahmed wrote:
> > i wanted to ask you if one of you could help me to use Tkinter. i'm
> > trying to just create a simple GUI for which I have provided the code
> > for below.
> There are some differences between Python 3.x and Python 2.x. In Python
> 3.1 the module is called
Manzur Ahmed wrote:
i wanted to ask you if one of you could help me to use Tkinter. i'm
trying to just create a simple GUI for which I have provided the code
for below.
# Simple GUI
# Demonstrates creating a window
from Tkinter import *
# create the root window
root = Tk ()
# modify the win
i wanted to ask you if one of you could help me to use Tkinter. i'm trying
to just create a simple GUI for which I have provided the code for below.
# Simple GUI
# Demonstrates creating a window
from Tkinter import *
# create the root window
root = Tk ()
# modify the window
root.title("Simple G
On Dec 31, 12:21 am, André wrote:
> I have written a small program (my first Tkinter-based app) to play
> around the idea mentioned on
> http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mo...
> and, in doing so, have encountered a memory leak problem. I have
> seen mentions on
On Tue, 30 Dec 2008 20:21:06 -0800, André wrote:
> I have written a small program (my first Tkinter-based app) to play
> around the idea mentioned on
> http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-
lisa/
> and, in doing so, have encountered a memory leak problem. I hav
I have written a small program (my first Tkinter-based app) to play
around the idea mentioned on
http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/
and, in doing so, have encountered a memory leak problem. I have
seen mentions on the web of using the delete() method of
Hi,
I m using Tkinter and Tix. I'm using Tkinter mainly for all the widgets
except for the TixComboBox for which I use Tix.
My event loop starts like this:
myRoot = Tix.Tk()
myRoot.title("Test Automation")#
myAppGUIObject = myAppGUI(myRoot, logger) #myAPPGUI is the class f
In article <[EMAIL PROTECTED]>,
<[EMAIL PROTECTED]> wrote:
>On Aug 22, 7:20 am, J-Burns <[EMAIL PROTECTED]> wrote:
.
.
.
>> If I have a drop down box in Pythons tkinter, is it possible that the
>> entities that the drop down h
J-Burns wrote:
Hello. Im a bit new to using Tkinter and im not a real pro in
programming itself... :P. Need some help here.
OK, looks like you are getting direct answers, but I thought I'd
mention an easy way to experiment with Tkinter programming.
If you start Idle with the "
J-Burns <[EMAIL PROTECTED]> wrote:
> Problem 1:
>
> How do I make something appear on 2 separate windows using Tkinter? By
> this I mean that the format would be something like this:
>
> You have Page1 : This has 2-3 buttons on it.
> Clicking on each button opens up a new windo
Hello. Im a bit new to using Tkinter and im not a real pro in
programming itself... :P. Need some help here.
Problem 1:
How do I make something appear on 2 separate windows using Tkinter? By
this I mean that the format would be something like this:
You have Page1 : This has 2-3 buttons on it
On Tue, 01 Jul 2008 03:13:42 -0700, viv1tyagi wrote:
> Hi everyone ! ! !
>
> I'm just a month old in the world of Python and trying to develop an
> application using Tkinter in which a new window pops out on a
> particular button press.The code for this new window is in
Hi everyone ! ! !
I'm just a month old in the world of Python and trying to develop an
application using Tkinter in which a new window pops out on a
particular button press.The code for this new window is in
"AddKlas.py" file.
The problem is all the content of the new window is
On May 10, 1:57 pm, Kenneth McDonald
<[EMAIL PROTECTED]> wrote:
> The only trick it that sometimes it isn't obvious how to make the Tcl/
> Tk call via Python.
>
> Ken
>
> On May 10, 2008, at 11:27 AM, Martin v. Löwis wrote:
>
>
>
> >> I am, but "still" isn't the word, I just started. Good, *comple
The only trick it that sometimes it isn't obvious how to make the Tcl/
Tk call via Python.
Ken
On May 10, 2008, at 11:27 AM, Martin v. Löwis wrote:
I am, but "still" isn't the word, I just started. Good, *complete*
docs seem to be hard to find, but using a combination of the free
resources a
> I am, but "still" isn't the word, I just started. Good, *complete*
> docs seem to be hard to find, but using a combination of the free
> resources and going back and forth between them seems to work all
> right so far.
IMO, the trick really is to also have a Tk documentation around.
If you need
Guilherme Polo wrote:
Thanks ;)
And, yes Kevin, I'm planning to submit it for inclusion into Tkinter's core.
Excellent. I hope your effort is successful.
Thanks for support it, and sorry for saying yours was incomplete.
I wasn't trying to sell my version by doing that, was just trying to
say
t;[EMAIL PROTECTED]> wrote:
> Any guesses as to how many people are still using Tkinter? And can anyone
> direct me to good, current docs for Tkinter?
>
> Thanks,
> Ken
> --
> http://mail.python.org/mailman/listinfo/python-list
>
--
http://www.badmuthahubbard.com
--
http://mail.python.org/mailman/listinfo/python-list
2008/5/10 Kevin Walzer <[EMAIL PROTECTED]>:
> Guilherme Polo wrote:
>>
>> 2008/5/10 Zentrader <[EMAIL PROTECTED]>:
>>>
>>> I like New Mexico Tech's site as well. Also, take a look at the PMW
>>> extension for additional widgets, and TkTable and/or TableListWrapper.
>>> http://infohost.nmt.edu/tcc/
Guilherme Polo wrote:
2008/5/10 Zentrader <[EMAIL PROTECTED]>:
I like New Mexico Tech's site as well. Also, take a look at the PMW
extension for additional widgets, and TkTable and/or TableListWrapper.
http://infohost.nmt.edu/tcc/help/pubs/tkinter/
There is also Tile, or Ttk since Tk 8.5, if
Kenneth McDonald wrote:
Any guesses as to how many people are still using Tkinter? And can
anyone direct me to good, current docs for Tkinter?
Thanks,
Ken
I develop Tk applications commercially on Mac OS X, using Tcl and
Python. Here's a screenshot of my Python app:
2008/5/10 Zentrader <[EMAIL PROTECTED]>:
> I like New Mexico Tech's site as well. Also, take a look at the PMW
> extension for additional widgets, and TkTable and/or TableListWrapper.
> http://infohost.nmt.edu/tcc/help/pubs/tkinter/
There is also Tile, or Ttk since Tk 8.5, if you are interested i
I like New Mexico Tech's site as well. Also, take a look at the PMW
extension for additional widgets, and TkTable and/or TableListWrapper.
http://infohost.nmt.edu/tcc/help/pubs/tkinter/
--
http://mail.python.org/mailman/listinfo/python-list
2008/5/10 Kenneth McDonald <[EMAIL PROTECTED]>:
> Any guesses as to how many people are still using Tkinter? And can anyone
> direct me to good, current docs for Tkinter?
>
I will say no to the first question.
Now about the second question.. there are these links you may find in
On May 10, 1:38 am, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote:
> On Sat, 10 May 2008 00:20:33 -0500, Kenneth McDonald wrote:
> > Any guesses as to how many people are still using Tkinter? And can
> > anyone direct me to good, current docs for Tkinter?
>
On Sat, 10 May 2008 00:20:33 -0500, Kenneth McDonald wrote:
> Any guesses as to how many people are still using Tkinter? And can
> anyone direct me to good, current docs for Tkinter?
AFAIK `Tkinter` hasn't changed much over time, so "old" documentation is
still current
Any guesses as to how many people are still using Tkinter? And can
anyone direct me to good, current docs for Tkinter?
Thanks,
Ken
--
http://mail.python.org/mailman/listinfo/python-list
On 9 Jan, 09:24, Fredrik Lundh <[EMAIL PROTECTED]> wrote:
>
[Opening files in applications]
> on windows, you can use the "os.startfile" function:
>
> import os
> os.startfile("mydocument.doc")
>
> (this is the same as double-clicking on a document in the file explorer)
>
> on other p
brindly sujith wrote:
> i am using TKINTER to create GUI application
>
> i want to know how to open a word document in open office or any other
> application
>
> please send me the tkinter coding for this
reposting the reply you received when you posted this on another maili
hi
i am using TKINTER to create GUI application
i want to know how to open a word document in open office or any other
application
please send me the tkinter coding for this
--
http://mail.python.org/mailman/listinfo/python-list
Two existing solutions are TableList + TableListWrapper (Google for
it), and MultiListBox
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/52266 In both
cases you send the program the titles and data and the program takes
care of all of the details. BTW, you can attach a scrollbar to any
lang.python
To:
Sent: Thursday, September 27, 2007 2:42 PM
Subject: Creating Table using Tkinter
> Hi guys i need to make a table to store a certain data using
> Tkinter..I have searched on the group but i have not been able to find
> a solution that would work for me..The thing is that i wa
Hi guys i need to make a table to store a certain data using
Tkinter..I have searched on the group but i have not been able to find
a solution that would work for me..The thing is that i want my table
to be scrollable both horizontally and vertically and i also want to
transmit the data from the
Hi,
I want to record a sound wave from a mic and at the same time invert
it and play the inverted wave.My code goes as follows, however nothing
is written into the E:\inverted.wav file.Thanks in advance for any
help.
from Tkinter import *
root = Tk()
import tkSnack
tkSnack.initializeSnack(root)
t=
On Sat, 21 Apr 2007 09:57:09 -0400, Kevin Walzer wrote:
> Stephen M. Gava wrote:
>> On Fri, 20 Apr 2007 03:28:22 -0700, Rob Wolfe wrote:
> The following thread has various ideas in it:
> http://mail.python.org/pipermail/python-list/2001-
October/107989.html
thanks mike, i found that t
Stephen M. Gava wrote:
> On Fri, 20 Apr 2007 03:28:22 -0700, Rob Wolfe wrote:
The following thread has various ideas in it:
http://mail.python.org/pipermail/python-list/2001-October/107989.html
>>> thanks mike, i found that thread before i posted here, it doesn'rt
>>> answer my question t
On Thu, 19 Apr 2007 23:42:49 -0700, Glenn Hutchings wrote:
> On 20 Apr, 02:54, "Stephen M. Gava" <[EMAIL PROTECTED]>
> wrote:
>> yeah. i feel like i'm being forced to use wxwidgets/wxpython just
>> because i need pretty good html display though.
>
> You could always use a real web browser:
>
>
On Fri, 20 Apr 2007 09:45:16 -0400, Kevin Walzer wrote:
> PySol has an HTML viewer. Here's a link to some discusison about it:
>
> http://mail.python.org/pipermail/tkinter-discuss/2006-
January/000614.html
>
> PySol is GPL, so if your application is also GPL, then it might be an
> option.
thank
1 - 100 of 123 matches
Mail list logo