Send a suggestion!

We're building a brand new version of the site, and we'd love to hear your ideas

Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

MissingManifestResourceException

Last post 03-27-2008 6:07 PM by ekostero. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 03-14-2005 5:34 PM

    • hartax
    • Not Ranked
    • Joined on 03-14-2005
    • New Member
    • Points 10

    MissingManifestResourceException

    I have a problem in my application. I am developing software for a Windows CE .NET device. It is a bar code reader and I have the library that includes the control of the bar code scanner

    When I try to create an object of ScannerServicesDriver type I get a MissingManifestResourceException and no additional information is given.
    I don´t understand  why can I create the object scanner1 correctly and not the scannerServicesDriver1.
    The path of reference to the library is correct


    This is the code I have:

    public class FormA200 : System.Windows.Forms.Form
    {
       ...
       private PsionTeklogix.Barcode.ScannerServices.ScannerServicesDriver scannerServicesDriver1;
       private PsionTeklogix.Barcode.Scanner scanner1;
           
       public FormA200()
       {
           InitializeComponent();
       }

       private void InitializeComponent()
       {
           System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FormA200));
           this.lCant = new System.Windows.Forms.Label();
           .....

           this.scanner1 = new PsionTeklogix.Barcode.Scanner();
           //at this point the exception happens!
           this.scannerServicesDriver1 = new PsionTeklogix.Barcode.ScannerServices.ScannerServicesDriver();        
               
           // scanner1
           this.scanner1.Driver = this.scannerServicesDriver1;
           this.scanner1.ScanCompleteEvent += new PsionTeklogix.Barcode.ScanCompleteEventHandler(this.scanner1_ScanCompleteEvent);
               

           this.Load += new System.EventHandler(this.FormA200_Load);
       }
       private void scanner1_ScanCompleteEvent(object sender, PsionTeklogix.Barcode.ScanCompleteEventArgs e)
       {

       }

    }

    Any ideas??
    Thanks a lot
    • Post Points: 10
  • Advertisement

    • Red Gate Software

    Advertisement

    Want to boost your .NET application performance?

    Some developers always seem to write efficient and lightening-fast code. What is their secret? It’s ANTS Profiler. “We improved the performance of the application up to 10 times” Dan Ports, Intrigma.

    Try it for yourself now.

  • 03-27-2008 6:07 PM In reply to

    • ekostero
    • Not Ranked
    • Joined on 03-27-2008
    • Greece
    • New Member
    • Points 5

    Re: MissingManifestResourceException

     Hi all,

    I have the same problem in VB.Net

    I define     Friend WithEvents Scanner1 As PsionTeklogix.Barcode.Scanner and when I use

    Scanner1 = New PsionTeklogix.Barcode.Scanner gives me an error of OutOfMemoryExeption

     

    Any Ideas
    Thanks a lot

     

    • Post Points: 5
Page 1 of 1 (2 items)