6
votes
3answers
780 views
How to embed a text file in a .NET assembly?
I would like to embed a text file in an assembly so that I can load the text without having to read it from disk, and so that everything I need is contained within the exe. (So that it's more …
6
votes
2answers
611 views
Using JQuery as an ASP.NET embedded webresource
I have an ASP.NET server control which relies on JQuery for certain functionality. I've tried to add as a webresource.
My problem is my method of including the jquery file adds it to the body, or the …
5
votes
4answers
261 views
Should I embed css/js files in a web application?
I've recently started embedding javascript and css files into our common library DLLs to make deployment and versioning a lot simpler. I was just wondering if there is any reason one might want to do …
5
votes
4answers
2k views
Acessing WPF XAML Resources from non-WPF code
I am currently building an application that consists of several components, each of which is essentially a WPF user control with a little C# code around it for the plugin system to work (using MEF).
…
4
votes
2answers
103 views
Reusing The .NET Application Icon
How can I reuse the application icon from within my application so I don't have to embedded it twice (once for the application icon and once for internal usage)?
4
votes
1answer
277 views
In .NET, What is the difference between Embedded Resource and Resource ?
Hi
Does someone knows the difference between Embedded Resource and Resource ? Because these two resources type are stored in the assembly and accessible with Assembly.GetManifestResourceStream.
…
4
votes
3answers
4k views
WPF image resources
I come from a mostly web and a little bit Windows Forms background. For a new project, we will be using WPF. The WPF application will need 10 - 20 small icons and images for illustrative purposes. I …
4
votes
7answers
380 views
Protect embedded password
I have a properties file in java, in wich i store all information of my app, like logo image filename, database name,database user and database password.
I can store the password encrypted on the …
3
votes
3answers
320 views
Including resource file in a project by .RC file rather than .RES file
I remember reading an article or post somewhere years ago that suggested including a resource file in a project by referencing the .rc file instead of an already compiled .res file so that the …
3
votes
1answer
531 views
How does Vista generate the icon for documents associated to my application?
Can I affect the process?
I have an application built in .NET 3.5 / VS2008. I have embedded multiple icons into the app with a win32 .res file. This is done in the Properties box for the Project in …
2
votes
2answers
148 views
Can Someone explain the Purpose of the different Build Actions in VS 2008?
At first I was just looking for the difference between Resource and Embedded Resource; then I noticed all these other Build Action types: Compile, Content, Embedded Resource, ApplicationDefinition, …
2
votes
3answers
340 views
How to reference embedded images from CSS?
I have a CSS file that is embedded in my assembly. I need to set a background image for certain elements using this CSS file, and the image needs to be an embedded resource also. Is this possible? Is …
2
votes
7answers
170 views
How to publish a game?
I don't just mean publish, but pretty much everything between when the pure coding is finished and the first version is released. For example, how do games make it so that their save files are …
2
votes
2answers
176 views
Preload javascript an Embedded player
If I have HTML with embedded code inside, for example a embedded player of YouTube, can I build in JavaScript, AJAX, etc. preloader for this player?
Because if I have only the player embedded, the …
2
votes
1answer
913 views
Importing png Files in Visual studio C++ Resource Editor
Hello,
I would like to be able to import png file inside of Visual Studio Resource Editor so as to be able to use the embedded resource in different other projects . Is there a solution for that? I …
