Posts Tagged ‘Debug’

Debugging Problem

Problem:

The breakpoint will not currently be hit. No symbols have been loaded for this document

Solution:

Make sure that you are compiling in Debug mode not Release mode.

,

No Comments


How to Debug Installer Class

To Debug Install Class;

Public Overrides Sub Install(ByVal stateSaver As System.Collections.IDictionary)

#If DEBUG Then

        System.Diagnostics.Debugger.Break()

#End If

        MyBase.Install(stateSaver)

End Sub

 

, ,

No Comments



SetPageWidth