Skip to main content

Posts

Showing posts with the label TKinter

Featured Post

What is Salesforce ? Who is salesforce developer?

  1. Introduction to Salesforce Definition : Salesforce is the #1 Cloud-based CRM (Customer Relationship Management) platform that helps businesses manage relationships with customers, automate business processes, and analyze performance. Founded : 1999 by Marc Benioff. Type : SaaS (Software as a Service). Tagline : "No Software" – because everything runs on the cloud, without local installations. 2. Why Salesforce? Traditional CRMs were expensive and required servers, installations, and IT staff. Salesforce revolutionized CRM by moving everything to the cloud . Benefits: 🚀 Faster implementation ☁️ Cloud-based (accessible anywhere) 🔄 Customizable without coding (point-and-click tools) 🤝 Strong ecosystem & AppExchange (marketplace like Google Play for Salesforce apps) 🔐 Security & scalability 3. Salesforce Products & Cloud Offerings Salesforce is not just CRM; it has multiple clouds (modules) for different busine...

What is Tkinter? how to create Desktop application using Python, Python GUI

  What is Tkinter? It is the GUI  Library of python which provides a graphical user interface to develop a desktop application using python. Tkinter is a light-weight open-source platform to develop products. Tkinter provides Widget to design form element(TextBox, Button, CheckBox, Radio, Window, Canvas, Multiple Window) How to write code for Tkinter? Tkinter by default integrates under Python Software Tools. How to create Window using Tkinter import tkinter as tk window = tk.Tk() How to add content on Windows? import tkinter as tk window = tk.Tk() txt = tk.Label(text="welcome in tkinter") txt.pack()   # it is used to bind label widget into window window.mainloop()  # it create event loop to handle event Label Widget:- It is used to write content on Windows, we can use a different attribute to change color and background-color label = tk.Label(     text="Hello, Tkinter",     foreground="white",  # Set the text color to white   ...