embedded-resource

Stuck with localization using resource files

I have a very weird problem with resx based localization. At first, let me explain, how it is done for me right now. It is ASP.NET MVC project. I have two assemblies: web and domain. Web contains all MVC related stuff, and domain, well, contans domain classes. Also, in domain assembly I store a lot of static resources for localization(I ...

Is there a Linux equivalent of Windows' "resource files"?

I have a C library, which I build as a shared object for Linux and a DLL for Windows with MinGW32. The API depends on a couple of data files (statistical models) which I'd really like to roll in with the SO/DLL so that deployment is just one file. It looks like I can achieve this for Windows with a "resource file" compiled with windres,...

Using C#, How to access to a resource file (.resx) and read from a text file added to it?

Hi all I've added a resource file to my project called CrpResource.resx . Then, after adding a text file to the resource file, I wanna to access to it and read from it by code. any suggestion please. ...

How to link to an Embed object in html ?

I have an Embed object that shows a video stream, how to setup a html link to it, so when user clicks on the link, it will open another window to show the video ? <embed id="player" src="http://media2.wtnh.com/_local/livestreams/FMLPlayer.swf" align="center" width="588" height="351" wmode="opaque" allowfullscreen="true" flashvars="live=...

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 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll but was not handled in user code. Could not find any res...

Using ASP .NET 3.5 Themes with Embedded Resources...

I'm curious if this is possible. Let me give you an idea of how we're using theming and why we want to use a single resource dll to fetch resources. We currently have an App_Themes directory with our main (and only at the moment) theme. Call it MainTheme. We're using a third party control suite (Telerik) and have several customized C...

fonts not being embedded Flash CS4 AS3

Hi Maybe you can help me with a problem I am having. The URL of the project is: http://www.mauriciogiraldo.com/vgline/beta/ It is a Drupal-powered, AMFPHP-connected AS3 web app. The data goes through to Flash with no problems, I have verified that UTF-8 is fine and all. The problem can be better seen in these URLs: http://www.maurici...

MonoTouch: using embedded resx files on iPhone build

I'm able to load and access resx files in Simulator builds of my iPhone app built using MonoTouch. The resx file entry in the csproj file looks like: <ItemGroup> <EmbeddedResource Include="MapMenu\Resources\MapMenu.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>MapMenu.Designer.cs</LastGenOutput> ...

Handling Assembly Resources

I am currently developing a utility class as a part of my business layer. The task of this class is to load a template PDF file, fill out the PDF with iTextSharp and return the resulting stream. I am having some "analysis paralysis" as to how to store the predefined PDF templates in my business layer. Do I throw all of my PDFs into a fol...

How to use embedded resource in ASP.Net?

Hi all, I'm practicing to use embedded resource in ASP.Net. I wrote a javascript file, put it into a C# class library and change It's Build Action Property to Embedded Resource. In my web project, I added reference to the that class library. I want to use that javascript file in my web pages but i don't know how? please help me Thanks ...

How to programatically access images in a resource file?

I have 30 PNGs in a resource file and I would like to iterate around them inside a timer. This timer sets the form's background image to the next PNG in the sequence to produce a basic animation. I can't find an easy way to enumerate the resource file and get at the actual images. I am also keen to keep the references to the images not...

Why doesn't my ScriptReference find the Embedded Resource?

I have an AJAX control project that has a .js file which is configured as an embedded resource. My main web application references this project, and when I try to load up the control I get this error: Assembly does not contain a Web resource with name 'MyFile.js'. Here is my implementation of getScriptReferences: public IEnumerable ...

Create a Icon from a Resources.resx

I have a Icon(.ico file) in the (VB.NET)MyProject>Resources.resx file. How do I extract it in run-time as a Icon object? Thanks ...

Can't control Youtube embed even with document.getElementById('xyz').playVideo() - not a function?

OK, I'm stuck and I don't know what's wrong even after following Google's docs and reading suggestions here on Stackoverflow. Why can't I control Youtube embeds in my web page? If I create an HTML file with the <body> being: <object id="o1" width="480" height="295"> <param name="movie" value="http://www.youtube.com/v/qCTLCNmnlK...

Embedded JPG resources not loading in Qt application

I have a Qt application that has some embedded JPG files that I want to display. When I compile and run both the debug and release versions on my machine, everything works perfectly. When I copy the application to a thumb drive and run it from there on my machine, it works fine. On the thumb drive and another developer's machine: OK. ...

Strings in Embedded resource - Failed to access

Hi, I am using Visual Studion 2008, Framework 3.5 SP1. I have an assembly in which I have Strings.resx file. This file contains serveral strings. All over this assembly, I just get my strings back using "Strings.MyString" as it generates a CLR class. It compiles fine and no issues. But when I try to use this assembly in other solution, ...

compile raw .rsc file into my iPhone app

I am porting an app from palm to iPhone OS and would like to use .rcs files from palm port. These files contain large amount of raw hex constatnts, that have to be hard - coded into app. When I try to compile my .rcs file in xCode, compile goes successfully. Does this mean I can embed these files into app and access the data? If yes - pl...

Is it possible to reference a string resource in the designer properties for a control in Visual Studio?

I am using Visual Studio 2008 and I am storing some string values in a resource file. I want to use the string values for things like a button's Text property. All of the examples I can find related to localization or storing strings in a resource file show you how to use a ResourceManager object and assign properties in code. However, I...

Faster method for exporting embedded data

For some reasons, i'm using the method described here: http://geekswithblogs.net/TechTwaddle/archive/2009/10/16/how-to-embed-an-exe-inside-another-exe-as-a.aspx It starts off from the first byte of the embedded file and goes through 4.234.925 bytes one by one! It takes approximately 40 seconds to finish. Is there any other methods for ...

How to embed a static image resource in a web server control?

I am going to create a web server control representing a treeview. So I want to use 2 images for + and - for expand/collapse. How can I build this into the control in a way that can be used as image source when rendered on the page? Since this will be in a compiled web controls library, I don't want to rely on external images in the we...