|
|
|
To add an image as an embedded resource in a Windows Forms application, add the image file to the project with Project | Add Existing Item. Then select the file in the Solution Explorer, go to the Properties Window, and set its Build Action property to Embedded Resource. At this point the file will be embedded within your compiled file, when you build the project.
The following routine shows how to load the embedded image in a PictureBox, at runtime: |
Click here to copy the following block | Sub SetPictureBoxFromResource(ByVal picBox As PictureBox, _ ByVal bmpName As String) Dim stream As System.IO.Stream = Me.GetType() _ .Assembly.GetManifestResourceStream(bmpName) If Not stream Is Nothing Then Dim bmp As New Bitmap(stream) If Not bmp Is Nothing Then picBox.Image = bmp End If End If End Sub |
The routine is called like this: |
Note that as a second parameter you pass the embedded resource name, with the project's default namespace as a prefix.
|
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|