regarding the use of thread in Smartphone

hi ,
i have been in developing application in smartphone using c# .. i am using visual studio 2005 .... for my application i have loaded the resoueces using the following code ...
Stream s ;
Bitmap img_btYellow;
s = this.GetType().Assembly.GetManifestResourceStream("Widgets.res.avblue.png");
img_btYellow = new Bitmap(s);
s.Close();

i have loaded 8 '.png' images through the above code using the same stream ' s ' . the application is running fine in emulator .... but it is showing out of memory exception in the exe created inside the bin folder ... even i tried using singleton object for all the classes , that i have used .. but it s still showing the same exception .. could anyone help me in resolving this issue ..




Answer this question

regarding the use of thread in Smartphone

  • Mike2007

    Moving to Smart Devices General forum where it has got better chances of being answered.

    -Thanks,

    Mohit


  • edralph

    This forum is dedicated to device emulator. Since your question is not related to device emulator, it's off topic here.

    If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party software, please contact respective software manufacturer or reseller. Otherwise please post to relevant forum or news group:

    http://support.microsoft.com/newsgroups/default.aspx

    Closing as off topic

    Hint: read forums titles and pick the one best matching your question, don’t post to the first one you see.



  • wooten

    hi ,
    i found in the msdn that using System.Threading namespace , we can work with hread in our application . i am using Visual studio 2005 . when i was working with thread , if i use Abort () or suspend method , it is showing compiltaion error , that no definition for method found . could anyone help me in resolving this issue .


  • Dave Malcolm

    hi ,
    its not a hardware issue . i have to animate a object , i am planning to use thread . how can i stop the thread . i want to stop this thread upto the end of the application
    thanks
    sadiq


  • regarding the use of thread in Smartphone