Good day,
I keep getting this error message when trying to open Python 3.8.5 on my
computer windows 7 , 64 bit.
---
python.exe - System Error
---
The program can't start because api-ms-win-crt-runtime-l1-1-0.dll is missing
from your computer. Try
On 2021-01-06, Joseph Milroy Felix Moraes (Moraes) via Python-list
wrote:
> Good day,
>
> I keep getting this error message when trying to open Python 3.8.5 on my
> computer windows 7 , 64 bit.
>
> ---
> python.exe - System Error
> ---
> The progra
My application's menu has lines like this:
file_menu.add_command(
label = 'New',
command = self.callbacks['file->new', underline 0],
accelerator = 'Ctrl+N'
)
Python reports a syntax error when specifying the string index to underline;
it rejects
On 2021-01-06 at 10:32:58 -0800,
Rich Shepard wrote:
> My application's menu has lines like this:
> file_menu.add_command(
> label = 'New',
> command = self.callbacks['file->new', underline 0],
> accelerator = 'Ctrl+N'
> )
>
> Python reports a
On Wed, 6 Jan 2021, 2qdxy4rzwzuui...@potatochowder.com wrote:
I'm not a TKinter expert (nor even a current user), but that line that
begins with whitespace and "command =" looks suspicious. As far as I can
see, Python is correct to call it syntactically erroneous.
Yes, the line above it needed
On 2021-01-06 at 11:18:15 -0800,
Rich Shepard wrote:
> On Wed, 6 Jan 2021, 2qdxy4rzwzuui...@potatochowder.com wrote:
>
> > I'm not a TKinter expert (nor even a current user), but that line that
> > begins with whitespace and "command =" looks suspicious. As far as I can
> > see, Python is correc
On 1/6/2021 1:32 PM, Rich Shepard wrote:
My application's menu has lines like this:
file_menu.add_command(
label = 'New',
command = self.callbacks['file->new', underline 0],
accelerator = 'Ctrl+N'
)
'underline' has nothing to do with look
On Wed, 6 Jan 2021, 2qdxy4rzwzuui...@potatochowder.com wrote:
For the sake of future generations who may run into this issue, can you
post the complete, correct call to file_menu.add_command?
This is the working version of the stanza I initially posted:
file_menu.add_command(
On Thu, Jan 7, 2021 at 7:43 AM Rich Shepard wrote:
> This is the working version of the stanza I initially posted:
>
> file_menu.add_command(
> label = 'New',
> command = self.callbacks['file->new', underline: 0],
> accelerator = 'Ctrl+N'
> )
On Thu, 7 Jan 2021, Chris Angelico wrote:
Are you sure that this works? It's syntactically valid, but I don't
think it means what you think it does.
ChrisA,
I'm always open to learning. There's no error generated ... yet the
application doesn' open so it's time to run it through pdb.
Regards
On Thu, Jan 7, 2021 at 8:04 AM Rich Shepard wrote:
>
> On Thu, 7 Jan 2021, Chris Angelico wrote:
>
> > Are you sure that this works? It's syntactically valid, but I don't
> > think it means what you think it does.
>
> ChrisA,
>
> I'm always open to learning. There's no error generated ... yet the
On Thu, 7 Jan 2021, Chris Angelico wrote:
Cool. Terry had something on the subject in the other thread; I think
that's a good place to start. (I don't know much about Tkinter, this line
of code just looked odd in general Python syntax.)
ChrisA,
It's been a long time since I wrote any Python c
On 2021-01-06, Rich Shepard wrote:
> On Wed, 6 Jan 2021, 2qdxy4rzwzuui...@potatochowder.com wrote:
>
>> For the sake of future generations who may run into this issue, can you
>> post the complete, correct call to file_menu.add_command?
>
> This is the working version of the stanza I initially pos
On 1/6/2021 4:03 PM, Rich Shepard wrote:
On Thu, 7 Jan 2021, Chris Angelico wrote:
Are you sure that this works? It's syntactically valid, but I don't
think it means what you think it does.
ChrisA,
I'm always open to learning. There's no error generated ... yet the
application doesn' open so
On Thu, Jan 7, 2021 at 9:22 AM Grant Edwards wrote:
>
> On 2021-01-06, Rich Shepard wrote:
> > On Wed, 6 Jan 2021, 2qdxy4rzwzuui...@potatochowder.com wrote:
> >
> >> For the sake of future generations who may run into this issue, can you
> >> post the complete, correct call to file_menu.add_comma
Hi!
Does anybody know why cmd method isn't called when I change the button
state (clicking on it) in this example?
I know that this seems a weird class use. But why doesn't it work?
Thanks.
class C:
from tkinter import Checkbutton
import tkinter
@staticmethod
def cmd():
p
Am 07.01.21 um 08:29 schrieb Paulo da Silva:
Does anybody know why cmd method isn't called when I change the button
state (clicking on it) in this example?
I know that this seems a weird class use. But why doesn't it work?
Thanks.
class C:
from tkinter import Checkbutton
import tkinte
17 matches
Mail list logo