Re: How to check if websites is connected to google analytics? Digital Media Digital Marketing Search Engine Strategies by lucytaylor01 For manually, press ctrl + U to view page source page. You can find google analytics code in head section. Also you can use GA Debugger for checking analytics code. Re: What is wrong in my this backup code? sql C# Programming Software Development by Salem 1. Run the program in the debugger. 2. Put a breakpoint on `con.Open();` 3. Run the backup part of the program. 4. Print the contents of the `cmd` string, after it's made all the runtime substitutions. Is that string what you were expecting? The spaces around your double-back-slash seem out of place. debugger Programming Software Development by kararu I am getting segmentation fault in my perl code. I am not able to find out,from where this arises.Can anyone suggest em a good debugger to find it out.thanks a lot. Re: debugger Programming Software Development by MattEvans … CPP code and the CPP program itself. The "best debugger" is assuming everything's going to go wrong before… debugger help Programming Software Development by dinamit875 … working, but as soon as im trying to add results debugger breaks after adding score, can anyone help me to fix… Re: debugger help Programming Software Development by gerard4143 Which debugger are you using? Re: debugger help Programming Software Development by dinamit875 [QUOTE=gerard4143;1033498]Which debugger are you using?[/QUOTE] im using devc++ Debugger "Problems" Programming Software Development by EneilShade …gives me, 1183908153, is wrong. I immediately turned towards the debugger (using NetBeans 7.0). Upon close investigation, my Sieve is…was my summing method wrong? TO THE DEBUGGER! As soon as I turned the debugger on and set its breakpoints in the…we now are at my predicament -- it works with the debugger, and does not without it. Needles to say, I am… debugger tracer [anti-crash system] Programming Software Development by chantak … system for what I researched, is a type of automatic debugger/tracer [b][I am not sure][/b]. The goal of… form of documentation, books][/b]; *information about any type of debugger/tracer that can do this type of task, if possible… with [b]a plugin system, or anti-crash system, or debugger/tracer[/b] and want share it to me, are all… Re: Debugger "Problems" Programming Software Development by EneilShade … I have debugged for hours on my own. When the debugger is not attached, it shows that no numbers have been…. Rather strange a problem. As soon as I attach a debugger, it prints the proper values and adds correctly. Re: Debugger "Problems" Programming Software Development by NormR1 [QUOTE] why, though, does it work in the debugger?[/QUOTE] It should work in the debugger. Why do you think it shouldn't? Re: Debugger "Problems" Programming Software Development by EneilShade No, it does work when I use the debugger. It does not work (at all) when I do not use the debugger. Re: Debugger "Problems" Programming Software Development by NormR1 [QUOTE] It does not work (at all) when I do not use the debugger.[/QUOTE] Can you post the code you are talking about? That does not work. I can't understand how the debugger could change how it executes. I copied, compiled and executed the code you posted earlier and it seems to work up to the last 2 items. Re: Debugger "Problems" Programming Software Development by NormR1 So now where is the OP's thinking that the code worked differently in the debugger? I can't imagine his tracing for 2000000 times. Question about the debugger: Does it have conditional breaks? For example: break here when X > 19999900 Re: Debugger "Problems" Programming Software Development by EneilShade The problem is, unless the debugger is on, it thinks all numbers are primes. Re: Debugger "Problems" Programming Software Development by EneilShade I have removed the print code. But thanks for the post! That is an interesting bug! I will check that out. Now, why, though, does it work in the debugger?! Re: Debugger "Problems" Programming Software Development by JamesCherrill Have you changing the declaration of int Total to long Total? As I posted before, the correct answer is too large for an int. It may be that he debugger is picking up the integer overflow whereas the normal JRE doesn't check for that??? Re: Debugger "Problems" Programming Software Development by JamesCherrill … J1.6u26 under Eclipse, both normal execution and under the debugger and all my primes looked good (including the last two… Re: Debugger "Problems" Programming Software Development by JamesCherrill My only guess is that the debugger may handle the int overflow differently from the normal runtime - the OP said all his problems went away when he changed Total to long. Debugger for PL/SQL in sql server Programming Databases by SubeeshBabu Hi Everyone, Is there any in built debugger tool present in SQL Server for PL/SQL programs? Or can we configure a new debugger tool like SQL*Debug for Oracle? I need your help for this. waiting for your reply debugger is not running Programming Web Development by muthu …, but in home it says, ur webserver cannot debug ie debugger is not running. i also check in webconfig file , ie… debugger code Programming Software Development by sweety0 does anybody has a debuger code.means how to make debugger in assembly language... Re: debugger code Programming Software Development by sweety0 hi dear i need a coding of a debugger which works in the assembly language... Re: debugger code Programming Software Development by Salem Well which operating system / assembler / tools are you using at present? A debugger needs to be pretty well matched to what you have in order to work effectively. Re: debugger code Programming Software Development by Evenbit Download "disasm.zip" from the Files section of AoAProgramming: [url]http://groups.yahoo.com/group/aoaprogramming/[/url] It is a good place to start on coding a modern-day disassembler/debugger. Nathan. [url]http://del.icio.us/Evenbit[/url] Debugger Skipping my loop?? Programming Software Development by coding101 Why is the debugger showing that it is skipping my loop in this method [… Re: debugger Programming Software Development by kararu Since Iam not sure from where the error arises, I am not able to provide code.Actually it uses inline CPP. the cpp program has memory allocations and deallocations done properly in a thread environment.(I create threads in a loop.When I create many threads, seg fault comes. if I create few threads no error).help me out pls. Re: debugger Programming Software Development by KevinADC Sorry, but your question is out of my range of knowledge and experience. A question of this nature might be best asked on the perlmonks website. Re: debugger Programming Software Development by kararu okay.I will try that .Thanks. meanwhile, I tried using GDB(since perl is written in c too),But gdb requires a program in executable form.How will I put that .pl there ? :(.It naturally says not exe format.How do I come out of this? Re: debugger Programming Software Development by MattEvans The perl interpretter is written in C but .pl files aren't executable. You can't make them executable without using some kind of Perl-to-C translater. I wouldn't advise translating them!