HOWTO assign embeded icon to togglebutton image

  • Thread starter Thread starter Support
  • Start date Start date
S

Support

Hello:
In VB.NET
I have an embeded icon
I have a Togglebutton which has an image property

Question: How do I programatically point the image property to the embebed
icon
Thanks
Terry
 
* "Support said:
In VB.NET
I have an embeded icon
I have a Togglebutton which has an image property

What's a "togglebutton"?

\\\
picManifestResourceStream.Image = _
New Bitmap( _
System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream( _
"Resources.avblogo.gif" _
) _
)
///
 
Back
Top