vote up 1 vote down star

This may sound like an unusual question, but I am curious as to how i can add an additional column to the resx file setup (so i would have something like "name, value, comment, foo")

I've looked around online and haven't heard of anyone else trying something like this, but i think it might be possible to do this by writing a new resx reader and writer. Just wanted to know if anyone had any insight on this problem, mainly i intend to use this for storing messages and logging them with a priority stored in the resource file (column foo in this case)

flag
Giving credit to Mikael on this one, even though I haven't been able to make a custom reader and writer so visual studio allows me to have my extra column, I am able to modify the schema so long as i don't open the visual studio editor (which i would really like to do.) If anyone has any more input on how to generate a working reader/writer for a 3 or more column resx file i would appreciate it – MicroPirate Oct 30 at 14:18
I edited my answer. Seems to me the built-in VS editor is locked to the default resx format. – Mikael Svenson Oct 31 at 13:46

2 Answers

vote up 1 vote down check

You can open the resx file with XML editor and modify the schema, but the built in resx editor in Visual Studio will remove any column that you add manually to the schema.

But by creating your own reader it should be possible.

[Edit] I duplicated the ResXResourceReader/Writer from the .Net framework, but when I add these to the .resx file the Managed Resource Editor in .Net throws an error. My best suggestion is to add a new column to the schema and use another editor like the one at http://madskristensen.net/post/A-NET-resource-editor-application-for-resx-files.aspx. Just modify the code to account for your extra column.

link|flag
is there any way to override the default Visual Studio editor? It would be nice to use the editor if possible, but i can write my own small application to handle the new column if need be. I am mainly concerned by the "Visual Studio will remove any column that you add" part, since i do not want it to just drop the logging priorities or anything else that may be added. – MicroPirate Oct 28 at 19:48
I was a bit premature with my answer. They are removed due to the reference in the resx file to System.Resources.ResXResourceReader and System.Resources.ResXResourceWriter. If you inherit these or implement IResourceReader in your own reader/writer and put the dll in the GAC, I'm sure you can extend the schema and add another column. – Mikael Svenson Oct 28 at 20:58
looks like i will have to get on this, and with any luck will be back in a couple days to check your answer. – MicroPirate Oct 28 at 21:27
I looked at the current reader/writer via reflector, and I think you could extract the code and create your own based on it. Inheriting it seems harder since a lot of the methods you want to override are private. I might have time to look at it further this weekend, unless you decide to use something else than resx. Why do you need the .resx format? – Mikael Svenson Oct 28 at 21:41
it's for simplicity purposes, the people i am working with on this project need to be able to edit informaiton/messages the stored information, currently a db is used, but it takes a while to get around our source control process to make changes. It was requested that I some how implement this via resx files, and i am going to need to use more than the 3 columns to make it work (while avoiding some nastier methods of implementation.) – MicroPirate Oct 28 at 21:50
vote up 0 vote down

Try using a simple naming system to store the key-value pairs for your "name", e.g.:

name->"value"
name-comment->"comment value"
name-foo->"foo value"

This would let you store any number of name-key->value pairs for your "new columns".

If your requirements are more complex & subtle, then look into writing your own resource reader/writer.

Also, this sounds like you've got a requirement that more closely matches a database table. Look at using SQLite as a data store, possibly.

link|flag
1  
you are right on the database idea, i am actually trying to move away from that since it will make it harder to port the application to other machines that will need the stored data. – MicroPirate Oct 28 at 19:45
SQLite is embeddable in your application. You can easily move it around between machines (or move its data file) without any kind of additional installation steps. However you lose all the nice stuff of using resource files... Stick with my first suggestion! – Mike Atlas Oct 28 at 20:01
bear in mind the other reason for using resx files is because we want to internationalize our product. – MicroPirate Oct 29 at 14:21
then go with the naming system i suggested. if msft updates resx functionality in the future you can be guaranteed it will be compatible with little upgrade effort on your end. – Mike Atlas Oct 29 at 19:08
yeah unfortuneatly that was the solution I also came up with, it will work, I was just hoping I could establish some official column, which is proving difficult as I also need a custom dictionary classes to support additional value columns. – MicroPirate Oct 29 at 19:22
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.