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
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 *
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
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
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
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