Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs.
If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:
Microsoft Certified Partners -
https://partner.microsoft.com/global/30000104Microsoft Advisory Services -
http://support.microsoft.com/gp/advisoryserviceFor more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMSCreating the User Form and the Macro Code
- Save and close any open workbooks, create a new workbook, and then
start the Visual Basic Editor (press ALT+F11).
- On the Insert menu, click UserForm.
- Add an image control near the top and center of the user form, and then set the following values for the properties for the image control.
Property Value
-----------------
Name Image1
AutoSize True
Height 100
Width 100
- Add an option button to the user form below the image control and set
the following values for the properties for the option button.
Property Value
------------------------
Name OptionButton1
Caption Hi
- Add another option button below the first option button
and set the following values for the properties for the option button.
Property Value
------------------------
Name OptionButton2
Caption Bye
- Add another option button below the second option button and set the following values for the properties for the option button.
Property Value
------------------------
Name OptionButton3
Caption Clear
- Double-click the user form to display the code module that is associated with the user form.
- Type the following code for the Initialize event for the user form:
Private Sub UserForm_Initialize()
'Select the "Hi" option button.
OptionButton1.Value = True
'Load the Hi.bmp picture file into the Image control.
Image1.Picture = LoadPicture("C:\Windows\Desktop\hi.bmp")
End Sub
Customizing the Macro for the Path to Your Desktop
NOTE: The path to your Desktop folder may be different, depending on how
you logged on to Windows. If you log on to Windows with a password, the
Desktop location may be the Windows\Profiles\<username>\Desktop folder.
Therefore, you must use a different path in the
LoadPicture function and in the following
OptionButton functions.
To customize the macro for the path to your desktop:
- Type the following code for the Click events for the three option buttons:
Private Sub OptionButton1_Click()
'Load the Hi.bmp picture file into the Image control.
Image1.Picture = LoadPicture("C:\Windows\Desktop\hi.bmp")
End Sub
Private Sub OptionButton2_Click()
'Load the Bye.bmp picture file into the Image control.
Image1.Picture = LoadPicture("C:\Windows\Desktop\bye.bmp")
End Sub
Private Sub OptionButton3_Click()
'Clear the picture file in the Image control.
Image1.Picture = LoadPicture("")
End Sub
Creating the Two Picture Files
- Start Microsoft Paint.
- Create the word Hi by free hand. The
letters should be about 1.5 inches tall.
- On the Paint toolbar, click Select, and then draw a square box around the letters you created. The sides of the box should be about 2 inches long.
- On the Edit menu, click Copy To.
- In the Copy To dialog box, locate your Desktop, type Hi.bmp in the File name box, and then click Save to save the file as "Hi.bmp".
- Repeat steps 2-5, but create the word Bye by free hand, and then save the file to your Desktop as "Bye.bmp".
- Quit Microsoft Paint.
NOTE: It is important to save your picture files to the Desktop because the macro code in this article refers to files in your Desktop folder.
Running the Macro
- In the Microsoft Excel Visual Basic Editor, run your user form.
The user form is displayed. The picture in the image control is the Hi.bmp picture, and the "Hi" option button is selected.
- Click the "Bye" option button.
The picture in the image control is the Bye.bmp picture, and the "Bye"
option button is selected.
- Click the "Clear" option button.
The picture in the image control is cleared completely.
- Close the user form.
NOTE: The image control in the user form does not display any picture when you view the user form while you are designing the user form.