ken_nogi/XVBA/久保ファイル/xvba_modules/Xdebug/README.md
Kenichiro NOGI 4f9593b26f 2025-12-13
2025-12-13 18:12:03 +09:00

865 B

Xdebug (VBA Immediate Window in Output VSCode Window)

Description

  • This package provides a way to simulate VBA Immediate Window in Output VSCode window
  • Find the Output window (VBA Immediate Window)

Methods

VBA immediate Window

Xdebug.printx

  • This method print any type os variable

Public Sub index()


  Dim test(1) As Variant

  'Add an Object
  Set test(0) = Sheets(1)
  'Add a String
  test(1) = "Test Xdebug Output"
  
  Xdebug.printx test

End Sub

Xdebug.printError

  • This method is use for print error
 Public Sub index()
  
  On Error GoTo ErrorHandle:
    'throw an error
    d = 1/0
    'Your code here
  
  
 ErrorHandle:
    Xdebug.errorSource = "pageConsoller.index"
    Xdebug.printError

 End Sub