Frage

What is the exact name of the String Table Resource Type (such as BITMAP, etc)? I'm using Visual Basic.

I've searched and I can't find anything regarding it.

War es hilfreich?

Lösung

That's not really the way it works. Each string you put in the string table will become a property. Of the Resources module. You access them in your code with My.Resources.Foo for a string named "Foo".

You can see all this by putting the Solution Explorer window into guru mode. Click the Show All Files icon in the toolbar at the top of the Solution Explorer window. You'll now see everything that's part of your project, including the auto-generated files. Open the My Project node, the Resources.resx node and double-click the Resources.Designer.vb node. You'll see the code that is auto-generated from the resources you entered. Don't edit the file.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top