We assume that its saved as bytes.
Create i FileStream object, call the function .Write(). Then you're actually done.
vb.net Code:
Dim fs As System.IO.FileStream = New System.IO.FileStream("Path/<filename>", IO.FileMode.Create) fs.Write(My.Resources.<filename>, 0, My.Resources.<filename>.Length)




Reply With Quote