Be the first user to complete this post
|
Add to List |
VBA-Excel: Launch Mozilla Firefox using Microsoft Excel.
To launch the Mozilla Firefox using Microsoft Excel, follow the steps mentioned below
Steps:
- Create the object of WScript Shell
- Call WScript.Shell Run() Function and provide the complete path for FireFox.exe
- Set the object of WScript Shell to Nothing
Complete Code:
Function FnLaunchFF() Dim objShell Set objShell = CreateObject("WScript.Shell") objShell.Run ("""C:\Program Files (x86)\Mozilla Firefox\Firefox.exe""") Set objShell = Nothing End Function

Also Read:
- Excel-VBA : Prevent Changing the WorkSheet Name
- VBA-Excel: Edit And Save an Existing Word Document
- VBA-Excel: Format already written text in a word document – Format All Content
- VBA-Excel - Merger - Merge or Combine Many Word Documents Into One
- VBA-Excel: Update XML File