Re: [Tkinter-discuss] How to enable load button in python-tkinter widget

2008-06-27 Thread Guilherme Polo
On Fri, Jun 27, 2008 at 2:38 AM, Anil Roy <[EMAIL PROTECTED]> wrote: > > Hi Guilherme, > > I understood what you have said but, there is some confusion in me, because > i am a biginner.. > > You are saying to have two widgets right, so my question is can we do this > by having a single button in th

Re: [Tkinter-discuss] How to enable load button in python-tkinter widget

2008-06-27 Thread Guilherme Polo
On Fri, Jun 27, 2008 at 7:12 AM, Michael O'Donnell <[EMAIL PROTECTED]> wrote: > Hi Anil, > > A pure Tkinter dropdown box: click on a button and a menu drops > down, allowing you to select. If you specify a callback function, this is > called > when you make a selection: > > from Tkinter import *

Re: [Tkinter-discuss] How to enable load button in python-tkinter widget

2008-06-27 Thread Michael O'Donnell
Hi Anil, A pure Tkinter dropdown box: click on a button and a menu drops down, allowing you to select. If you specify a callback function, this is called when you make a selection: from Tkinter import * import os, sys # SelecteButton Class - creates a button which when clicked on gives a popu

Re: [Tkinter-discuss] How to enable load button in python-tkinter widget

2008-06-26 Thread Anil Roy
Hi Guilherme, I understood what you have said but, there is some confusion in me, because i am a biginner.. You are saying to have two widgets right, so my question is can we do this by having a single button in the displsy named as "Browse" and when we click that ,the file explorer opens ?? And

Re: [Tkinter-discuss] How to enable load button in python-tkinter widget

2008-06-26 Thread Guilherme Polo
On Thu, Jun 26, 2008 at 4:24 AM, Anil Roy <[EMAIL PROTECTED]> wrote: > > Hi, > > I need to design a tkinter widget where i should have a browse option button > as you see in all windows application to select a file from my machine. The button is a widget, a Tkinter.Button, and the file browser is

[Tkinter-discuss] How to enable load button in python-tkinter widget

2008-06-26 Thread Anil Roy
Hi, I need to design a tkinter widget where i should have a browse option button as you see in all windows application to select a file from my machine. Also i need to select an integer from some dropdown box. How can i implement this... I m donewith the backend python coding.. but i need help fo