The Picture Viewer Project

The second step is to add a timer and create a slide show..
When the user selects a folder all of the picture files in the folder are displayed in the combo box.
When the user selects one of the pictures from the combo box, that picture is now displayed in the picture box.

Continue with the PictureViewer application.

Add the following control to the project:

Double click onTimer1 and write the code shown below:

    Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
If cboPictures.Visible Then
If cboPictures.SelectedIndex < cboPictures.Items.Count - 1 Then
cboPictures.SelectedIndex += 1 'show next picture
Else
cboPictures.SelectedIndex = 0 'go back to first picture
End If
End If
End Sub

Next, we need to modify the code for opening a folder: In

Change this code

If cboPictures.Items.Count > 0 Then
   cboPictures.SelectedIndex = 0
   cboPictures.Visible = True
Else
   cboPictures.Visible = False
End If

To this code:

If cboPictures.Items.Count > 0 Then
   cboPictures.SelectedIndex = 0
   cboPictures.Visible = True
   Timer1.Interval = 6000
   Timer1.Enabled = True
Else
   cboPictures.Visible = False
   Timer1.Enabled = False
End If

Test your program and try opening a folder. You should see the names of the files, but the pictures don't display. This project is now finished!

To do: There are many little enhancements that you could add to this project:


INDEX, Viewing a Picture, Code and instructions to view a picture, Select a folder, Display the picture selected in the combo box, Use a timer to create a slide show
Next lesson: The Pizza Project

Copyright © Zebra0.com
All rights reserved worldwide.

 
 

Use a timer to create a slide show