DelphiDelphiVCLPythonPython GUIWindows

What Is The Lines Property And How Do I Use It?

The Lines Property contains the individual lines of text in the memo control. This works for native Windows development. We use Lines to manipulate text in a memo control on a line-by-line basis. Lines is a DelphiVCL.Strings or TStrings object, so the TStrings methods may be used for Lines to perform manipulations such as counting the lines of text, adding new lines, deleting lines, or…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What Is The DelphiVCL.Application.CreateForm Method?

When you develop windows software use CreateForm method or DelphiVCL.Application.CreateForm to create a new form. Call CreateForm to dynamically create a form at runtime. Developers do not need to add code for creating most forms, because typically one or more calls to CreateForm are added automatically to the project’s source when using the form designer. CreateForm creates a new form…
Read more
Learn PythonPythonPython GUIWindows

What Are The Differences Between C++ and Python?

Whether you write a C++ app or a Python app you are using two quite different programming languages. They are both considered to be the most popular and most used programming languages of all time. When comparing the two programming languages, most people often describe C++ as a difficult but fast language while Python is often characterized by its simplicity yet slow performance. Interestingly…
Read more
DelphiLearn PythonPythonPython GUIRAD StudioWindows

What You Need To Automatically Scrape Millions Of Tweets

Are you looking for an easy and powerful way to collect MASSIVE amounts of tweets for your research and build a nice GUI for them? You can easily collect thousands or even millions of tweets by combining snscrape, tweepy, and Python4Delphi library, inside Delphi and C++Builder. This post will guide you on how to run the snscrape and tweepy library and use Python for Windows app development so…
Read more