DelphiDelphiVCLPythonPython GUIWindows

What Is A DelphiVCL.BitBtn And Why Would I Use It?

DelphiVCL.BitBtn is a push button control that can include a bitmap on its face. It’s an alternative to the regular button control which can’t directly use graphics on it. Bitmap buttons exhibit the same behavior as button controls. We use them to initiate actions from forms and dialog boxes. Bitmap buttons implement properties that specify the bitmap images, along with…
Read more
Learn PythonPythonPython GUIVideos

This Is How To Automatically Scrape Web Pages

For someone who needs to gather a huge amount of information from the Internet and wants to save huge time doing it, web scraping definitely the key. Generally, web scraping is the process of gathering information from the Internet. Instead of manually collecting the data, this procedure is done automatically using software like Python. Web Scraping, however, has been a subject for debate whether…
Read more
DelphiDelphiVCLPythonPython GUIWindows

7 Built-In Function Objects Inside The DelphiVCL Library

When running dir() to DelphiVCL library or any DelphiVCL methods and properties in all previous sections, you might find many of Python’s built-in objects and properties. You might also want to read 7 More Built-In Function Objects Inside The DelphiVCL Library which has some other built-in object functions which are related to the ones in this article. In this post, you’ll learn more…
Read more
Learn PythonPythonPython GUIVideos

This Is How To Learn Python By Writing A Tic Tac Toe Game

Tkinter is a Python binding to the Tk GUI toolkit. It is the standard Python interface to the Tk GUI toolkit and is also Python’s de-facto standard GUI. Among the other Python Tools, Tkinter is the most commonly used GUI framework in Python simply because it is simple and surprisingly easy to use. Interestingly, there are many great things to explore using this framework. You can make…
Read more