Results 1 to 2 of 2

Thread: Debug Question

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Posts
    382

    Debug Question

    Can a Debug Build do anything that the Release build cant? Like can it automatically generate error logs or other nifty things like that in a public "debug" release? I know vb.net has alot more debugging power than vb6 and I would like to take advantage of it...

  2. #2
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339
    When you compile to debug mode then it creates those .pdb files that enable you to debug the running exe and catch events. If you compile to release mode then you can't really use the IDE to debug or at least it wont stop at your breakpoints and such.

    Having said that there are still some cool debugging tools or features that are available whether you compile to debug or release mode.

    I'm not sure what you need or are looking for but check out 'Configuring Trace Switches' in the help files. Else see 'Trace and Debug Settings Schema' and those are just things you can add/remove via a config file. Using reflection in the app itself can find out a ton of things.

    There is this too:
    http://www.vbforums.com/showthread.p...hreadid=212776
    Last edited by Edneeis; Aug 18th, 2003 at 06:24 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width