Tagged Questions

0
votes
1answer
12 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 hav …
0
votes
0answers
8 views

ResourceManager’s CreateFileBasedResourceManager method is not working

I am currently usign resourcemanager's constructor to read the entries from my resource files. When I try to use CreateFileBasedResourceManager method it is throwing the below erro …
2
votes
5answers
128 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 th …
0
votes
0answers
30 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 …
0
votes
0answers
38 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. T …
0
votes
2answers
354 views

HttpContext.GetGlobalResourceObject always returns null.

Hi folks! 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 …
0
votes
3answers
247 views

ResourceManager trying to load .resources not .resx file

Hi, I am trying to load a resx file in my .net website using ResourceManager rm = new ResourceManager( "Project.Resource", Assembly.GetExecutingAssembly() ); The Resource.resx …
0
votes
3answers
77 views

Localization of a Form using ResourceManager

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 res …
1
vote
1answer
230 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 …
2
votes
2answers
270 views

Problem with pulling out icons from resource bundle in Flex

Hi everybody, I'm having trouble with getting icons from resource bundle in Flex. Here's the scenario: Directory structure looks like this: -ResourceManagerTest -resources …
0
votes
0answers
154 views

.NET Custom CultureInfo localization

I spend hours and hours tried to figure this out why my ResourceManager won't pickup my Resource file? Background: I create a custom CultureAndRegionInfoBuilder with code "km-KH …
1
vote
4answers
558 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 ha …