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 : Send a Mail using Predefined Template From MS Outlook Using Excel
- VBA-Excel: Appending Text to Existing Word Document - at Beginning
- VBA-Excel: Read Data from XML File
- VBA-Excel: Get ALL The Opened Internet Explorer (IE) using Microsoft Excel
- VBA-Excel: Convert Numbers (Rupees) into Words OR Text - Updated Till 1000000 Crore With Decimal Numbers