![]() |
|
Need help reading this error - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: Need help reading this error (/Thread-Need-help-reading-this-error) Pages:
1
2
|
Need help reading this error - Jacob - 05-24-2011 FitzAIO, trying to open the sharecash downloader and i get this error. Just so you don't have to read all of it, FitzAIO was coded in VB8 on .NET assembly 1.1.1.1 if anyone could help me decipher what it means itd be great. I get these errors all the time on my computer but take them to friends computers and don't. So its gotta be my computer alone. Even suggestions on fixing would be great. THANKS! :wub: Code: See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.InvalidOperationException: An error occurred creating the form. See Exception.InnerException for details. The error is: The specified module could not be found. (Exception from HRESULT: 0x8007007E) ---> System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)
at System.Windows.Forms.UnsafeNativeMethods.CoCreateInstance(Guid& clsid, Object punkOuter, Int32 context, Guid& iid)
at System.Windows.Forms.WebBrowserBase.TransitionFromPassiveToLoaded()
at System.Windows.Forms.WebBrowserBase.TransitionUpTo(AXState state)
at System.Windows.Forms.WebBrowser.get_AxIWebBrowser2()
at System.Windows.Forms.WebBrowser.set_ScriptErrorsSuppressed(Boolean value)
at FitzAIO.ShareCash.gs0GOMTyg()
at FitzAIO.ShareCash..ctor()
--- End of inner exception stack trace ---
at SA5SrQDXrxNLkjNYlf.AwV85huVAp4WjrkH5B.dueM1X1Y5EYOnVMQPc.pVJGH20Mw[T](T Instance)
at SA5SrQDXrxNLkjNYlf.AwV85huVAp4WjrkH5B.dueM1X1Y5EYOnVMQPc.8pwTmTgZo()
at FitzAIO.main.5odUHT39l(Object , EventArgs )
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.42 (RTM.050727-4200)
CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
FitzAIO
Assembly Version: 1.1.1.1
Win32 Version: 1.1.1.1
CodeBase: file:///C:/Documents%20and%20Settings/rawrr/Desktop/FitzAIO/FitzAIO.exe
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.42 (RTM.050727-4200)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.42 (RTM.050727-4200)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.42 (RTM.050727-4200)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.42 (RTM.050727-4200)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
Accessibility
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.42 (RTM.050727-4200)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------RE: Need help reading this error - 1llusion - 05-25-2011 lol looks like the form loading code is messed up :/ You can try to report it to the creator and hope for help... RE: Need help reading this error - Jacob - 05-25-2011 (05-25-2011, 12:45 AM)1llusion Wrote: lol looks like the form loading code is messed up :/ the creator made it, dumped it and doesn't give a shit. he dumped it under a sharecash link so he could passively make money off it being an AIO. Literally does anything you need it to. but this works on my friends computer. /: RE: Need help reading this error - Coder-san - 05-25-2011 Quote:The error is: The specified module could not be found. (Exception from HRESULT: 0x8007007E) ---> System.IO.FileNotFoundException: The specified module could not be found. Check the code on Form load, if it's dealing with any hard-coded file-path, then remove it or change it accordingly. RE: Need help reading this error - Jacob - 05-25-2011 (05-25-2011, 05:23 AM)Coder-san Wrote:Quote:The error is: The specified module could not be found. (Exception from HRESULT: 0x8007007E) ---> System.IO.FileNotFoundException: The specified module could not be found. stupid people terms pl0x? Im not a programmer, and i can hardly code shit... ps: i apologize for being ignorant. RE: Need help reading this error - Coder-san - 05-25-2011 Look for Private Sub Form_load. Check if there is a path mentioned like: Code: "C:\blah\blah\etc.txt"Or you can post the code in Form_Load here, and we'll see what's wrong. RE: Need help reading this error - Jacob - 05-25-2011 I need to decompile this then right? RE: Need help reading this error - Coder-san - 05-25-2011 Umm, you posted this in VB section so I thought you already have the source. xp In that case either try to decompile it, or just delete it. RE: Need help reading this error - Jacob - 05-25-2011 What would i use to decompile it? its vb8 says .net 1.1.1.1 I have the program though. RE: Need help reading this error - Coder-san - 05-25-2011 .Net Reflector or IL Spy |