Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
8answers
433 views

Preventing Resource DLLs from being hacked

I develop in C++/MFC and have placed all the resources in a separate DLL. I have seen cases where the resource DLL is modified and the product is sold illegally with different name, graphics etc. ...
2
votes
1answer
218 views

How Do I Get The Resource DLL Code Samples In The Windows SDKs To Compile And Run?

I am currently trying to build a Resource DLL on on Windows Server 2003 and 2008. I am currently working with the Resource DLL code samples supplied with the Windows SDKs, and I can't get them to ...
0
votes
1answer
98 views

How to modyfy resource in a DLL from this DLL?

I'm writing an add-on for IE using VC++ and ATL. It's a simple DLL and I have a text file that I use as a resource. This answer helped me in doing this. I have a question about updating resource. ...
0
votes
1answer
665 views

How to load text file from Resources in VC++?

I'm writing a DLL in VC++ and I need to use external text file. I have something like this right now: ifstream file; string line; file.open("C:\\Users\\Me\\Desktop\\textfile.txt"); ...
0
votes
1answer
206 views

how to access files in a resource dll

I have created a resource DLL for an IE addon with Visual C++ in Visual Studio 2005, but I cannot access the files (html and icons) within the DLL. I tried with and without a resource file but I still ...