Hi.

I want to open an excel file (or access file) I have included in my
exe via a resource file. The file contains confidential pricing.

I have found a snipit, but what it does is saves
the excel resouce to disk. This is unacceptable.

Here is the snipit.

VB Code:
  1. Dim sBuffer As String
  2.     sBuffer = StrConv(LoadResData(101, "XLs"), vbUnicode)
  3.     Open App.Path & "\LOG.XLS" For Output As #1
  4.     Print #1, sBuffer
  5.     Close #1

WHAT i need to do is find a way to access the info in that resource file ...but NOT saving it to disk first....

Is this possible. ( I am thinking if it is txt file. it would be easier...
But i dont know)

Any suggestions?

Seahag