0
votes
2answers
12 views
Access route not found when trying to call a file added in my solution explorer.
public class Hero
{
XPathNavigator Navigator;
XPathDocument HeroInformation;
public string GetHeroIcon(string Name)
{
XDocument HeroInformation = …
0
votes
1answer
26 views
Using resources in C# and Visual Studio 2008
I've recently found the resx resources feature of C#/VS2008. However, I have trouble finding information about what they are normally used for.
For example, I want to have a "static string" defined …
0
votes
0answers
23 views
Memory-mapped resource - or not?
Hi all,
I'm trying to memory-map and use a largish binary data file from my iPhone bundle resources. I've added the "Resources should be file-mapped" line with a checkmark to my Info.plist. Then I'm …
0
votes
1answer
21 views
Gamebryo renderer not resetting
The renderer for my game application is not properly resetting when I sometimes lock out of my computer and log back in. The application uses the Gamebryo engine with the CEGUI (Crazy Eddie's GUI) …
1
vote
3answers
111 views
Catch missing local resources in resx files.
Hi,
I have many resource files, in many different languages.
Lets suppose for example we are supporting 3 languages (en, de, fr), and have this file:
common.resx
common.de.resx
common.fr.resx
I …
6
votes
3answers
132 views
define animations and triggers as reusable resource?
Is there a way to define an animation somewhere in xaml (eg. as a resource) once and then reuse it multiple times? I have a lot of independent brushes across differnt datatemplates that independently …
1
vote
3answers
99 views
C# Form resx usage for programmatic strings?
Hi All,
Had a basic WinForm question: By default a resx file is created for every form or usercontrol (along with the designer.cs). This resx works fine for all the controls and the text added to the …
1
vote
2answers
22 views
iPhone Dev: UIWebView baseUrl to resources in Documents folder not App bundle
Hi everyone,
Greetings! Can anyone please kindly assist me finding a way around the following:
load an html into a UIWebView using loadHTMLString and include(using baseURL) the resources such as …
0
votes
1answer
30 views
How do I actually replace a resources (.resx) file in a running application for a .Net DLL?
Here's my scenario:
I have a .Net (3.5) DLL being referenced by an ASP.Net web application.
One of the classes in the DLL has a .resx file containing an error message string that ultimately gets …
0
votes
1answer
66 views
I can’t load bitmaps on WinCE
I wrote a small project that displays icons on the screen on WinCE. The icons are 28x28 16-color BMP files, placed in the main resource file (Resources.resx) (the resx for the main Form has the same …
593
votes
284answers
51k views
What is the single most influential book every programmer should read?
If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?
I expect this list to be varied and to cover a wide …
1
vote
3answers
1k views
How to use image resource in asp.net website?
I have a c# site which makes use of a lot of images with embedded english text.
How can I use a standard resource file to swap out images depending on the language?
I have a resx file in my …
0
votes
2answers
84 views
Use sqlite database from Android app resources
Hi everyone!
I've started Android programming recently so bear with me :)
I develop an app which has all of its content stored in database.sql file.
I've implemented a subclass of SQLiteOpenHelper …
0
votes
1answer
38 views
Platform independent resource system (like the Qt Resource system).
Hi, does anyone know of a platform independent resource system for C++ like the one that comes with QT (but without the Qt dependency)? I would like to access arbitrary data from withhin my C++ source …
0
votes
1answer
23 views
How can I set an image to the Image control in WPF?
I'm doing this:
<Image Grid.Column="0" Grid.Row="0" x:Name="Andromeda" Source="/Resources/64px-Andromedahero.gif" />
But it's just not working. :S
Here's a screenshot of the file/folder …
