Text and images?

ilyail3

Active member
Joined
Feb 15, 2005
Messages
31
Programming Experience
1-3
Can I combine text an images in one box?, will I be able to do it throught MS Office 2003 plugin?
 
you mean like put words on top of a picture in a picturebox?

all you need to do is have a picturebox on the form with the image then put a label on top of the picture box with whatever words you'd like displayed

then in code set the label's backcolor property to tansparent:
Label1.Backcolor = Color.Transparent


and there ya go, (changeable) words on a (changeable) picture :)
 
Back
Top