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:
Dim sBuffer As String sBuffer = StrConv(LoadResData(101, "XLs"), vbUnicode) Open App.Path & "\LOG.XLS" For Output As #1 Print #1, sBuffer 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
