Forms are a bit boring sometimes, right? Spice it a little bit with a Fade In animation effect on startup. That boring square area of form will amuse the users a bit more.
Average Calculation with List of Numbers (GUI)
Average calculation is an easy formula to practice your programing skills. We have seen a CLI average calculator program of unlimited numbers, now its time for a GUI project.
Calculate Average of Unlimited Numbers
We have seen a lot of average calculation programs. They have limit to their numbers of input. So we have a code that will let you enter number to your heart’s content.
How to Install Lazarus 1.0.8 on Ubuntu 13.04 (Raring)
Ubuntu 13.04 has been released recently but its repo has an outdated version of Lazarus (0.9.30.4). Lazarus is at version 1.0.8 stable with FPC 2.6.2. This guide serves you as an installation guide to having the best of both worlds. Learn how to get the Latest Lazarus running in your latest Ubuntu.
How to Add, Delete, Clear Items of a ListBox
Learn how to code a program to list different things. Make your own lists with your own program! Utilize this article to list many things that you have never listed before!
How to show ToolTip, Balloon Tip and other short help text
Tooltips are text that appears as a short help for a component when we keep our mouse over it for a while. We can add single line or multiline tooltips easily. Here’s how…
Image Copy Paste: Storing an Image in Clipboard & Retrieving it
In paint programs, we see a function to copy an image to clipboard and paste it from there. Paste an image from anywhere, Photoshop, Firefox in your own program! Here’s how…
A Simple Image Viewer from Start to Finish
Today we are going to make a simple image viewer. It will have a lot of functionality but with only 5 lines of code!
How to Cut Copy Paste Text with code
Word processors and even browsers have cut, copy, paste functions. You have used them many times in your life. But now make yours!
A simple calculator project
There are many calculator programs out there… with hundreds of buttons to click and thousands of lines of codes to implement those functions. But in this little project we discover a simple calculator…by hand…