Tips & Trick

Firewall Service

How to Enable or Disable Firewall Service

Step 1: Open Run ( [Window Key] + [R] )
Step 2: Write "Services.msc" without quotes and press [Enter] key.
Step 3: Scroll down to find "Windows Firewall" and right click it

Step 4: Right Click on it and do Start or Stop



MS Excel 2007

How to Hide ribbon 

Step 1: Click on Office Button
Step 2: Click On Excel Option
Step 3: Check out Show Developer tab

Step 3: Open the Developer Tab and click Visual Basic Option

Step 4: Write Below code

Private Sub Workbook_Open()
    Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",False)"
    Application.DisplayFormulaBar = False
    Application.DisplayStatusBar = Not Application.DisplayStatusBar
    ActiveWindow.DisplayWorkbookTabs = False
End Sub