-
Mar 13th, 2025, 04:08 PM
#1
Thread Starter
Addicted Member
[RESOLVED] How to put a picture on a Form
Hi, I've got a Form project and I need to import a picture, company logo, but there appears to be no way to do it like with VBA.
There also does not seem to be a way to generate icons. If there is it would be nice to know where it is.
-
Mar 13th, 2025, 04:20 PM
#2
Re: How to put a picture on a Form
Use the Form’s BackGroundImage, or put your picture in a PictureBox control if you want to display a smaller picture
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Mar 13th, 2025, 04:24 PM
#3
Re: How to put a picture on a Form
It’s as easy as…
Form1.BackGroundImage= New Bitmap(“file path”)
Or…
PivtureBox1.Image = New Bitmap(“file path”)
Or you can do it in your Form or PictureBox’ properties window at design time
- Coding Examples:
- Features:
- Online Games:
- Compiled Games:
-
Mar 13th, 2025, 05:33 PM
#4
Thread Starter
Addicted Member
Re: How to put a picture on a Form
 Originally Posted by .paul.
It’s as easy as…
Form1.BackGroundImage= New Bitmap(“file path”)
Or…
PivtureBox1.Image = New Bitmap(“file path”)
Or you can do it in your Form or PictureBox’ properties window at design time
Thanks Guys, exactly what I was looking for.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|