.resx files are resource lists used in .NET applications.

learn more… | top users | synonyms

0
votes
0answers
24 views

Access denied of random Global Resources in Azure application

Whenever I run the web application, it is fine and the login screen shows. However, when I run the web application in the Azure emulator things go wrong. It cannot execute the operation "CreateFile" ...
1
vote
1answer
32 views

Invalid Resx file. Could not find a part of the path

So, I`m having a little trouble with a project, Error 9 Invalid Resx file. Could not find a part of the path 'D:\Documents and Settings\Dragoone\Desktop\HOME01\Resources\GDWG.wav'. Line 121, ...
0
votes
0answers
36 views

C# Write to .resx file

I need to write to my resx file, using user submitted values. Basically the user inputs a value, and the program has to check the resx file to see if the number exists. If the number doesn't exist, it ...
0
votes
1answer
23 views

How to read from a resx file in the App_LocalResources folder using a specific culture?

To read a resource for a default culture I'd do this: object obj = GetLocalResourceObject("MyTextResourceID.Text"); But what I need is to do the same but to be able to specify a culture for the ...
0
votes
1answer
12 views

ASP.NET inline expression Resources cannot find key

in my solution I have a project Web, which contains all the pages. I have resource file in project ProjectResources which is named MyResources.resx (and another one MyResources.de.resx) On all my ...
0
votes
1answer
56 views

asp.net CurrentUICulture and resx file

In my asp.net app I want to let user to change his profile language and then load respective resx file. I have two global .resx files: LocalizedText.resx LocalizedText.pl.resx protected void ...
0
votes
1answer
39 views

Check if all resources in .resx are used and find calls to nonexisting ones

I have a large Resources.resx file in my application and I'm accessing them with MyResources.GetString("res1"); How to check that for every entry "Entry" in the .resx file exists at least one call ...
2
votes
0answers
23 views

How can I stop ResourceManager from defaulting to my current culture if a key is not found

The question is pretty self-explanatory, but here's a sample reproduction case. I have three resx files: Translations.resx Has code generation enabled and no key-value pairs ...
1
vote
1answer
42 views

Correct Resx file not being chosen for non-base languages

I have a working resx localization setup with Microsoft MVC4 for base languages such as English, French, German, etc., but I'm trying to extend it to more specific languages such as ...
1
vote
1answer
69 views

How to get Name by string Value from a .NET resource (RESX) file

Here's how my RESX file look like: Name Value Comments Rule_seconds seconds seconds Rule_Sound Sound Sound What I want is: Name by string Value, something like ...
0
votes
0answers
17 views

Add generated resource file into solution at runtime

I am creating resource file at run time through code its creating and displaying in resource folder but not showing in solution. But When i do it manually as add existing item, then it was working. ...
0
votes
1answer
26 views

xml:space in resource file of c# winform

I have a windows form application in that i have resource file(.resx)here i write all my error messages like below <data name="Link_Name" xml:space="preserve"> <value>The Link Name ...
0
votes
0answers
35 views

Add a resource to a generated EXE file

I have an issue with adding a resource file to my generated exe file in runtime. I used Microsoft.CSharp.CSharpCodeProvider and System.CodeDom.Compiler.CompilerParameters to generate an exe file in ...
0
votes
1answer
49 views

Method in xaml.cs to change text in xaml from localized resx resource

I have a WP7 application displaying 3 thumbnails at the bottom and a big one at the center of the screen. Upon clicking on each thumbnail, a method in the xaml.cs file is triggered replacing the ...
1
vote
1answer
52 views

Access resource string for specific (non-current) culture

I have an ASP.NET MVC4 application with two resource files in a "Resources" folder, like so: Project Resources Resources.fr-CA.resx Resources.resx I set the current culture based on a user ...
0
votes
0answers
20 views

GetObject for meta:resourcekey not being called in IResourceProvider

I need to move a site's .resx files to a database and implement a Custom Resource Provider using the IResourceProvider interface. I have followed the example at: ...
0
votes
1answer
119 views

dynamically add values to resources (C#)

I want to add values to the resources dynamically through codings(C#). My below coding runs without any error but the values are not getting added to the resource file. protected void ...
0
votes
1answer
31 views

Can I add non UTF-8 content to a .net resx file?

I'm using resx files to store localized content for some web apps. I've been asked to write a test mechanism to know if those resource files have non UTF-8 content on the values. The resx files are ...
0
votes
2answers
79 views

C# Resource Files

My resources are stored in an assembly of their own, and I have a reference to that assembly in my web app. I am able to access resources in two different ways - via compiled constants or by using a ...
0
votes
1answer
65 views

How to use a resx resource file in a T4 template

I cant figure out how to include the resource file (.resx) in the (.tt) T4 template. I tried so far... Importing the namespace <#@ import namespace="T4TemplateResources.resx" #> Also ...
0
votes
1answer
64 views

Cannot view resx file designer Visual Studio

I have a .resx file in my ASP.NET MVC 3 application and there's code in there that generates resources on the fly using the ResXResourceReader class. It's all been working fine but there was a bug ...
1
vote
0answers
67 views

Better tooltip formatting for resource file values?

When using resource files (*.resx) to implement translations, Visual Studio helpfully provides the base-language file's value in a tool-tip whenever you hover over a key: (there I have an entry ...
1
vote
1answer
149 views

How to Handle String Literals in Resource (.resx) Files

All, I have recently been learning a lot about localisation and the use of resource files (.resx). For a particular code, I have a .resx (and ascociated localised versions .de-DE.resx etc.) for each ...
4
votes
1answer
141 views

Performace Overheads when Using Resource Files (.resx)

Note, I am aware of the following questions on this topic: Are there any performance issues or caveats with resource (.resx) files? Are string resources (.resx) properties kept in memory? et ...
1
vote
2answers
177 views

Using resource files (.resx) in javascript

I'm trying to use localization in my project but I can't find a way to access my resx files from javascript. I have been looking around a bit and I don't think the 'AJAX call' method would be ideal ...
0
votes
1answer
194 views

Resource(.resx) file does not change on IIS

I have multilanguage web using resource files. I had them in App_GlobalResources directory and I want the users can modify resx files (language) by yourself. It works fine on my development computer ...
0
votes
1answer
44 views

windows phone - iterating through .resx

I am in the process of learning how to write apps for Windows Phone 7/8. I am working on a simple cookbook application. At first, I hard-coded all the values, but I then moved the data to .resx in ...
0
votes
1answer
93 views

store localized string in resx file?

I am using visual studio 2010 and I create the two resx file and input the localized string in resx file by opening it in visual studio. Here, I want to dynamically input the localized string name and ...
2
votes
1answer
128 views

Using Resources (resx) Inside a ClassLibrary, that can be changed without recompiling

I need to make a ClassLibrary, to contain different Resource Files (resx). This needs to be done, so I can reuse these resources on multiple projects. After reading for quite a while on how to ...
0
votes
1answer
92 views

Dynamically call localized string

I have two resx file (language.resx and language.ne.resx). Call localized string by razor syntax @language.Sports I have string to be changed to corresponding localized string which is retrieved ...
0
votes
2answers
351 views

MVC4 localization. Accessing resx from view

In my view I would like to access resource strings from the specific local resource on that file.. Just as you know it from web-forms: (string)GetLocalResource("Title"); Painless and smooth. The ...
0
votes
0answers
56 views

How to prevent long strings from being written to resx file

Even though my form is not set to be localized, Visual Designer puts text into the .resx instead of directly in the code if I have a label whose text is over 200 characters long. This is problem ...
4
votes
2answers
99 views

How can set the `custom tool` property of an xml file to a T4 file?

we know that asp.net .resx files have an custom tool for generating some c# code (ResXFileCodeGenerator). I have an xml file and I want to set the custom tool property of that to a T4 file. how can ...
7
votes
1answer
111 views

How can i generate a file automatically when another file changes?

I have an xml file (resource.xml) in my asp.net mvc project and a T4 file (resource.tt) to convert that file to json in a .js file (resource.js). The issue is i want to run t4 file automatically when ...
0
votes
0answers
467 views

The item was specified more than once in the “Resources” parameter. Duplicate items are not supported by the “Resources” parameter

While compiling my Visual Studio C# project, i am getting the following error: The item "obj\Debug\SampleProject.Forms.MDIMain.resources" was specified more than once in the "Resources" parameter. ...
1
vote
1answer
83 views

Custom Language Resource file not getting deployed to server

We have an MVC 4 application that has 4 resource files. The default one (Resource.resx), one for Chinese and German (Resource.zn-CH.resx and Resource.de-DE.resx) and then one for a custom language ...
0
votes
1answer
82 views

How to point VS 2010 WinForm Designer to a different Resource File for selecting images?

In the Visual Studio 2010 Forms Designer, you can assign an image from a resource file to various WinForm controls by clicking on the Image property for the control. A "Select Resource" dialog box ...
0
votes
1answer
88 views

asp mvc image reference from resx

I have ASP MVC 4 website. I use ResX files to localize the site to different languages. In one of my pages I display localized HTML content (case study) that has images in it. The whole localized ...
0
votes
1answer
46 views

wp7 quickly localizing a ton of strings in app

I have an app where I am trying to localize about 100 strings into 15+ languages. When it comes to using resx in visual studio, I can only copy/paste into one cell at a time. Naturally, I don't want ...
0
votes
0answers
168 views

How to Create and Deply resx file in SharePoint 2010

I am new to SharePoint. I am using SharePoint Server 2010. I have MUI support for my SharePoint Site. I have create English Source Variation Label. and Germany as Targer Variation Label. I have custom ...
4
votes
1answer
65 views

Is there any .NET standard for dealing with localization yet allowing the users to customize the texts?

We're building an ASP.NET MVC application that is yet not localizable with a lot of Data Annotations DisplayAttribute with hard-coded strings and hard-coded message strings all over the code. Now we ...
0
votes
1answer
157 views

Visual C# localization: Resources DLLs generated only in obj/Debug/tempPE

To internationalize&localize my Visual C# 2010 Express project I created Resources.resx and Resources.fr.resx containing key-value strings: When I press Rebuild, two DLLs get created: ...
0
votes
1answer
227 views

T4 template for PublicResXFileCodeGenerator

I want to do the following: add a switch in my Web.config and whenever it is turned on, any value coming from a .resx file will appear together with the name of the .resx file it came from. This is ...
0
votes
0answers
164 views

Run Custom Tool at build in VS

I'm creating an internal VS template to create new versions of a multilingual website with custom fields filled by a wizard. All is going well, until I try and run the program. Upon running, I ...
5
votes
6answers
358 views

.NET localization tools [closed]

Are there any tools, that ease work with localization in .NET? I mean work with resx files in VS is done pretty ugly from a developer point of view. For example, if I need to add a string to ...
0
votes
0answers
69 views

WinForms form language property (VS2010)

I have a WinForms project and in one of the forms, I accidently double clicked on the Language property in design mode which switched the language from (Default) to Afrikaans. Switching back was just ...
0
votes
1answer
191 views

Unable to get string values from .Resx file within Monodevelop on Mac OSX

From this question : C#, Localization, Resources, and MonoDevelop In the answers part it says : "The usual thing is to store your resources in .resx form in the project, and MonoDevelop will ...
0
votes
0answers
100 views

Save files as byte[] in Resources.resx [duplicate]

Possible Duplicate: load resource as byte array programmaticaly Store Image in .resx as byte[] rather than Bitmap I am creating a web service that will enable users to download several ...
0
votes
2answers
490 views

Create designer.cs file from ResXRersourcewriter generated resource file

I got a programm that generates .resx resource files. Those resource files are used in other projects, that isnt in the same solution as the project that generates the resource files. I wonder now, ...
0
votes
2answers
120 views

Programatically add ressource file to ANOTHER project

I need to create resource files (.resx) programatically. Those ressource files are meant for other projects, not for the one where I programatically create those resx files. Is there a clean way to ...

1 2 3 4 5 9