473,407 Members | 2,306 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

just-in-time (JIT) debugging

1
Hi
when I run my application for some users it gives me the following message
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.IndexOutOfRangeException: There is no row at position 0.
at System.Data.RBTree`1.GetNodeByIndex(Int32 userIndex)
at System.Data.DataRowCollection.get_Item(Int32 index)
at InvitationAndEducation.frm_main_screen.Form1_Load( Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
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 System.Windows.Forms.ScrollableControl.WndProc(Mes sage& m)
at System.Windows.Forms.ContainerControl.WndProc(Mess age& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.O nMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.W ndProc(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.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
InvitationAndEducation
Assembly Version: 1.0.2778.29967
Win32 Version: 1.0.2778.29967
CodeBase: file:///E:/IPO%20Setup/InvitationAndEducation.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
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.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Data
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Transactions
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.EnterpriseServices
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.832 (QFE.050727-8300)
CodeBase: file:///C:/WINDOWS/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.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.


So, what to do?
Aug 10 '07 #1
12 35702
Plater
7,872 Expert 4TB
Fix the error.
It looks pretty simple.
You're attempting to use an index that doesn't have valid data at it. You can probably do a check for null in your code to stop that.
Or use try/ctach blocks
Aug 10 '07 #2
LadyU
6
Hello I am having the same problem and I have no idea how to fix it please any help would be great.I am at a lost right now Thanks for any help
Oct 19 '07 #3
Plater
7,872 Expert 4TB
System.IndexOutOfRangeException: There is no row at position 0.
This should not be a brain bender here. Your object does not contain the data you thought it does.
Check to make sure it's not null and that count of items in the collection is enough to match the index you want to use.
Oct 19 '07 #4
LadyU
6
This should not be a brain bender here. Your object does not contain the data you thought it does.
Check to make sure it's not null and that count of items in the collection is enough to match the index you want to use.
ok i am sorry but you lost me,I am new to this stuff and it is the first time i had this problem and i am tired it keeps popping up when i reboot thanks
Oct 19 '07 #5
Plater
7,872 Expert 4TB
ok i am sorry but you lost me,I am new to this stuff and it is the first time i had this problem and i am tired it keeps popping up when i reboot thanks
So this happening on your computer for code that you DID not write?
Oct 19 '07 #6
LadyU
6
So this happening on your computer for code that you DID not write?
you got it,i don't even know how to do codes
Oct 19 '07 #7
Plater
7,872 Expert 4TB
you got it,i don't even know how to do codes
hehe apparently neither does someone who made some software that is trying to run when you boot your computer.

I would guess you either have some spyware of some sort, or old software trying to talk to a device (like a printer maybe?) that is no longer connected.

I would suggest running SPYBOT on your computer and removing any malware you may have running.

If you can figure out the NAME of the program that is doing it, you will have much better luck correcting the problem.
Oct 19 '07 #8
you got it,i don't even know how to do codes
This issue is not your fault, and cant be fixed by users, contact the person in charge of developing the application, or someone that has the source and can change it
Oct 19 '07 #9
LadyU
6
kk will try that when i reboot my comp i will write down what it is and pray i can fix it cuz it is a real pain
Oct 19 '07 #10
LadyU
6
This issue is not your fault, and cant be fixed by users, contact the person in charge of developing the application, or someone that has the source and can change it
How do I know who that would be,here is what it says when it pops up See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.IO.FileNotFoundException: File not found.
at Microsoft.VisualBasic.Interaction.Shell(String Pathname, AppWinStyle Style, Boolean Wait, Int32 Timeout)
at EULALauncher.NET.Form1.Launch_EULA()
at EULALauncher.NET.Form1.Form1_Load(Object sender, EventArgs e)
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
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 System.Windows.Forms.ScrollableControl.WndProc(Mes sage& m)
at System.Windows.Forms.ContainerControl.WndProc(Mess age& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.ControlNativeWindow.OnMessage (Message& m)
at System.Windows.Forms.ControlNativeWindow.WndProc(M essage& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.2407
CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
----------------------------------------
EULALauncher.NET
Assembly Version: 1.0.2461.17552
Win32 Version: 1.0.2461.17552
CodeBase: file:///C:/dell/E-Center/EULALauncher.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.2032
CodeBase: file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
----------------------------------------
System
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.2407
CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
----------------------------------------
System.Drawing
Assembly Version: 1.0.5000.0
Win32 Version: 1.1.4322.2032
CodeBase: file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
----------------------------------------
Microsoft.VisualBasic
Assembly Version: 7.0.5000.0
Win32 Version: 7.10.6001.4
CodeBase: file:///c:/windows/assembly/gac/microsoft.visualbasic/7.0.5000.0__b03f5f7f11d50a3a/microsoft.visualbasic.dll
----------------------------------------

************** JIT Debugging **************
To enable just in time (JIT) debugging, the config file for this
application or machine (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 machine
rather than being handled by this dialog.

how may I fix it ,this started not that long ago thanks
Oct 19 '07 #11
Plater
7,872 Expert 4TB
Looks like it's DELL trying to show it's "welcome new user" screen, but cannot find the file(s) it needs to show you.

The process appears to be:
C:/dell/E-Center/EULALauncher.exe

So check your startup directory (it should be in your start menu->programs->startup) and remove it from there. It might not be there, but if you are lucky it will be. Its harder to talk someone through the removal if it's kept elsewhere.
Oct 19 '07 #12
LadyU
6
Looks like it's DELL trying to show it's "welcome new user" screen, but cannot find the file(s) it needs to show you.

The process appears to be:
C:/dell/E-Center/EULALauncher.exe

So check your startup directory (it should be in your start menu->programs->startup) and remove it from there. It might not be there, but if you are lucky it will be. Its harder to talk someone through the removal if it's kept elsewhere.
well it looks like i will have to do some looking for it lol not where it should be thanks for the help i will keep trying to get rid of it
Oct 19 '07 #13

Sign in to post your reply or Sign up for a free account.

Similar topics

2
by: dan glenn | last post by:
I want to redirect from an HTML file to a PHP script (to conserve a past link published elsewhere). What I'm doing is like: (file oldfile.html) <html> <head> <meta http-equiv=refresh...
10
by: Norman Bird | last post by:
I have a form i will use to register new people and when I click the submit button, the form just shows itself. It is supposed to show a message showing field errors if you leave fields blank etc....
0
by: Janning Vygen | last post by:
Hi all, To all those people using mysql and asking if they should change to postgres, i just want them to tell that i came from mysql too but very (!) soon really wanted to use all these nice...
1
by: 9to5 | last post by:
Hey All, On my last compile something strange just happened. My main menu bar just disappeared from both my form designer view and the running application. I can't seem to get it back. All the...
22
by: Ark Khasin | last post by:
Due to a peculiar need (code instrumentation) I came across unexpected behavior of Visual Studio 6.0 and 2005 (doing the same thing): #include <stdio.h> #define CAT1(a,b) a ## b #define...
3
by: RDMomcilovic | last post by:
Hi I am just beggining to learn c++ and i just wondered weather any1 had any tips for me to help me to learn more efficiantly or just make a different kinda program insted of just "hello world" ...
1
by: joestevens232 | last post by:
I'm stuck on how I can creat a LE object and pass it the line just input..than could i use a for loop and the .push_back to get the lines into the vector? vector<Log_Entry> parse(string); This...
0
by: money_making | last post by:
Just be a part of the big game and become our partner.It is easy and free.If you have a web site you just need to put our banner and wait your money.Just go to :...
0
by: manikandan | last post by:
dont miss it just open dont miss it just open dont miss it just open #############################
5
by: John Salerno | last post by:
I just installed Pylons onto my hosting server so I could try out templating with Mako, but it seems a little more complicated than that. From the look of it all, the site seems to want a full...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.