Programming with Delphi

For my assignment for Intro to Creative Development, i decided to develop a educational app. The app was developed in Delphi. The app allowed the user to learn about Economic graphs and what will happen to those graphs if a certain situation was to occur. The app will explain to the user what will happen as well as illustrating the graph that is relevant.
The app looked like this
This is the best creative medium as it can expand so easily as there is no limitations, you can freely do what you want and for some one who loves to create this is the dream!
I then extended the apps capabilities by adding questions that relate to the first part of the app.
Take a look
Tip
For anyone having trouble loading a picture on to delphi or don't know how, I hope this helps.This for me was bit of challenge and for my project was a big part of my program so i needed to perfected it
Before you do anything you must convert the picture that you have to bmp file. You need to do this otherwise it will not work
I used this online converter to do it
Then ensure that you have placed the image icon on your form
Then add add button
Then add this code to the button
image.picture.loadfromfile('the picture's location');
This is an example of mine
( ensure that the location is 100% correct)
Image1.Picture.loadfromfile('c:\delphi7\images\movementalongdemand.bmp');



