liljim73

New Member
Joined
Jul 6, 2011
Messages
2
I keep getting this error when I "try" to use update agent for my bully dog gt tuner

input string was not found
details:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.FormatException: Input string was not in a correct format.
at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at Agent.BDDevice.CheckOnlineVersion()
at Agent.BDDevice.ValidateDevice()
at Agent.DeviceFinder.FindDevices(List`1 InputList)
at Agent.AgentForm.AgentForm_Load(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at Agent.AgentForm.WndProc(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.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
UpAgent
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Users/james/AppData/Loca...a259d4_0001.0000_e3bb9afe10f5e7eb/UpAgent.exe
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
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.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSI....0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSI....0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.
For example:
<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>
When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
 

Solution
The error message you are encountering indicates a formatting issue with the input string in the update agent for your Bully Dog GT tuner. The specific exception is a System.FormatException stating that the input string was not in the correct format. Here are some key points from the error message:
  • The error is occurring during a call to CheckOnlineVersion() in the Agent.BDDevice class.
  • The error is related to parsing an integer value (ParseInt32) from a string.
  • The error seems to be happening in the loading process of the agent form (AgentForm_Load).
To address this issue, you can try the following steps:
  1. Verify Input Format: Check if the input data being processed by the...
The error message you are encountering indicates a formatting issue with the input string in the update agent for your Bully Dog GT tuner. The specific exception is a System.FormatException stating that the input string was not in the correct format. Here are some key points from the error message:
  • The error is occurring during a call to CheckOnlineVersion() in the Agent.BDDevice class.
  • The error is related to parsing an integer value (ParseInt32) from a string.
  • The error seems to be happening in the loading process of the agent form (AgentForm_Load).
To address this issue, you can try the following steps:
  1. Verify Input Format: Check if the input data being processed by the update agent is correctly formatted. It seems that there might be a string that is expected to be converted to an integer, but the format is incorrect.
  2. Debugging: Since the error suggests enabling just-in-time (JIT) debugging, you may want to set up debugging to get more detailed information about where the error is occurring in the code.
  3. Check Data Source: Review the data sources being used by the update agent to ensure that the input values are in the expected format before being processed.
  4. Update Agent: Ensure that your update agent is up-to-date. It's possible that an update may have resolved this issue, especially if it's a known bug that has been fixed in newer versions. If you have access to the code or can modify the input data, you may need to investigate further to pinpoint the exact cause of the formatting issue. If you continue to experience the problem, you may want to reach out to the Bully Dog support team for more specialized assistance.
 

Solution
Back
Top