Well, assuming TToolbar is available.
A default application: create a new "VCL Application" project (if that's what it's called in Delphi 5).
On your form, drag a TToolbar to add it
You also add a TImageList for the image list.
- Right-click on the TImageList in your form to edit and add a list of icons.
- Click on the TToolbar you just added. In the properties -> Link, you choose your image list (e.g., ImageList1) in Images
- Now, if you right-click on the TToolbar you just added, you can select "New button". In the properties of this button, you can then choose the ImageIndex that corresponds to the image number in your image list.
For example, if ImageIndex is set to 0, it's the first image you added to the list. Do the same for all your buttons.
If you double-click on a button on your toolbar, you can edit the code that will run when the button is clicked.
You will have a toolbar with buttons that have images.
I'm not sure if I explained myself well, but it's sometimes difficult to explain remotely like this! LOL