Tagged Questions
The resource-files tag has no wiki summary.
7
votes
6answers
961 views
Are there any performance issues or caveats with resource (.resx) files?
Resource files seem great for localization of labels and messages, but are they perfect?
For example:
Is there a better solution if there is a huge amount of resources? Like 100,000 strings in a ...
5
votes
2answers
328 views
Changing where a resource is pulled during runtime?
I have a website that goes out to multiple clients. Sometimes a client will insist on minor changes. For reasons beyond my control, I have to comply no matter how minor the request. Usually this isn't ...
4
votes
1answer
107 views
CMake and Visual Studio resource files
I am converting a C++ project created using Visual Studio 2005 to CMake and have stumbled upon a bit of a problem with resource files that are included in the project.
The project includes a .rc ...
4
votes
1answer
1k views
How do I build a Win32 app with a resource file using cmake and MinGW?
In theory, it's very easy to build a Win32 app with a resource file using cmake. In an add_executable command, a resource file can be listed as easily as a C or C++ source file. There is a known bug, ...
3
votes
3answers
1k views
How to use .net Resource files in javascript
is there anyway i can access my resource files (.resx) in javascript?
if no then are there any workarounds to diplay messages in javascript in different languages?
3
votes
1answer
295 views
How to put variable value inside value of resource file
I have been working with resource files for a while now and I was wondering if there is some nifty way I don't know of yet to put variables inside a resource value.
A simple example:
You have ...
2
votes
1answer
78 views
How can I read a compiled resource (.res) file in C#?
I've got a compiled resource file (.res). I need to read it, in C#, so that I can modify it programatically. note that this is not a .resx file or .rc file; the file is compiled, not text-based.
So ...
2
votes
2answers
69 views
NetBean 7, how to create a folder for images?
I have created a project, inside the project there is a folder named Source Packages, which contains my packages.
I need images, and I want to copy them in a folder inside the project (or better ...
2
votes
1answer
111 views
How to “hide” files from interface builder?
My project uses a huuuge number of png file, all added as resources to the XCode Project.
Now, the problem is, whenever I try to use Interface Builder, it parses all these files, and gets terribly ...
2
votes
3answers
4k views
Reading .resx files programatically
I have an application where the contents of e-mails that get sent are stored in a .resx file.
This is an ASP.Net application, the .resx file lives in /App_GlobalResources
When I need to send an ...
1
vote
1answer
34 views
1 Resource File vs Many
I have a site that I am manually adding Spanish and Portuguese support to via resource files and GetGlobalResourceObject() in my pages.
I have several types of users that have essentially their own ...
1
vote
0answers
38 views
Data names on Windows Event Logging
In order to make my custom event logs on Windows easily parsable and structured, I am utilizing Message Resource files which is explained here: ...
1
vote
1answer
123 views
Multi-Language windows form
I am developing windows application which supports two language Arabic and English. I want to change the UI (Labels) of the forms at run time. Which ever language selected by user initially forms ...
1
vote
1answer
117 views
Localization using resources file not working
I added new Rosource file UserNotification.resx. Then I added two files for localization and named it UserNotification.hr-HR.resx and UserNotification.sl-SI.resx. (followed thread: C# localization , ...
1
vote
1answer
59 views
Resource Files how to name them?
I am playing around with resource files and have run into a problem.
I have a folder called Languages. When I make a resource file and say call it "R.resx" I can call this resource file up in my ...
1
vote
2answers
392 views
getting texture picture for opengl through resource file(c++/visual studio 2008)
when you create a new opengl project in visual studio 2008, you get three folders: one for header files, one for source files and one for resource files.
Is it feasible to put a jpg picture in ...
1
vote
2answers
613 views
Automatically deploy resource files to Central Administration's App_GlobalResources folder when deploying a solution to a web application
I'm developing a SharePoint 2010 solution which consists of some web parts and other components. Furthermore the solution needs a application pages in the Central Administration for configuration.
...
1
vote
1answer
129 views
Is it possible to define string arrays in .resx resource files?
Currently, I do this:
Names -> "name1|name2|name3"
Resource.Names.Split('|');
Is it possible to define those names as an array in the resource file so that I don't have to parse by splitting ...
1
vote
2answers
297 views
What is the best way to associate error messages with error codes in C#?
I have a piece of software written in C#.NET that communicates with a device via USB. When a problem occurs the device sets an error code which is read by my software in the form of an integer. I want ...
1
vote
3answers
151 views
Handling a mix of server side code and html in a resource file?
I'm trying to convert an ASP.NET web application to use resource files. I haven't used resource files before, so I'm just toying around with them and was wondering if this is possible.
I have a ...
1
vote
3answers
968 views
RIA Services Localization, where to place Resource Files
I have the following Solution:
SomeProject.Ria (non Silverlight code)
SomeProject.Ria.Silverlight (Silverlight light code, namespace is still SomeProject.Ria)
SomeProject.Ria.MyServices (RIA ...
1
vote
1answer
111 views
Culture resource files
I'm working on an ASP.NET app
I have a couple of resource files with the different languages I can support
example: Language.en.resx
Language.pt.resx
Is there any way to get, for example, ...
1
vote
3answers
621 views
VC++ Resource Editor Problem?
I have a working C++ project on VS2005, I made a small change which causes a problem and I dont know what is it and how to resolve,
I added a new string entry in the resource file using the VS2005 RC ...
0
votes
1answer
18 views
Text in resource file is not displaying correctly in Chinese
I have a website that is written in asp.net where the text is resourced in resource files. I am able to successfully view the correct characters for all (Spanish, German, Arabic, Korean, etc) ...
0
votes
1answer
31 views
Generating a list of shortcuts (denoted by button captions containing the & symbol) from resource files
I have a list of 429 MFC resource files that I have to generate a list of shortcuts for, which would be buttons containing an ampersand symbol (e.g. BUTTON "&Close") indicating that ALT-C is the ...
0
votes
0answers
59 views
Arabic resource files not being picked by ASP.NET web site
I'm working on a project that has a web application module that generates localized emails upon request. The app requires html templates localization for several languages. I decided to go with ...
0
votes
0answers
21 views
Create resource using Visual Studio 2010?
I'm attempting to create a resource in Visual Studio 2010 which I will use to create a custom dialog box. Microsoft gives these steps:
http://msdn.microsoft.com/en-us/library/sxdy04be.aspx
However ...
0
votes
0answers
79 views
create multiple source file in c++
hello guys. I have a simple question: can I create, in one project, multiple source files with multiple headers so that I could choose which one to compile?
Let's take this simple example:
I want ...
0
votes
1answer
24 views
Searching/Listing WPF resource files?
Is there a way to search a WPF application for resources?
I have added many images to an app and want to perform search i.e. MS*.jpg etc., Is this possible?
If I could create a list of all the ...
0
votes
1answer
139 views
Localize a WP7 application using MVVM Light
I'm using MVVM Light in my Windows Phone 7 application. The application is to be used in English and Spanish. Users can select a different language during runtime. I'm localizing the application using ...
0
votes
1answer
15 views
Embedded bitmap files and assembly size
I have several large embedded bitmap files in my resource project. The compiled exe is 13 megs. When I remove those bitmap files, it reduces to 6 megs.
I am trying to improve performance of the ...
0
votes
1answer
27 views
prevent visual studio from reverting the Resource designer properties in to internal
I know the resource designer files are auto generated, we are achieving WPF localization through resource files at project level. And its possible only if we have the resource designer properties as ...
0
votes
1answer
309 views
ResourceManager.GetString() not returning value
I am trying to implement multiple language support for my web project. I am new to it.
I am not able to get the resource file value by using ResourceManager.GetString() function. I am passing the ...
0
votes
1answer
157 views
How to do inheritance of Resource files (resx)
Imagine you're working on a .Net 4.0 project that is made up of hundreds of assemblies, each having its own resource file (.resx) for localization. The localized strings are accessed from C# through ...
0
votes
0answers
32 views
resource files in a language other than English using VS2008
Is there any other way to generate .resx files in a language other then English. I will go to the design page, then will select "Generate Local Resource". Then I want to get a generated .resx file in ...
0
votes
2answers
165 views
ASP.net default resource file handling - best practice?
i have a piece of code in my ASP.NET that is depend on the culture/uiCulture that the user is coming from to load few connection string values (right now, we have two, en-US and de-DE resources ...
0
votes
1answer
277 views
Android Obfuscation for code as well as resources
Google recommends and packs in ProGuard for code obfuscation. However the default configuration that it comes with seems minimal and one can reverse engineer to certain extent. Most people looking to ...
0
votes
2answers
241 views
Can I use a .rc resource file on a C# project?
I have a solution in C# and i need to update the version in the resource files (.resx files are xml files), i already did it in C++ resource files (not xml files) and I want to know if I can use ...
0
votes
5answers
461 views
win32 resource file help
on this website, under the "Edit Control" title, there are a couple of lines of code like this..
case WM_CREATE:
hwndEdit = CreateWindow(TEXT("Edit"), NULL, WS_CHILD | WS_VISIBLE | WS_BORDER,
...
0
votes
1answer
97 views
Search for a string in a collection of dlls
We have a number of dlls in a single directory. Most, but not all, are C++ resource dlls only. These dlls can be opened in Visual Studio for a "visual" inspection (you can see the "String Table").
...
0
votes
1answer
905 views
how to use resource files in sharepoint 2010
i want to know the correct path to put my resource files in a web application in sharepoint 2010
0
votes
1answer
538 views
AjaxControlToolkit Resource Files Not Copied To Output in MSBuild Script
I'm new to MSBuild, but I managed to setup the following simple script:
<Project ToolsVersion="3.5" DefaultTargets="Compile" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
...
0
votes
1answer
246 views
Error while using asp.net resource files
I have som text-content that I want to be able to change without recompiling my project. I have created a resource file and put some text-content in it.
I was under the impression that I could write ...
0
votes
2answers
693 views
How can I create a windows resource to embed in a .NET assembly, starting from text?
I was looking into embedding custom version strings using in assemblies a while back, and one approach that the documentation suggested was to embed a windows resource.
The only way I can see to ...
-1
votes
3answers
253 views
IntelliSense: cannot open source file “curl.h” in C++
I am unable to compile my C++ project.
IntelliSense: cannot open source file "curl.h" in C++
I tried adding that file to the "Header Files" folder in Solution Explorer: no change. I was unable ...