I ilyail3 Active member Joined Feb 15, 2005 Messages 31 Programming Experience 1-3 Jun 3, 2005 #1 Can I combine text an images in one box?, will I be able to do it throught MS Office 2003 plugin?
JuggaloBrotha VB.NET Forum Moderator Staff member Joined Jun 3, 2004 Messages 4,530 Location Lansing, MI; USA Programming Experience 10+ Jun 4, 2005 #2 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 Upvote 0 Downvote
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