when will visual mode & conditional debugging be issued?

 

hi, stringo

   may i know when will visual mode & conditional debugging be issued?

conditional debugging ,for example:

the debug break the program only if  (time>= 2010520) 

 

thanks 

 

you should use DebugBreak function.

if(time>=2010520)
  {
   DebugBreak();     // execution will paused on this line
  }