
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 310 Articles for GUI-Programming

3K+ Views
The Treeview widget in Tkinter provides a powerful and versatile way to display hierarchical data in a tabular format. By default, users can resize the columns in a Treeview widget, which can affect the visual layout and disrupt the intended design. In certain cases, you may want to disable column resizing to maintain consistency and control over the widget's appearance. In this article, we will explore techniques to disable column resizing in a Treeview widget in Tkinter, allowing you to create a more controlled and user-friendly interface. Understanding Treeview Column Resizing The Treeview widget in Tkinter allows users to ... Read More

683 Views
A Vehicle Identification Number (VIN) is a unique 17-digit code assigned to every vehicle manufactured after 1981. It contains information about the vehicle’s make, model, year of manufacture, country of origin, and other relevant details. In this instruction manual, we will learn how to create a Graphical User Interface (GUI) using Python programming language to extract vehicle information from a VIN number. Prerequisites Before we dive into the details of creating a GUI, you should have a basic understanding of Python programming, object-oriented programming (OOP) concepts, and how to work with the Tkinter module. List of recommended settings pip ... Read More

489 Views
What is Python and what are its advantages? Python is a high-level programming language that is used for a wide range of applications, including web development, scientific computing, data analysis, and artificial intelligence. It has a simple and elegant syntax that makes it easy to read and write, and a large standard library that provides many useful tools and functions. Some of the advantages of Python include its readability, ease of use, flexibility, and portability. It is an open-source language, which means that it is freely available and can be modified and distributed by anyone. Python also has a large ... Read More

362 Views
In today's world, many businesses depend heavily on their online presence. Before setting up a website or purchasing a domain name, it is essential to get as much information as possible about the domain you plan to use. It may include information like domain owner, server location, IP address, WHOIS details, and much more. Therefore, in the following instruction manual, we'll guide you about creating a GUI to get domain information using Tkinter. What is GUI? GUI (Graphical User Interface) is a way to present data to the user in the form of interactive windows, buttons, and menus instead of ... Read More

718 Views
When it comes to networking, IP addresses and domain names are two critical concepts that ensure seamless communication between devices on the internet. In this tutorial, we will learn how to create a Graphical User Interface (GUI) using Python that can be used to find the IP address assigned to a domain name. We will cover the following sections − Understanding IP Addresses and Domain Names Installing the Required Libraries Building the GUI Testing the Application Real World Examples Understanding IP Addresses and Domain Names Before we dive into building the application, it's important to understand what IP ... Read More

1K+ Views
Lyrics are the words that are sung in a song that conveys the meaning and emotions of a song. Python offers several libraries to extract lyrics from a song. In this tutorial, we will create a Graphical User Interface (GUI) using Python’s tkinter library that extracts lyrics from a song. What are the different formats in which songs are available online? There are several formats in which songs are available online, depending on the platform and the type of file. Some of the most common formats are − MP3 (MPEG Audio Layer 3) − This is the most common format ... Read More

248 Views
What is the need for domain? The internet has become a vital part of our daily lives. When it comes to businesses, having an online presence is crucial. Choosing the right domain name is the first step in establishing an online presence for any business. However, finding an available domain name can be a daunting task. In this technical document, we will guide you through the process of creating a graphical user interface (GUI) in Python using the Tkinter module to check domain name availability. What is a domain and what are its components? In the context of the internet, ... Read More

5K+ Views
This article will teach us how to display PDF files in the Tkinter GUI. We will be using the PyMuPDF library to read the pdf files and convert them into images which will then be displayed using Tkinter. For our task, we will do the following steps − Read the PDF file. Define a transformation matrix to apply on the pages of PDF to get their images. Count the total number of pages for error checking. Define the screen (the canvas) for our GUI. Define a helper function for converting a PDF page to a PIL image. Define ... Read More

964 Views
Tkinter is a Python based GUI toolkit that is used to develop desktopbased applications. You can build the different components of an application using tkinter widgets. Tkinter programs are reliable and support crossplatform mechanisms through which a particular application can run on multiple platforms and operating systems. However, there are some of functions and class libraries that work perfectly on Windows but may not work on a Linux system.Tkinter Button widget, specifically in macOS, creates nativelooking buttons that can be customized by using the library functions and parameters available in tkinter. However, you can customize the button by highlighting it ... Read More

2K+ Views
Tkinter offers a wide variety of modules and class libraries using which we can create fully functional applications. Tkinter also provides widgets to build the components and skeletons of an application. The colorchooser module in tkinter is one of them which provides a huge set of colors so that users can pick and set the background color of widgets based on their preference.To add the colorchooser functionality in your application, you have to first import this module in your program using "from tkinter import colorchooser". Next, create a variable to display a color palette using colorchooser.askuser().Since all the colors in ... Read More