Grid

Python: Variable Strength Password Generator

Submitted by Dom Heathpole on

Scope of this Tutorial:

This generator uses Tkinter to create a GUI wrapper around the password generator functions/methods. It uses a visual color-coded system to indicate how strong the password is, and a slider to select how long the desired password will be. The code automatically places the generated password onto the system clipboard. This python code has also been optimized to work in both Python 2.xx and Python3.xx. The attached files are well commented.

GridLayout as Layout Manager in Java

Submitted by donbermoy on
This tutorial is about the GridLayout as Layout Manager in Java. A GridLayout is a layout where it has a grid within a component. This layout ignores the sizes of the component and resizes them fit the cell's dimension of the grid. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of gridLayout.java. 2.

Creating a Simple GUI in Python

Submitted by Yorkiebar on
Introduction: This tutorial is going to be on how to create a GUI in Python using Tkinter. Tkinter: Tkinter is a basic package to give your projects a simple GUI with the essential GUI elements such as textboxes, checkboxes, buttons and more. Our Program: Our program is going to be a simple program where the user enters text in to a textbox, then clicks a button to get it output to the console.