Microsoft Access Developer Tools

Posted : admin On 29.05.2020
Microsoft Access Developer Tools Average ratng: 5,0/5 8480 votes

Find how-to content, sample code, SDK and API documentation, VBA references, training, and technical articles for developing solutions and customizing Access. Access Microsoft Docs Skip to main content. Vincent Billard's V-Tools Handy developer tools including Total Search Thomas Moeller's TM VBA-Inspector Browse the entire VBA code of an application for potential errors. Thomas uses the Microsoft Translator on his pages. Stephen Lebans's Downloads Access downloads from the amazing mind of Stephen Lebans Gunter Avenius' Ribbon Editor.

-->

Microsoft Access Developer Tools

The Console developer tool in Microsoft Edge logs information that's associated with a webpage, such as JavaScript, network requests, and security errors. You can use the Console for interactive debugging and ad hoc testing.

To open the Console tool in Microsoft Edge, press the F12 key to access the developer tool window (or right-click on the page, and then select Inspect Element). Then, select the Console tab at the top of the window.

Microsoft Access Developer Tools

You can also use the Console tool to communicate to and from a running webpage. You can use the Console to:

  • Post standard error and status codes and informational messages as your code runs.
  • Generate custom debug logs from the Console API calls you include in your code.
  • Provide a command line and interactive tree view for inspecting current return values of key variables and functions.

Parts of the Console

Tools

The following image shows the key parts of the Console:

Microsoft Access Developer Tools Download

  1. Errors / Warnings / Info / Logs buttons: Filter console output by the specified type. You can multi-select buttons by holding down the Ctrl key. The AllCh340. button clears all filters.

  2. Clear button (Ctrl+L): The Clear button clears the current console display.

  3. Preserve Log check box: Selecting the Preserve Log check box persists your console output across page refreshes and closing and reopening DevTools. The Console history clears only when the tab is closed or you manually clear the Console.

  4. Target: Use the Target drop-down menu to switch to a different execution context, such as an <iframe> in your page or a running extension. By default, the top-level frame of your page is selected. Hovering over a selected frame displays a tooltip that shows the full URL for that resource.

  5. Show Console / Hide Console button (Ctrl+ ` ): In addition to the Console panel, you can use the console from the bottom of any other DevTools panel by pressing the Show Console / Hide Console button. The button has no effect when DevTools is open to the Console panel.

  6. Filter logs (Ctrl+F) : You can also filter logs by using a specific text string in the search box.

  7. Debugger: Select any blue source link to open the DevTools Debugger to that particular line of code for further inspection.

Shortcuts

ActionShortcut
Launch DevTools with Console in focusCtrl + Shift + J
Switch to the ConsoleCtrl + 2
Show/hide the Console from another DevTools tabCtrl + ` (back tick)
Execute (single-line command)Enter
Line break without executing (multi-line command)Shift + Enter or Ctrl + Enter
Clear the Console of all messagesCtrl + L
Filter logs (set focus to search box)Ctrl + F
Accept auto-completion suggestion (when in focus)Enter or Tab
Previous/next auto-completion suggestionUp arrow key/Down arrow key