Re: gui doubt

2010-06-17 Thread Robert Kern
On 6/17/10 10:38 AM, Tim Chase wrote: On 06/17/2010 10:07 AM, Andreas Tawn wrote: On 6/16/10 10:40 PM, madhuri vio wrote: which performs the transcription of dna to rna [snip] Seems like a simple problem... or am I missing something? def translate(): return "dna".replace("d", "r") And I un

Re: gui doubt

2010-06-17 Thread Steven W. Orr
On 06/17/10 01:40, quoth madhuri vio: > if i want to create a button > which performs the transcription of dna to rna > using tkinter in a gui... > can u give me the method... > > -- > madhuri :) > Dear Madasahatter. You need to read the description below on how to properly implement and use th

Re: gui doubt

2010-06-17 Thread Tim Chase
On 06/17/2010 10:07 AM, Andreas Tawn wrote: On 6/16/10 10:40 PM, madhuri vio wrote: which performs the transcription of dna to rna [snip] Seems like a simple problem... or am I missing something? def translate(): return "dna".replace("d", "r") And I understand people in bioinformatics g

Re: gui doubt

2010-06-17 Thread Bruno Desthuilliers
Andreas Tawn a écrit : On 06/17/2010 01:04 AM, Stephen Hansen wrote: On 6/16/10 10:40 PM, madhuri vio wrote: if i want to create a button which performs the transcription of dna to rna (snip the GUI part) Seems like a simple problem... or am I missing something? def translate(): return

RE: gui doubt

2010-06-17 Thread Andreas Tawn
> On 06/17/2010 01:04 AM, Stephen Hansen wrote: > > On 6/16/10 10:40 PM, madhuri vio wrote: > >> if i want to create a button > >> which performs the transcription of dna to rna > >> using tkinter in a gui... > >> can u give me the method... > > > > You can not possibly be serious. > > Oh, it's no

Re: gui doubt

2010-06-17 Thread Tim Chase
On 06/17/2010 01:04 AM, Stephen Hansen wrote: On 6/16/10 10:40 PM, madhuri vio wrote: if i want to create a button which performs the transcription of dna to rna using tkinter in a gui... can u give me the method... You can not possibly be serious. Oh, it's not that bad [dna2rna

Re: gui doubt

2010-06-16 Thread Stephen Hansen
On 6/16/10 10:40 PM, madhuri vio wrote: > if i want to create a button > which performs the transcription of dna to rna > using tkinter in a gui... > can u give me the method... You can not possibly be serious. -- Stephen Hansen ... Also: Ixokai ... Mail: me+list/python (AT) ixokai (DO

gui doubt

2010-06-16 Thread madhuri vio
if i want to create a button which performs the transcription of dna to rna using tkinter in a gui... can u give me the method... -- madhuri :) -- http://mail.python.org/mailman/listinfo/python-list

Re: gui doubt

2010-06-10 Thread Dan Stromberg
You probably should tell us what GUI toolkit you're using. But if your GUI toolkit has the concept of a "vertical box", then create a vertical box, add it to your window, and put things in the vertical box. To put your widget at the bottom of your vertical box, append to the end it last or insert

gui doubt

2010-06-10 Thread madhuri vio
how do i get the buttons at the bottom of the tool i create??? what is the command for side i need to mention??? -- http://mail.python.org/mailman/listinfo/python-list