sound files

  • Thread starter Thread starter andreas
  • Start date Start date
A

andreas

Hi,
with imagelist it is possible to hide pictures files in a program
is there a possibility to hide sound files (like wav) in a vb.net program?
thanks for any response
 
Yes. Simply add the file you wish to compile into your application's
executable to your project. Select the file and change property from
Content to Embedded Resource. You can then call some methods somewhere
within the Reflection namespace to get a byte array for that file. Read up
on MSDN about embedding resources in your application.

- Andrew
 
Back
Top