I've seen some topics on this subject but none of them wants to work in my case. In my Windows Forms app I have a ordinary Resources
catalog containing some images and .rtf
files. It looks like this:
There's no problem for me to load pictures from it as:
Bitmap bmp = Properties.Resources.Cut_6523;
But, for some reason, I am unable to do the same with .rtf
files (only bitmaps are available).
What am I doing wrong?