I keep on getting a null reference exception from GetManifestResourceStream, am trying to add Logo image to the Lightswitch ribbon and it is supposed to work just fine....

was referring to LR__ http://social.msdn.microsoft.com/Forums/en-US/lightswitch/thread/2d16c638-f833-4c4c-beec-656912a87b8e/#76fa5382-0135-41ba-967c-02efc3f8c3a2

System.Windows.Media.Imaging.BitmapImage image = new System.Windows.Media.Imaging.BitmapImage();
image.SetSource(Assembly.GetExecutingAssembly().GetManifestResourceStream(
    Application.Current.Details.Name + ".Resources.logo.jpg"));
Image myImage = new Image()
{
    Source = image,
    Stretch = System.Windows.Media.Stretch.Uniform,
    HorizontalAlignment = HorizontalAlignment.Left,
    Margin = new Thickness(2, 2, 2, 14),
    Cursor = System.Windows.Input.Cursors.Hand
};

I tried a lot of things but I can't find my where the problem is!!

link|improve this question

60% accept rate
Are you sure it's a NullReferenceException and not ArgumentNullException? – John Saunders Feb 19 at 20:00
Debug it. Look what Assembly.GetManifestResourceNames() returns. This tends to be namespace name problems. – Hans Passant Feb 19 at 20:40
feedback

2 Answers

Does Logo.jpg have it's build action set to "Embedded Resource"?

Edit:

Here the C# translation of my GetResourceUri (note, it needs a Resource, not an Embedded Resource):

public Uri GetResourceUri(this Assembly asm, string resourceName)
{
    Uri result = null;
    var assemblyName = new AssemblyName(asm.FullName).Name;

    result = new Uri(string.Format("/{0};component/{1}", assemblyName, resourceName), UriKind.Relative);

    return result;
}

The same "technique" should work in C#.

I also have a custom shell extension (that uses LR's technique to add images to both the ribbon & the navigation menu). I'm just finishing a few things (writing the "documentation" is taking some time) & then I'll release it on the Visual Studio Gallery for the community to use (it's called Luminous Classic Shell).

The extension allows you to have the images without needing to write code.

link|improve this answer
Yes Yann, it does! – Thuto Paul Gaotingwe Feb 18 at 9:14
'System.Windows.Media.Imaging.BitmapImage(); Assembly CurrentAssembly; CurrentAssembly = Assembly.GetExecutingAssembly(); Stream EmbeddedResourceStream = CurrentAssembly.GetManifestResourceStream(Application.Current.Details.Name+ "ElectricalContructors.Resource.logo.jpg"); if (EmbeddedResourceStream != null) { image.SetSource(EmbeddedResourceStream); }' @Yann I double checked my stream it was still null – Thuto Paul Gaotingwe Feb 18 at 9:28
Is the resource in the same project your code is running (that's the other thing that can be wrong)? – Yann Feb 20 at 4:15
Yes the logo.jpg is the Resource folder in my Lightswitch project.. – Thuto Paul Gaotingwe Feb 20 at 8:30
Yes, but is the code in the same projrect as well? – Yann Feb 20 at 12:29
show 2 more comments
feedback

You can use a tool such as Reflector to see the full names of the resources in the Assembly.

link|improve this answer
1  
ILSpy is very good alternative – m1k4 Feb 19 at 20:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.