Insert picture in user form

L

LB79

Im trying to add a small JPG file to a user form nut cant seem to find
way to insert it - ive looked through the menus and tried cpoy and past
but no joy. does anyone know how i can do this
 
G

Guest

hi,
put the image control on the form. see toolbox.
set the image controls picture property to the file path
of the image. to do this, on the image control's property
sheet, click the picture property and a small gray box
will appear on the line. click the small gray box and a
open file dialog box will come up. you can browse from
there.
programmaticly
Image1.picture = loadpicture("c:\filepath\pic.pic")
 
D

Dave Peterson

A manual method:

Insert an Image placeholder in your form.
Select it
hit f4 (to see the properties)
scroll down to picture
click on that line
hit the ... to browse for your .jpg file.

(and if you already copied it (so it's in the clipboard), you can select the
..picture property and hit ctrl-v to paste it.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top