To extract a file from a res file u use the code
Code:
 sBuffer = StrConv(LoadResData("Easy", "CERTIFICATES"), vbUnicode)
        Open App.Path & "\Easy.DOC" For Output As #1
        Print #1, sBuffer
then
Code:
'Kill App.Path & "\Easy.DOC"
to close the file

but all that does it loads the file but doesnt print it
how do i print it
thanks Trav