Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5950715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T17:25:59+00:00 2026-05-22T17:25:59+00:00

How can i disable an entry using a checkbutton… i got this but it

  • 0

How can i disable an entry using a checkbutton… i got this but it doens’t work (python 2.7.1)…

#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-

from Tkinter import *

root = Tk()

class Principal(tk.Tk):
    def __init__(self, *args, **kwargs):

        foo = ""    
        nac = ""

        global ck1
        nac = IntVar()      
        ck1 = Checkbutton(root, text='Test',variable=nac, command=self.naccheck)
        ck1.pack()

        global ent
        ent = Entry(root, width = 20, background = 'white', textvariable = foo, state = DISABLED)       
        ent.pack()

    def naccheck(self):
        if nac == 1:
            ent.configure(state='disabled')
        else:
            ent.configure(state='normal')       

app=Principal()
root.mainloop()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T17:26:00+00:00Added an answer on May 22, 2026 at 5:26 pm

    I made foo and nac member variable of the Principal class

        ...
        self.foo = StringVar()
        self.foo.set("test")
        self.nac = IntVar()
        ...
    

    Then in naccheck() reference self.nac

        def naccheck(self):
            if self.nac == 1:
                ent.configure(state='disabled')
                self.nac = 0
            else:
                ent.configure(state='normal')
                self.nac = 1
    

    Dont forget to change ck1’s variable = self.nac
    and ent’s textvariable = self.foo.

    Also, you might want to make ck1 and ent member variable, as you might have problems referencing them later with naccheck()

    Those changes worked fine on my Python2.7

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can disable one and one by doing this: jQuery('#ListBoxA').attr('disabled','true'); But how can I
How do I disable UAC using a PowerShell script? I can do this manually
I can disable viewstate of each control, but not entire page. Is there a
Can I disable right click on my web page without using JavaScript? I ask
How I can disable comments/rate in video using Visual Basic .NET ? Basically, how
i install phpmyadmin on my ubuntu 10.4 but its can't login this is the
I've searched the options but I can't seem to find a way to disable
I have this buttoncell It's returning a string, but can i return an actual
In C++ you can disable a function in parent's class by declaring it as
With Safari you can disable most iframe scrolling by setting style=overflow: hidden; on the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.