Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program.
0
votes
0answers
4 views
Content not displaying properly in opencart site
I am working on a cosmetics website. On home page I am showing a deal with complete description. Everything is fine except when I load the page for first time it does not show the full content. Half ...
0
votes
0answers
3 views
Move from 4.1 to 4.2 exjs
I have giant exjs project on me. Dont know the code in it at all.
And i have the following problem:
Since we played in 4.2 all of the checkboxes are now bugged.
On a left click there is a double ...
2
votes
0answers
41 views
How to step into tomcat source?
I want to learn the internals of tomcat operation and understand the flow.
For this I created a servlet -
public class TestServlet extends HttpServlet {
//Breakpoint set on constructor
...
0
votes
1answer
5 views
How do I debug my web.py project in Eclipse?
I have my web.py project open in Eclipse, but how can I:
1) Start my project from within Eclipse (and not the console)?
2) Debug my project from within Eclipse (breakpoints, etc..)?
There's no ...
0
votes
1answer
26 views
AS3: TypeError: Error #1009: Cannot access a property or method of a null object reference. Help Needed
I'm new to ActionScript and I really need help debugging this problem. This is what it says on my output when I run my code:
TypeError: Error #1009: Cannot access a property or method of a null ...
0
votes
0answers
14 views
“Error: Error #1023: Stack overflow occurred.” without a break or object reference
My console window gets a set of about 15 copies of this line:
Error: Error #1023: Stack overflow occurred.
Error: Error #1023: Stack overflow occurred.
Error: Error #1023: Stack overflow occurred.
...
-1
votes
1answer
35 views
Index exceeds matrix dimensions
I try to forecast few step ahead. And I encountered the problem of
Index exceeds matrix dimensions at
volrv(index2,index1)=sum(rv1m(index2-index1+1:index2,1));
Although I have checked the matrix ...
1
vote
0answers
6 views
Debugging IE when shown within an Outlook plugin
I am working on a web app in which part of will be shown inside Outlook Explorer using an Outlook plugin that opens an IE window within Outlook. I've had no problems with users that have IE 7,8 or 9 ...
1
vote
1answer
30 views
Continue N times in Visual Studio 2008
I'm using Visual Studio 2008 to debug some CUDA code (NSight v3) I'm working on.
I've noticed several nice features of the VS2008 debugger, such as the ability to only break every N times or after N ...
0
votes
1answer
24 views
how to get price with ebay API
So I have this code, but the price of the item isn't showing up. Everything else (photo and link) is working. I tried 'currentPrice' but nothing shows up. And this is the Ebay API. I spent about two ...
0
votes
0answers
11 views
Eclipse adding breakpoints of the wrong type
I have developed an editor for a new language which extends the JavaScript editor and also a debugger plugin for eclipse. the debugger implements it's own breakpoint type (which extends eclipse ...
0
votes
1answer
13 views
android - turn off flurry while debugging
Is there an efficient way to turn off Flurry while debugging?
Right now the best way I can think of is setting a DEBUG variable to true in one file, and in all of my activities
super.onStart();
...
1
vote
3answers
41 views
Stop visual studio from breaking on exception in Tasks
i have the following code:
Task load = Task.Factory.StartNew(() => {//Some Stuff Which Throws an Exception});
try
{
load.Wait();
}
catch (AggregateException ex)
{
...
0
votes
0answers
10 views
Unable to debug SharePoint Code
I cannot seem to debug any of my SharePoint code because of this issue. SharePoint 2010 and vs 2010 in windows 7. I have tried going to the help and doing some suggested commands and such but nothing ...
0
votes
1answer
7 views
Debugging xunit test from VS: symbols loaded but not as user code
I'm trying to debug my unit tests (xunit) under Visual Studio 2012 (via Test Explorer -> Debug Selected Test).
But I can't step into my code of target library. In Modules window I see, what my library ...