active questions tagged embedded-resource - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T17:15:05Zhttp://stackoverflow.com/feeds/tag/embedded-resourcehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814006/getting-generating-an-image-from-embedded-flash-video-1Getting/generating an image from embedded flash videos0crates92009-11-28T22:43:03Z2009-12-02T13:41:11Z
<p>So what I am curious about is if it is possible and how, to have an embedded video and capture the thumbnail. There are other sites that share video and I'd like to get the thumbnails from the embedded videos, but they use flash video players to show the video and likely use flashvars to pull up the right video.</p>
<p>I appreciate any help here. I've been trying to automate some of the capture of thumbnails and embedded videos but have no clue how to get remote thumbnails from these videos.</p>
http://stackoverflow.com/questions/1793256/how-to-embed-multilanguage-resx-or-resources-files-in-single-exe1How to embed multilanguage *.resx (or *.resources) files in single EXE?tomash2009-11-24T22:05:03Z2009-11-30T20:41:22Z
<p>There are plenty of tutorials how to create multilanguage RESX files and how to create satellite assemblies with AL.exe, but I haven't found working example how to embed RESX/Resources/satellite-DLL files in single EXE file and distribute whole multilanguage app as such EXE.</p>
<p>I tried to use ilmerge.exe, but it looks like it doesn't work for multiple DLLs with the same name (culture satellite DLLs have identical names, originally residing in different subdirs named after culture).</p>
<p>I also don't know how to create ResourceManager instance to work with embedded resources.</p>
<p>My goals is to enable dynamical switching between closed, pre-defined set of languages. I need class/method which will get culture string (i.e. "de-DE"), resource name (i.e. "CancelText") and return translated text based on <em>embedded</em> resx/resource/dll.</p>
<p>I'm using VS2008, please note what setting for "build action" is needed in resx/resource files properties sheet. Working code sample or link to tutorial project would be the best.</p>
http://stackoverflow.com/questions/1821616/playing-embedded-wav-files-using-soundplayer0Playing embedded wav files using SoundPlayerBrandon2009-11-30T18:43:22Z2009-11-30T19:16:22Z
<p>I have a Compact Framework 3.5 application that is responsible for scanning barcodes. There are 3 different sounds it should play depending on the situation, so I created a wrapper class around the SoundPlayer object and call the Play method on that.</p>
<pre><code>public static class SoundEffectsPlayer
{
private static readonly SoundEffect _alert;
static SoundEffectsPlayer()
{
// This will cause the SoundEffect class to throw an error that the Uri
// Format is not supported, when new SoundPlayer(location) is called.
_alert = new SoundEffect("SoundEffects/alert.wav");
}
public static SoundEffect Alert
{
get { return _alert; }
}
}
public class SoundEffect
{
private readonly SoundPlayer _sound;
public SoundEffect(string location)
{
_sound = new SoundPlayer(location);
_sound.Load();
}
public bool IsLoaded
{
get { return _sound.IsLoadCompleted; }
}
public void Play()
{
_sound.Play();
}
}
</code></pre>
<p>The idea was to not create a SoundPlayer each time a barcode needed to be scanned (which would be a few hundred times an hour). So I can just call Play on the already loaded file. </p>
<p>The alert.wav file is in a SoundEffects folder that is on the root of the library project that the application references, and it is set to be an Embedded Resource. What would I need to pass in to the SoundEffects class to load the wav file? Should the wav file even be embedded into the library project?</p>
<p>Also does anyone notice anything wrong with the way I'm handling the playing of the wav files? This is my first attempt at something like this, so I'm open to suggestions for improvement.</p>
http://stackoverflow.com/questions/1803058/last-fm-or-spotify-api1Last.fm or Spotify APIsico872009-11-26T11:09:35Z2009-11-26T12:07:04Z
<p>Hello, </p>
<p>I was hoping someone could offer me advice, Im looking to build a website, and was hoping that I could inergrate my last.fm radio station or my spotify account into it so the users can listen to what I am. I know there are API's for each but do any of them support listening to music, nothing seems conclusive in there documentation.</p>
http://stackoverflow.com/questions/1800158/how-to-embed-flash-in-myspace-driven-by-xml0How to embed flash in myspace, driven by XML?thatryan2009-11-25T21:41:24Z2009-11-26T11:48:46Z
<p>I am sure this can be done as I see profiles with a flash news feed, so it is updatable. I would like to make something similar, my friends are making me make their band a myspace layout, lol I hate myspace. :)
I upload a complete folder to my server, the .swf file, the XML file and the content with images etc, I then embed the swf into myspace, but the content does not show, it embeds the player, but empty. Is it a path issue? I changed the relative path to the content in the XML file to absolute, but still wont work. I am just unsure what to try, any ideas or has someone made this work before? Thanks.</p>
http://stackoverflow.com/questions/1786355/how-should-i-deploy-resources-like-icons1how should i deploy resources like icons?Scott2009-11-23T22:02:42Z2009-11-23T22:53:36Z
<p>What is the best practice for deploying / packaging resources like icons? I'd like to avoid loose files due to the number of icons. Can I create a "resource" dll in visual studio? If so, is this the best way to go? What is the process?</p>
http://stackoverflow.com/questions/1770557/embedding-background-images-in-an-e-mail1Embedding background images in an e-mailChris2009-11-20T13:54:04Z2009-11-20T18:33:41Z
<p>Hi,</p>
<p>I'm trying to use an embedded image in an e-mail as the background image, i've got the following code to embed it:</p>
<pre><code> LinkedResource backgroundLink = new LinkedResource("..\\..\\background.gif");
backgroundLink.ContentId = "BackgroundImage";
backgroundLink.TransferEncoding = System.Net.Mime.TransferEncoding.Base64;
htmlView.LinkedResources.Add(backgroundLink);
m.AlternateViews.Add(htmlView);
</code></pre>
<p>Then in the e-mail body i've got the following code to test:</p>
<pre><code> <table background='cid:BackgroundImage'>
<tr>
<td>
test
</td>
</tr>
</table>
</code></pre>
<p>It doesn't display, but when i put it in as an image like this is is fine:</p>
<pre><code> <table>
<tr>
<td>
<img src='cid:BackgroundImage' />
</td>
</tr>
</table>
</code></pre>
<p>Does anyone one know why it won't display as a background?</p>
<p>Many thanks in advance :)</p>
http://stackoverflow.com/questions/1750730/video-embed-flashing0Video embed flashingWebnet2009-11-17T18:11:24Z2009-11-18T20:48:51Z
<p>Can anyone help me with this video embed and tell me why it's flashing instead of playing the video?</p>
<p><a href="http://www.seilingsfloors.com/dvd/" rel="nofollow">http://www.seilingsfloors.com/dvd/</a></p>
<p>Update: I have verified that the .flv file is the correct size and am still experiencing the issue.</p>
http://stackoverflow.com/questions/1224149/how-to-run-unmanaged-executable-from-memory-rather-than-disc0How to run unmanaged executable from memory rather than discTriynko2009-08-03T19:23:39Z2009-11-15T21:18:47Z
<p>I want to embed a command-line utility in my C# application, so that I can grab its bytes as an array and run the executable without ever saving it to disk as a separate file (avoids storing executable as separate file and avoids needing ability to write temporary files anywhere).</p>
<p>I cannot find a method to run an executable from just its byte stream. Does windows require it to be on a disk, or is there a way to run it from memory?
If windows requires it to be on disk, is there an easy way in the .NET framework to create a virtual drive/file of some kind and map the file to the executable's memory stream?</p>
http://stackoverflow.com/questions/1709035/best-youtube-embedded-player-based-on-chromeless-api0Best YouTube embedded player? (based on Chromeless API)Aneon2009-11-10T16:00:55Z2009-11-10T19:22:47Z
<p>Hi. I'm building a website that will include embedded videos, and I've decided to use YouTube for video hosting as it's got the best functionality and the largest community.</p>
<p>However, I would like to use a custom embedded player (using the Chromeless API) because the official YouTube player is too associated with amateur sites. Features I'm looking for:</p>
<ul>
<li>Very basic functionality with simple but smooth controls (play/pause button, progress/download bar and full screen button). Basically like the official player but without any clutter (no rating etc). The javascript API doesn't seem to have full screen support, so I guess the only option is a player using the flash API.</li>
<li>Clicking on the movie outside the controls will not go to the YouTube video page but will play/pause video.</li>
<li>The YouTube logo will be kept next to the progress bar in the bottom-right corner, linking to the YouTube video page, to not violate any TOS.</li>
</ul>
<p>What's the best unofficial YouTube embedded player out there today? Is there one matching my requirements?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1420796/how-to-fix-font-face-glitches-in-firefox-3-50How to fix @font-face glitches in Firefox 3.5Mark2009-09-14T10:40:48Z2009-11-08T19:16:38Z
<p>In existing code I had CSS @font-face declarations for .EOT embedded fonts that worked flawlessly actually, in internet explorer. So now I read that Firefox does embedded now too, in 3.5, except it embeds .ttf fonts directly. So I altered the @font-face declaration for firefox and gave it a shot:</p>
<pre><code>@font-face {
font-family: FontX;
src: url("FontX.eot"); //previous decl.
src: local("FontX"), url("FontX.ttf") format("truetype");
}
</code></pre>
<p>It works - but hardly flawlessly.</p>
<p>First, the italic and bold don't show up on the page, though they did previously with the .EOT font.</p>
<p>Secondly and more disturbing is the following behavior:</p>
<p>Firefox flashes the default font for a half second before displaying the embedded ttf font!</p>
<p>This looks really really dumb.</p>
<p>As far as this second problem, the reason I'm hoping there might be a work around is that with <a href="http://wiki.github.com/sorccu/cufon/usage" rel="nofollow">Cufon</a> embedded fonts, there is the exact same problem. However, they provide the Cufon.now() JS function you call right before the closing <code></body></code> tag and that solves the problem for them. SHould probably have already taken a look at the JS code for that function but am hardly an expert at any of this.</p>
<p>Also that same default font flashing is not present in IE or Safari.</p>
http://stackoverflow.com/questions/1602629/convert-text-to-resources-file0Convert text to .resources fileHappyNomad2009-10-21T18:18:43Z2009-11-06T20:26:43Z
<p>I created a new VS solution which needs to contain a modified subset of files from another solution. Both solutions have a default namespace of "Microsoft.Windows.Controls". The assembly from the old solution is named "WPFToolkit", and the new assembly name is "DatePicker". One of the files I copied over to the new solution is an embedded resource named "ExceptionStringTable.txt". The contents look like the following, although I'm not sure what format it is:</p>
<pre>; DataGrid Selection Commands
DataGrid_SelectAllCommandText=Select All
DataGrid_SelectAllKey=Ctrl+A
DataGrid_SelectAllKeyDisplayString=Ctrl+A</pre>
<p>I set the file's "Build Action" to "Embedded Resource" like in the original solution. At runtime, it's loaded like this:
<pre>private static ResourceManager _resourceManager =
new ResourceManager("ExceptionStringTable", typeof(SR).Assembly);</pre></p>
<p>Upon executing the code
<pre>_resourceManager.GetString(id.String)</pre>
I am receiving this runtime exception:</p>
<p>System.Resources.MissingManifestResourceException occurred
Message="Could not find any resources appropriate for the specified culture or the neutral culture. Make sure \"ExceptionStringTable.resources\" was correctly embedded or linked into assembly \"DatePicker\" at compile time, or that all the satellite assemblies required are loadable and fully signed."</p>
<p>Programmatically listing the assembly's resource names, I get this:</p>
<pre> DatePicker.g.resources
Microsoft.Windows.Controls.Resources.ExceptionStringTable.txt
Microsoft.Windows.Controls.Properties.Resources.resources</pre>
<p>What do I have to do so that ExceptionStringTable.txt gets converted into its .resources equivalent then embedded into my assembly such that the uri "ExceptionStringTable" locates it?</p>
http://stackoverflow.com/questions/1669630/ajax-assembly-error-assembly-0-does-not-contain-a-web-resource-with-name-10Ajax Assembly Error - Assembly {0} does not contain a Web resource with name {1}Jason N. Gaylord2009-11-03T19:31:04Z2009-11-04T09:51:06Z
<p>I have an assembly that contains an embedded resource. However, when this assembly is accessed via the web, I get the following error: Assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not contain a Web resource with name 'MyAssembly.MyScript.js'.</p>
<p>Ironically enough, if I write an app that uses reflection to look at the resources, the name of the script file is 'MyAssembly.MyScript.js'.</p>
<p>Here's the stack:</p>
<pre><code>[InvalidOperationException: Assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not contain a Web resource with name 'MyAssembly.MyScript.js'.]
System.Web.UI.WebResourceUtil.VerifyAssemblyContainsReleaseWebResource(Assembly assembly, String releaseResourceName) +614706
System.Web.UI.ScriptReference.ShouldUseDebugScript(String releaseName, Assembly assembly, Boolean isDebuggingEnabled) +85
System.Web.UI.ScriptReference.GetResourceName(String releaseName, Assembly assembly, Boolean isDebuggingEnabled) +16
System.Web.UI.ScriptReference.GetUrlFromName(ScriptManager scriptManager, IControl scriptManagerControl, Boolean zip) +80
System.Web.UI.ScriptManager.RegisterUniqueScripts(List`1 uniqueScripts) +169
System.Web.UI.ScriptManager.RegisterScripts() +407
System.Web.UI.ScriptManager.OnPagePreRenderComplete(Object sender, EventArgs e) +200
System.Web.UI.Page.OnPreRenderComplete(EventArgs e) +11039454
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3672
</code></pre>
<p>Thanks in advance for any assistance!</p>
http://stackoverflow.com/questions/1619810/how-do-i-get-full-url-from-getwebresourceurl0how do I get full url from GetWebResourceUrlTuviah2009-10-25T02:36:58Z2009-10-26T13:44:34Z
<p>So I've embedded my silverlight XAP like this</p>
<p>[assembly: WebResource("GravityWeb.PlayerControl.Silverlight.SilverlightPlayer.xap", "application/x-silverlight-2")]</p>
<p>and I can get the embedded url like this</p>
<p>this.Page.ClientScript.GetWebResourceUrl(this.Page.GetType(), "GravityWeb.PlayerControl.Silverlight.SilverlightPlayer.xap");</p>
<p>but the url it returns is something like this</p>
<p>/TestDev/WebResource.axd?d=d6ixqp92Ol-BJCkTEWYp3gTcwFUNVE60E5GKULjS0IDBLAsHkrM6GWi4TeG_jIwJxboE_2SvpNudG2WGsUzRxju97Q9LnPl4P9tQn5ga4ro1&t=633920190636398750 </p>
<p>and my page is in the /TestDev virtual directory. As a result it doesn't load. </p>
<p>If it always does this how can I modify it to return root url of my website + web resource url. and do I need to url encode it? Do I have to put the root url of my site in a config somewhere or does ASP.NET have a method to get it?</p>
http://stackoverflow.com/questions/1622143/mono-exe-assembly-set-explorer-icon0Mono .EXE assembly set explorer iconJoshua2009-10-25T21:31:15Z2009-10-26T02:23:22Z
<p>When compiling with gmcs on Linux, how can I set the explorer icon the final EXE will use?</p>
<p>I have a .ico file to attach to the output exe.</p>
<p>The answer must be build-automatable and execute on Linux (w/o wine -- build machine architecture is not x86).</p>
<p>GCC and binutils targeting Windows x86 are available. If you give the answer referring to their short (non-cross) names I'll be able to figure out their cross names easily enough.</p>
http://stackoverflow.com/questions/1610460/embedding-commercial-fonts-into-websites0Embedding commercial fonts into websitesThasmo2009-10-22T22:51:40Z2009-10-23T12:08:21Z
<p>Good evening ladies and gentlemen!</p>
<p>Searching for a cross-browser solution to embed commercial fonts
like HelveticaNeue or Univers etc. I found some promising approaches.</p>
<p>First of all I will enlist all found, modern and easy to use approaches here:</p>
<ol>
<li>sIFR</li>
<li>Cufón</li>
<li>typeface.js</li>
<li>CSS3 font-face</li>
</ol>
<p>sIFR is well known and kinda easy to implement, but as I know, not as
easy as it's Javascript-only siblings, Cufón and typface.js.</p>
<p>Cufón has caught my attention, as it renders a little bit better
than typeface.js, and creates smaller sized font-files. Apparently
there is no legal way to use it with any commercial font out there,
which is disallowed to be embedded into this kind of solution.</p>
<p>For typeface.js the same situation applies, just differing in the
fact, that it's not even able to convert fonts with a license, which
forbids to embed it into websites.</p>
<p>Last but not least there is this 'new' CSS property, called font-face,
which is incredibly easy to use, but for our loved IE we need to convert
the files into EOT (Embedable OpenType) files.</p>
<p>Therefore special CSS declarations are needed for IE, to be able to
use these fonts inside the browser.</p>
<p>The question is now:</p>
<p>What is the best approach to use such commercial fonts on websites?
Use free fonts only from now on with Cufón or convert all used fonts into EOT
files, and use them together with font-face?</p>
<p>Thanks for your well argumented answers, I appreciate it!</p>
http://stackoverflow.com/questions/1520067/embedded-images-in-html-email-not-displaying-on-mobile-phones1Embedded images in HTML email not displaying on mobile phonesAlison2009-10-05T13:27:56Z2009-10-20T13:41:10Z
<p>I have an application that sends an HTML formatted email with embedded images. The email looks perfect on many different desktop/web clients. When the email is viewed on a mobile phone that supports HTML email (tested on iPhone, WinMo 6.1) the images are displayed as red 'X's. All other HTML is being displayed correctly. To be clear, the problem is ONLY occurring on mobile clients.</p>
<p>The code to embed images is working perfectly and I don't believe there is any problem with it but I've included some quick sample code below just in case:</p>
<pre><code>MailMessage mail = new MailMessage();
mail.To.Add("123@myemail.com");
mail.From = new MailAddress("456@ myemail.com");
mail.Subject = "Image sample - fails in mobile clients";
string Body = "Sample email text<img src=\"cid:imageId\" />";
AlternateView htmlView = AlternateView.CreateAlternateViewFromString(Body, null, "text/html");
LinkedResource lr = new LinkedResource("myImage.jpg", "image/jpeg");
lr.ContentId = "imageId";
htmlView.LinkedResources.Add(lr);
mail.AlternateViews.Add(htmlView);
SmtpClient smtpClient = new SmtpClient();
smtpClient.Send(mail);
</code></pre>
<p>Does anyone know why embedded images are not displayed on mobile clients? Better yet, how can I get the images to display correctly?</p>
http://stackoverflow.com/questions/1187398/when-searching-youtube-using-the-data-api-how-can-i-exclude-videos-that-cannot-b0When searching Youtube using the Data API, how can I exclude videos that cannot be played externally?undefined2009-07-27T10:10:09Z2009-10-17T13:31:34Z
<p>The Youtube API will return videos that can be played no problem within the chromeless player. It also returns videos that cannot be played, - "Embedding disabled by request".</p>
<p>I don't want to retrieve videos that cannot be played, is there a way to request only videos that can be embedded?</p>
<p>cheers</p>
http://stackoverflow.com/questions/1579454/how-to-deploy-swf-file0How to deploy SWF file?Seidleroni2009-10-16T17:51:44Z2009-10-17T08:25:03Z
<p>I have a SWF file I created using Adobe Flex and I cannot seem to properly embed it inside an HTML page. If I take another SWF file and use it instead, it works all the time. My SWF file is pretty big (1 MB) while the other one is tiny (25 KB). However, I can wait 5-10 minutes and the server connection is super fast and it still will never load.</p>
<p>Is there something I need to do to the SWF to have it start up properly? My SWF almost never runs.</p>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1569413/how-to-share-resource-files-between-net-cf-1-0-and-2-0-3-51How to share resource files between .NET CF 1.0 and 2.0/3.5?Christian Schwarz2009-10-14T22:44:20Z2009-10-14T22:44:20Z
<p>Hi,</p>
<p>I've created NAnt scripts to compile our codebase for .NET CF 1.0, 2.0 and 3.5. This worked pretty well in the past. Now we started localizing our UI. So our scripts need to compile the resource files (resx) too. And that's where the trouble starts.</p>
<p>The resx format changed from VS .NET 2003 to VS 2008. My idea is to continue maintaining the UI from VS .NET 2003 and converting the resx files temporarly to the new VS 2008 format during compilation (that means before calling the resource compiler).</p>
<p>Automatic conversion seems definitely feasable. Besides some minor things, I believe the full qualified type names require adjustments. The problem is that there is a really nasty mixture of .NET and .NET CF types:</p>
<p>System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Drawing.Size, System.CF.Drawing, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
System.Windows.Forms.Design.ResXNullRef, System.CF.Design, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</p>
<p>So I'm pretty unsure which .NET CF 3.5 and .NET 2.0 class library types should be used correspondingly.</p>
<p>Are there resources to get a deeper understanding of how the whole resource thing (designer, resx, resource compiler) works? </p>
<p>Did anyone successfully implemented the described conversion? What approaches do you use for sharing code and resource files between .NET CF 1.0 and 2.0/3.5?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/869132/getting-outlookmailitem-from-outlookattachment-embedded-email1Getting Outlook::_MailItem from Outlook::Attachment (embedded email)Rohde2009-05-15T14:46:57Z2009-10-14T22:00:01Z
<p>I'm writing an Outlook Addin using VC/ATL. This particular addin takes selected email messages and writes them to disk. It also writes all of the associated attachments to disk. We then read everything in to our application outside of Outlook.</p>
<p>Using the Outlook object model, this is pretty straightforward as both _MailItem and Attachment have SaveAs methods. <strong>The problem comes when an attachment is an embedded email itself, which we also want to break apart and save as individual files.</strong></p>
<p>In an ideal world, I could query the attachment for the _MailItem interface and just handle it like a normal part of the selection. But QueryInterface returns "no interface".</p>
<p>I need a solution that works with Outlook XP (2002) through Outlook 2010. I know that in Outlook 2007 there is a method (CreateItemFromTemplate) on the application object which allows me to get a MailItem back from a saved message on disk, but that won't work for Outlook XP / 2003. I also need sender / recipient info intact.</p>
<p>I also know that the 3rd party Redemption library can do this using Extended MAPI. However, we are trying to avoid using 3rd party libraries.</p>
<p>Thanks in advance for your help.</p>
<p>-Rohde</p>
http://stackoverflow.com/questions/1566252/why-doesnt-the-debugger-hit-this-breakpoint-consistently-am-i-neglecting-a-file1Why doesn't the debugger hit this breakpoint consistently? Am I neglecting a file handle?Jim G.2009-10-14T13:31:57Z2009-10-14T15:08:58Z
<p>Consider the following code:</p>
<pre><code>static void Main(string[] args)
{
using (MemoryStream memoryStream = new MemoryStream(Resources.SampleXMLFile)) // Breakpoint set here
{
using (XmlTextReader xmlTextReader = new XmlTextReader(memoryStream))
{
var z = XElement.Load(xmlTextReader);
}
}
Console.ReadLine();
}
</code></pre>
<p>I have a breakpoint set on the first using statement. Yet, the debugger does not hit it consistently.</p>
<p>My question:</p>
<blockquote>
<p>Why does this happen? Am I neglecting a file handle?</p>
</blockquote>
<p>Also:</p>
<blockquote>
<p>Is this the best way to open an embedded resource XML file?</p>
</blockquote>
http://stackoverflow.com/questions/1493450/adobe-dreamweaver-extensions0Adobe Dreamweaver ExtensionsChris M2009-09-29T15:55:28Z2009-10-13T11:05:00Z
<p>Does anyone know if its possible to turn off dreamweavers "custom icons" that it shows in the file browser so you can see the standard system-cache ones instead?</p>
<p>Something I'm trying to do via an extension but I cant find where its coming from in the large pile of XML files that is dreamweaver.</p>
<p>As the guy below pointed out this isn't available in the API; does anyone know a way of disabling the icons elsewhere (i.e which of the hundreds of files the icons are stored in) so I can in theory patch the file... can see that upsetting adobe but who cares.</p>
<p>Literally Looking for an if so, how.</p>
<p>Ta</p>
http://stackoverflow.com/questions/1428114/embedded-resources-and-aspx-pages0Embedded Resources and ASPX pagesMoo2009-09-15T16:06:53Z2009-09-28T23:33:07Z
<p>Hi,</p>
<p>Is it possible to embed an aspx page (self contained, no seperate codebehind file) into an assembly, in this case a SharePoint web part, and have it still act as an aspx file when called via the resource url?</p>
<p>Regards
Moo</p>
http://stackoverflow.com/questions/1388052/resource-from-assembly-as-a-stream1Resource from assembly as a streamEchilon2009-09-07T07:42:50Z2009-09-07T08:10:18Z
<p>I have an image in a C# WPF app whose build action is set to 'Resource'. It's just a file in the source directory, it hasn't been added to the app's resource collection through the drag/drop properties dialog. I'm trying to write it as a stream, but I can't open it despite trying quite a few variations of dots, slashes, namespaces and seemingly everything else.</p>
<p>I can access it to use elsewhere either in xaml with "pack://application:,,,/Resources/images/flags/tr.png", but I can't get at a stream containing it. </p>
<p>Most places seem to say use</p>
<pre><code>using(BinaryReader reader = new BinaryReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("ResourceBlenderExpress.Resources.images.flags.tr.png"))) {
using(BinaryWriter writer = new BinaryWriter(File.OpenWrite(imageFile))) {
while((read = reader.Read(buffer, 0, buffer.Length)) > 0) {
writer.Write(buffer, 0, read);
}
writer.Close();
}
reader.Close();
}
</code></pre>
<p>Which I haven't had any luck with.</p>
http://stackoverflow.com/questions/1360547/how-to-use-nvelocity-without-embedding-the-templates-as-resources1How to use NVelocity without embedding the templates as resources?Raúl Roa2009-09-01T04:37:59Z2009-09-02T03:22:26Z
<p>I've been playing around with NVelocity to create a library that loads mail templates. And I haven't been able to load a template without embedding it into the application assembly. Is there a special way of doing this? Properties to be specified?</p>
<p>I've tried several string formatting tweaks to get the path of the template and keep getting an exception of wrong path.</p>
http://stackoverflow.com/questions/1363532/what-is-the-proper-way-to-reference-embedded-resources-in-net-xmldoc-comments0What is the proper way to reference Embedded Resources in .net xmldoc comments?Justin Dearing2009-09-01T16:50:45Z2009-09-02T02:24:23Z
<p>I have a C# project that uses <a href="http://msdn.microsoft.com/en-us/magazine/cc302121.aspx" rel="nofollow">xml comments</a>. I make chm files from them with <a href="http://www.codeplex.com/Sandcastle" rel="nofollow">Sandcastle</a> via the <a href="http://www.codeplex.com/SHFB" rel="nofollow">Sandcastle Help File Builder</a>. One of the member functions in this project makes use of an <a href="http://support.microsoft.com/kb/319292" rel="nofollow">embedded resource</a>. I want to reference it in the help file. It seems that sandcastle does not support this, but the xml documentation files it parses does. I say this because of the following example</p>
<pre><code>/// <summary>
/// Displays the resource text.
/// </summary>
/// <remarks>The file is loaded from the <see cref="Resources.TextFile.txt"/>.</remarks>
private static void ShowResource()
{
// Getting text from embedded resource
}
</code></pre>
<p>If I compile that code and compile a chm from the resulting xml documentation I get the following in the build log:</p>
<pre><code> Warn: CachedResolveReferenceLinksComponent: Unknown reference link target '!:Resources.HelpTextFile.txt'.
</code></pre>
<p>And the remarks section is:</p>
<pre><code>The help file is loaded from the [!:Resources.TextFile.txt].
</code></pre>
<p>If I do as <a href="http://www.agentsmithplugin.com/" rel="nofollow">Agent Smith</a> for <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> suggests and change the <em><see/></em> element to <code><see cref="Resources.TextFile"/></code> the build log says:</p>
<pre><code>Warn: CachedResolveReferenceLinksComponent: Unknown reference link target 'P:ProjectName.Properties.Resources.TextFile'.
</code></pre>
<p>And the Remarks section of the chm changes to:</p>
<pre><code>The help file is loaded from the HelpTextFile().
</code></pre>
<p>So my question is a two part one:</p>
<ol>
<li>Is my use of the <em><see/></em> element for referencing a resource correct?</li>
<li>Is there a way to get sandcastle to reference an embedded resource in the chm files it generates?</li>
</ol>
http://stackoverflow.com/questions/1359244/loading-html-page-and-modifying-a-section1Loading Html page and modifying a sectionWineshtain2009-08-31T20:25:34Z2009-09-01T19:55:31Z
<p>I need to load an external web (not local) page into my site (some link), but only a part of it.
What are the options for doing so?</p>
http://stackoverflow.com/questions/1310719/c-loading-an-embeded-swf-into-an-flash-activex-without-a-temporary-file1C#: Loading an embeded swf into an flash activex without a temporary file.JohnU2009-08-21T08:30:20Z2009-09-01T06:09:18Z
<p>My project requires that my final application be completely self contained in a single exe. I am already combining the executable and dlls using ILMerge (assmebly merge utility). I am hosting an flash active x control in a C# application and I have embedded the one swf i need to load into the flash control into the c# application as an embeded resource. </p>
<p><a href="http://stackoverflow.com/questions/798655/embedding-an-external-executable-inside-a-c-program">This question shows how to write the resource to a temporary file</a>, but it is undesirable to create temporary files for my situation. This creates a problem because the active x control loadMovie method only accepts a string pointing to the file to be loaded.</p>
<p>My question is: <b>Is it possible to dynamically load embeded swf resources into a flash active x control without creating a temporary file?</b></p>
http://stackoverflow.com/questions/1354172/using-defined-values-in-visual-studio-dialog-resource-scripts1Using #defined values in Visual Studio dialog resource scripts?Thomas2009-08-30T16:02:28Z2009-08-30T16:34:43Z
<p>I'm trying to create an About box for my Windows C++ application. In Visual Studio 2008, I'm using the dialog editor to design the dialog. I want the About box to display the application's version in a static label.</p>
<p>I can hardcode the version into the dialog, stored in a <code>.rc</code> file, but then I'll have to remember to update the version in multiple places.</p>
<p>My application version is <code>#define</code>d in <code>version.h</code> as <code>APPLICATION_VERSION</code>. The resource editor can be convinced to put</p>
<pre><code>#include "version.h"
</code></pre>
<p>at the top of the <code>.rc</code> file, so I have access to the <code>APPLICATION_VERSION</code> symbol.</p>
<p>However, I cannot use this symbol from the dialog editor. I can edit the <code>.rc</code> file by hand, replacing the hardcoded version string by the symbol <code>APPLICATION_VERSION</code>. That works fine until I edit the dialog in the dialog editor again: upon saving the <code>.rc</code> from the dialog editor, the symbol gets overwritten with its current value.</p>
<p>Of course, I can set the version label to some dummy text, overriding that text when I receive <code>WM_INITDIALOG</code>, but that feels very clunky and unnecessary. Is there any other workaround that allows me to keep the application version in a single place?</p>