Quantcast
Channel: Windows Forms General forum
Viewing all articles
Browse latest Browse all 12583

Resources.Designer problem with windows 7

$
0
0

Hii All,

My application information:

Windows Forms Application

.Net Framework 2.0

 Visual Basic 2008

I have the next problem:

I was using Windows XP and my application was running successfully, then I installed Windows 7 and when I run my application I got error and the exe file doesn't work,when I read the error string I found the problem in generating the application resources, so I went to the error line and it was in the next property in the underlined line:

FriendReadOnlyProperty AC()As System.Drawing.Bitmap

           Get

               Dim obj AsObject = ResourceManager.GetObject("AC", resourceCulture)

               ReturnCType(obj,System.Drawing.Bitmap)

           EndGet

       EndProperty

And when I commented this property the error went to other property in the same file "Application resources file",so I commented all properties in the "Application resources file" and removed all references to those resources then my application worked successful but without any image or icon of course.

Could anybody help me please?

Here the error string:

System.InvalidOperationException was unhandled

  Message="An error occurred creating the form. See Exception.InnerException for details.  The error is: Corrupt .resources file. Got an unexpected EndOfStreamException while trying to read the ResourceReader header."

  Source="The One"

  StackTrace:

       at App1.My.MyProject.MyForms.Create__Instance__[T](T Instance) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 190

       at App1.My.MyProject.MyForms.get_SplashScreen1()

       at App1.My.MyApplication.OnCreateMainForm() in D:\Last work\2010\The One Master\My Project\Application.Designer.vb:line 35

       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()

       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()

       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)

       at App1.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 81

       at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)

       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)

       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()

       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)

       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

       at System.Threading.ThreadHelper.ThreadStart()

  InnerException: System.BadImageFormatException

       Message="Corrupt .resources file. Got an unexpected EndOfStreamException while trying to read the ResourceReader header."

       Source="mscorlib"

       StackTrace:

            at System.Resources.ResourceReader.ReadResources()

            at System.Resources.ResourceReader..ctor(Stream stream, Dictionary`2 resCache)

            at System.Resources.RuntimeResourceSet..ctor(Stream stream)

            at System.Resources.ResourceManager.CreateResourceSet(Stream store, Assembly assembly)

            at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)

            at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)

            at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)

            at System.Resources.ResourceManager.GetObject(String name, CultureInfo culture, Boolean wrapUnmanagedMemStream)

            at System.Resources.ResourceManager.GetObject(String name, CultureInfo culture)

            at App1.My.Resources.Resources.get_AC() in D:\Last work\2010\The One Master\My Project\Resources.Designer.vb:line 86

            at App1.SplashScreen1.InitializeComponent() in D:\Last work\2010\The One Master\SplashScreen1.designer.vb:line 61

            at App1.SplashScreen1..ctor() in D:\Last work\2010\The One Master\SplashScreen1.vb:line 7

       InnerException: System.IO.EndOfStreamException

            Message="Unable to read beyond the end of the stream."

            Source="mscorlib"

            StackTrace:

                 at System.IO.__Error.EndOfFile()

                 at System.IO.BinaryReader.FillBuffer(Int32 numBytes)

                 at System.IO.BinaryReader.ReadInt32()

                 at System.Resources.ResourceReader.ReadResources()

            InnerException:  


Viewing all articles
Browse latest Browse all 12583

Trending Articles