Posts

Showing posts with the label vbe

Breakpoint Line Numbers in VB Editor

Image
Breakpoint Line Numbers in VB Editor Does anyone know how to get line numbers of breakpoints in the VB Editor programmatically? I can't find a way to do this currently with the VBA Extensibility Library (Microsoft Visual Basic for Applications Extensibility 5.3). FYI, I've already numbered my lines (starting with 10 and increasing by 10 for each line, excluding Dim 's) Dim Can you confirm you're talking about "Visual Basic for Applications" - (e.g. the VBA editor in Microsoft Office?), if so, which host-application are you using? – Dai Jun 30 at 19:47 Yes, Visual Basic for Applications (VBA). I'm using Excel 2016. I'd like to pull the line numbers where programmer has put breakpoints (not Stop statements in the code, but specifically breakpoints signaled by the red circles) ...