Just to make sure im doing it right then
vb Code:
  1. Private Sub SaveResource(ByVal ResName As String, ByVal OutPath As String)
  2.  
  3.         ' Get the Embedded Resource
  4.         Dim ResStream As Byte() = My.Resources.ResourceManager.GetObject[U](ResName)[/U]
  5.  
  6.         Dim oFileStream As System.IO.FileStream
  7.         oFileStream = New System.IO.FileStream([U]OutPath[/U], System.IO.FileMode.Create)
  8.         oFileStream.Write(ResStream, 0, ResStream.Length)
  9.         oFileStream.Close()
  10.         oFileStream.Dispose()
  11.  
  12.     End Sub


the 2 underlined parts need to be changed (MyProgram) and then where the outputpath is ie the temp folder in windows ?