Extremely Easy questions

  • Thread starter Thread starter JonnyF2000
  • Start date Start date
J

JonnyF2000

Guest
Hello,

My name is Jon, im 15 years old and live in michigan, i just started taking a computer programing class and this is my techers first year of using visual basic.net, so he doesn't know anything about it. We have got 2 assignments that i can't figure out how to do, and please don't make fun of me. I have no book on how to use this program, and my techer doesn't know anything like i said, and all the stuff i find on the interent is way to advanced for me. I was just wondering how to make it so that when i click a radio button a picture appears as a background of a label. Any help would be very much appreciated, and i'm sorry if this is to basic for this forum. If it is could someone please direct me to one more suited for newbies like me. Thanks in Advance, Jon
 
Hi,

heres one way to do it.

Dim oImage As New System.Drawing.Bitmap("G:\Windows\Zapotec.bmp")

Label1.BackgroundImage = oImage

The dim is suppose to be on all one line.

Good Luck,
Gazzo.

[edit]Forgot a "(". I added it in for you.[/edit]
 
Last edited by a moderator:
Back
Top