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 7536519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T06:35:50+00:00 2026-05-30T06:35:50+00:00

I would like to know how to create an application in Windows that does

  • 0

I would like to know how to create an application in Windows that does not have the default border; particularly the title bar with minimize, maximize, and close buttons.
I’m thinking of writing a ticker program that takes up a narrow space at the top or bottom of the screen, but I won’t attempt it unless it’s possible to make a thin application in Python. Any help with terminology is appreciated; maybe I don’t know how to ask the right question in searching. Does Tkinter have this option?
Thanks

  • 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-30T06:35:51+00:00Added an answer on May 30, 2026 at 6:35 am

    I found an example that answered my question here. overrideredirect(1) is the key function.

    I like this method because I’m familiar with Tk and preferred a Tk solution, but see the other answers for alternate solutions.

    import tkMessageBox
    from Tkinter import *
    
    class App():
        def __init__(self):
            self.root = Tk()
            self.root.overrideredirect(1)
            self.frame = Frame(self.root, width=320, height=200,
                               borderwidth=2, relief=RAISED)
            self.frame.pack_propagate(False)
            self.frame.pack()
            self.bQuit = Button(self.frame, text="Quit",
                                command=self.root.quit)
            self.bQuit.pack(pady=20)
            self.bHello = Button(self.frame, text="Hello",
                                 command=self.hello)
            self.bHello.pack(pady=20)
    
        def hello(self):
            tkMessageBox.showinfo("Popup", "Hello!")
    
    app = App()
    app.root.mainloop()
    

    Just need to add your own kill button or quit method.

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

Sidebar

Related Questions

I'd like to know how one would create an application that starts in the
I have a windows application which has a complex GUI that I would like
I would like to create an application that has 3-4 frames (or windows) where
I would like to know how to create a php function that can be
I would like to know How to create a fps-game with SDL lib? Are
I would like to know a way to create an XML file using MySQL
I would like to know if there is a way to take create a
I would like to create a multi-dimensional array with two variables but don't know
I really want to create a stunning-looking GUI desktop application that looks like, for
I have a ASP.NET application running on Windows 2003 that needs to communicate with

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.