Check which ports are open to the outside world. Helps make sure that your firewall rules are working as intended.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
' Work with the current active cell.
Dim currentCell As Excel.Range = Me.Application.ActiveCell
'create a style on thw workbook
Dim style As Excel.Style = Globals.ThisWorkbook.Style
'assign the style of cell to the style created
style = currentCell.Style
now you can reference the "style" on any other cell.
from another part in code
' Work with the current active cell.
Dim currentCell As Excel.Range = Me.Application.ActiveCell
currentCell.Style = "NewStyle"