Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
9k views

Could not find any resources appropriate for the specified culture or the neutral culture

I have two ASP.NET Web projects (ProjectA and ProjectB). When class in ProjectA is instantiating a class of ProjectB which uses a resource file Blah.resx, I get this error: An exception of type ...
10
votes
1answer
1k views

Extend C# file based resource manager

I want to store my resources in a different file format than NET's .resources (in particular, .po), so I wrote a custom resource set with a custom resource reader to retrieve them. I created a ...
8
votes
1answer
547 views

ResourceManager not selecting correct resource set when using custom culture

I have created a localized MVC website using the code found on this blog by Alex Adamyan. This is working great if I use an existing culture. However, I am trying to localize for Tagalog (tl or ...
5
votes
1answer
277 views

Get all strings from resourcemanager

I need to write a program, that reads all string resources from dll and insert them into some table. I have the method, that reads resources: private static ...
3
votes
5answers
3k views

C# - Get number of references to object

I'm trying to write a simple Resource Manager for the little hobby game I'm writing. One of the tasks that this resource manager needs to do is unloading unused resources. I can think of doing this in ...
3
votes
1answer
1k views

Why does ResourceManager.GetResourceSet return null on the first request after a build? (C#)

I'm working on a large-ish web application built in C# (asp.net). I've got a simple aspx page that serves localized strings to the client browser for use in javascript controls. To get the strings, I ...
3
votes
3answers
5k views

ResourceManager trying to load .resources not .resx file

I am trying to load a resx file in my .net website using: ResourceManager rm = new ResourceManager( "Project.Resource", Assembly.GetExecutingAssembly() ); The Resource.resx file is in the folder ...
2
votes
1answer
337 views

Asp.net localization - override which resx file the page will use

Trying to sort of combine themes and localization... what i am doing: Localizing A.aspx, creates: App_Localresources\a.aspx.resx App_Localresources\a.aspx.resx.fr ... However, i want to add more ...
2
votes
1answer
452 views

Specifying custom resource file for an ASP.NET page/usercontrol

If I have a page called Default.aspx, ASP.NET automatically uses the resource file named Default.aspx.resx in App_LocalResources for localizing server controls in the page. But for some reason, I ...
2
votes
2answers
217 views

How can a file based ResourceManager fall back to the embedded resources?

Our winforms application needs to be able to distribute ad-hoc translations in the *.resource format and use these in preference to the embedded translations. Is there a way to acheive this fall back ...
2
votes
1answer
728 views

How to retrieve path for a file embedded in Resources (Resource Manager)

I am trying to retrieve file path for a html file that is embedded in resource (resx file) in VS2008 C# project. I want to give path of this file to native webbrowser control (PIEHtml) to be able to ...
2
votes
2answers
2k views

Flex: Wrapper for ResourceManager.getInstance().getString is not notified of localeChain updates

I have written a utility library that contains some of my most used functions. There I have a wrapper for ResourceManager.getString to simplify using the resource manager in non-UI classes: package ...
2
votes
2answers
3k views

HttpContext.GetGlobalResourceObject always returns null

I created two files in the App_GlobalResources folder: SiteResources.en-US.resx SiteResources.sp-SP.resx Both contain a value for "SiteTitleSeparator". Here is what I am trying to do (The ...
2
votes
2answers
821 views

Problem with pulling out icons from resource bundle in Flex

I'm having trouble with getting icons from resource bundle in Flex. Here's the scenario: Directory structure looks like this: -ResourceManagerTest -resources -icons -icon1.png ...
2
votes
4answers
3k views

ASP.Net and GetType()

I want to get a type of a "BasePage" object that I am creating. Every Page object is based off BasePage. For instance, I have a Login.aspx and in my code-behind and a class that has a method Display: ...
1
vote
0answers
18 views

Storing and loading internationalized resources from other storage mechanisms

We have a feature request for a Windows Forms application where we want to give the sys admin the ability to redefine application strings and other internationalizable values (control ...
1
vote
1answer
89 views

ResourceManager can't get value by specified key

I'm trying to get some values from Resource. But each time it gives me the following error : [MissingManifestResource_NoNeutralAsm] Arguments: ...
1
vote
1answer
253 views

Override the ResourceManager in an ASP.NET MVC application?

Is it possible to override the ResourceManager in an ASP.NET MVC2 application? I've skim read several articles about creating a resource provider, but this seems like overkill. All I want to do is ...
1
vote
2answers
567 views

Loading images from a directory inside XAP

I want to load some images into a ListBox. These images are inside XAP. Someone tell me that I can use ResourceManager, but I don't know how to get a list for all images inside a folder like ...
1
vote
1answer
901 views

asp.net Get all Resources from .resx Without Specifying Culture (ResourceManager.GetResourceSet )

I first came across a question similar to mine here at stack overflow: Loop through all Resources in ResourceManager - C#. It only solved part of what I need to do. When you request an entry in a ...
1
vote
0answers
500 views

Silverlight 4 dynamically downloaded satellite assembly problem

I am dynamically downloading a XAP file that has an embedded resource assembly, with a single resource file (ApplicationStrings.fr-CA.resx). I am using WebClient to pull down the XAP file and using ...
1
vote
1answer
383 views

How retrieve neutral language resource when multiple resource files for different languages exist?

I have multiple resource files to support different languages. The user is presented with resources in his preferred language. Additional logging is being done to an application log, to which I would ...
1
vote
3answers
227 views

Some questions about multi language

Recently, I decided to add 4 languages to my application. I read about how to do it and I succeed. But there are two problems/questions I would like to ask. First question: Is there a better way to ...
1
vote
1answer
130 views

Create Non-Culture Based ResourceManager for ASP.Net

I am working on an ASP.Net application that is company specific in that when users login, they login using their username, password and company id. I am trying to find the best way to allow each ...
1
vote
2answers
273 views

safety of passing boost::shared_ptr reference

my question is, how fail-safe is the following code snippet which is part of my resource manager: bool Load(std::string name, boost::shared_ptr<Asset::Model>& newModel) { ...
1
vote
1answer
82 views

Retrieve all ResourceManagers in an assembly

For localization purposes in Wpf I would like to loop through all ResourceManagers in an assembly. The reason I want to do this is that I have a translate xaml markup extension. This markup ...
1
vote
2answers
792 views

C# getting Image by ResourceManager GetObject - Call it everytime or store the result?

Let's say that I have to show some graphics on some control. But there will be three images switched based on some condition. Three bitmap is added in the resource file. So, I retrieve them by ...
1
vote
1answer
137 views

How to localize Flex/Actionscript “enums” to ensure bindability?

I have a simulated enum as follows: public class Sport { public static const BASEBALL:Sport = new MyEnum("Baseball", "Baseball ..."); public static const FOOTBALL:Sport = new ...
1
vote
0answers
364 views

Localization using multiple resx files

My web application is handling localization via resource file placed in a satellite assembly using ResourceManager. Since the application is growing I would like to split resx file into multiple files ...
1
vote
1answer
1k views

ResourceManager not picking up correct resx file

I am having an issue getting the correct resource file entries and need some help ... here is my scenario I have a series of projects that are a part of a large reporting solution that follow this ...
1
vote
2answers
1k views

How to create resource manager in ASP.NET

I would like to create resource manager on my page and use some data stored in my resource files. (default.aspx.resx and default.aspx.en.resx) The code looks like this: ...
1
vote
2answers
859 views

Read values from satellite assemblies using ResourceManager

Hi Can somebody tell me how to read values from satellite assemblies using resourcemanager. I have an application MyApplication which will contain all the resource files. Now I have to read the values ...
1
vote
1answer
700 views

Oracle Resource Manager Plan Design

I am new to the Oracle 10g Resource Manager and am looking for guidance on how to put together a plan to meet my goals. I will test the plan, but I'm hoping for some guidance so I don't have to try ...
0
votes
0answers
28 views

ResourceManager.GetObject not returning bitmap

I have a bitmap image called: var image = Properties.Resources.playbutton However when I call: var image = Properties.Resources.ResourceManager.GetObject("playbutton", ...
0
votes
1answer
59 views

Using ResourceManager

I'm trying to use the ResourceManager in a C# class, but don't know what to substitute for the basename when creating a new instance of the ResourceManager class. I have a separate project that ...
0
votes
1answer
53 views

ResourceManager - how to find a required base name for an embedded resource file?

I have a library loading the resources from an external file as follows: ResourceManager rm = ResourceManager.CreateFileBasedResourceManager(stringsFileName, ResourcesDir, null) Now I'd like to ...
0
votes
1answer
36 views

Durable Resource Manager (IEnlistmentNotification) Recovery

I'm creating a resource manager by implementing IEnlistmentNotification. I'm trying to create a durable RM which has brought up a few questions for me. Should there be an IEnlistmentNotification ...
0
votes
0answers
11 views

ResourceModule loaded but ResourceManager still empty

I try to use swf resource files for aspecific language. The file is loaded by the comands resourceManager.loadResourceModule("Res_de_DE.swf"); ...
0
votes
0answers
69 views

Changing ResourceManager (Make it Updatable)

I have a project in MVC 3 (Razor) For localization we are using Strongly typed resources. We want to have possibility to update translation that already exist "on-line". It means, that it should be ...
0
votes
0answers
45 views

Tell Flash Builder to ignore the curly braces in my embedded asset

I have an embed directive in a resource.properties file. The asset is a html file and I want to use the curly braces in that file to later substitute values from an object I pass to a template ...
0
votes
1answer
93 views

How to use resources from ResourceManager in WPF binding

Is there any good tutorial on how to use ResourceManager in WPF binding ? I know how to use it with the GetString function to retrieve a specific resource, but I also would like to use in in binding. ...
0
votes
0answers
34 views

Is there an accurate guide for how to use the ResourceManager?

background: We need to use external files in unit tests, and want to embed them into a resource. we use the graphical way, in visual studio, where you just create a folder, add files, and set their ...
0
votes
2answers
724 views

Velocity ResourceNotFoundException in IntelliJ IDEA

I have a Velocity template ValueTmpl.vm which can't be found by the Velocity ResourceManager. A minimal example: package generate; import java.io.File; import java.io.FileWriter; import ...
0
votes
0answers
302 views

ResourceManager.GetString() always returns default resources

We have a solution set up as follows: Solution -BusinessLogic --BusinessLogic.resx -MainApp --App_GlobalResources ---OurStrings.resx Our default language is English. We have added ...
0
votes
1answer
345 views

Need to use ResourceManager + GetString to support cultures OR I can just point directly at the resource file?

I have create some resource files to hold strings. I am displaying a messagebox by pointing it directly at the resource file like so TestLocalResource.ThisMyTest Now it appears to work, but is this ...
0
votes
2answers
87 views

How can I ensure that the appropriate language version of a string resource is loaded at runtime?

I have a string resource file called "strings.resx" in my VB.NET project, defined as an embedded resource. I have another file called strings.es.resx, which contains all of the same strings in ...
0
votes
1answer
489 views

Dynamically loading a resource and reading the correct value for the CurrentUICulture

I'm creating a method to convert an enum to a friendly string. The friendly names are stored in a resource file and are subject to globalization. So I created two resource file: Enums.resx and ...
0
votes
1answer
146 views

Is there a way to determine the culture info that a ComponentResourceManager is using when it gets instantiated in the designer?

I'm explicitly setting the CurrentThread.CurrentUICulture to french right before the Component Resource Manager is being called for my user-control, but the default values are being pulled for the ...
0
votes
3answers
652 views

Why aren't the localized resource files created automatically when changing the culture in the designer?

I am currently working on localizing a Form. However I am somewhat confused as to how one correctly does this. I thought it would be possible to export control properties to a resource file ...