Embed Google Chrome or Firefox in Excel Sheet - excel

It is possible to embed the 'Internet Explorer Web Browser' in an Excel Sheet using the Microsoft Web Browser Object. How does one Embed Google Chrome or Firefox in an Excel Sheet?

There is a project to provide a Mozilla ActiveX control matching the IE Web Browser Control Interface as much as possible. I am not following the progress but its supported version seems dated.
As for Chrome you could check out Chromium Embedded but it doesn't seem to support ActiveX so you would have to work something out using the .NET binding (CefSharp) in combination with VSTO and WinForms.
I have used CefSharp with WinForms application and it works quite well.
The samples are good for a quick start.

Related

Shared runtime Excel add in no longer uses IE11 - Bug or feature?

My Excel add in with custom functions using a shared runtime was happily chugging along with the IE11 webview, until about a week ago when it stopped working because it started running only on the Edgium webview.
I think the documentation still says the expected webview is IE11 in the shared runtimes page, but the webviews page could be interpreted as saying it's the edge2 webview.
Did anybody else see the same effect? I mean, that's great if it works (My add in has other problems now, and I can't fully test), I just didn't expect it.
It is a feature. See this note from the article Browsers used by Office Add-ins
If your add-in includes the <Runtimes> element in the manifest, then it will not use Microsoft Edge with the original WebView (EdgeHTML). If the conditions for using Microsoft Edge with WebView2 (Chromium-based) are met, then the add-in uses that browser. Otherwise, it uses Internet Explorer 11 regardless of the Windows or Microsoft 365 version. For more information, see Runtimes.

The browser support for excel add-in is on my own site or the excel online app?

The Microsoft Documentation says
An Excel add-in allows you to extend Excel application functionality across multiple platforms including Windows, Mac, iPad, and in a browser
Does browser mean my own website/web app or the online excel app that Microsoft has at https://office.live.com? I have been through the documentation, but couldn't find the answer.
On the web The Excel JavaScript addins interact with Excel Online which runs in a browser.

What browser does Outlook web use for addins on mac?

Does anyone know which browser Outlook-web uses for addins on a mac?
background: I am developing an addin for outlook web on a mac and I'm making use of a bootstrap collapsable panel. I also have two icons that I want to have to the left and right of the title, however, the anchor tag used to expand / collapse the panel is forcing a line break. I am wondering if this issue is something in my css or a browser issue since setting display: inline on the anchor tag does nothing.
According to MS documentation Webkit rendering engine is used, which is nothing but the Safari browser (with limited functionality) is used.
According to Microsoft
Any browser that supports ECMAScript 5.1, HTML5, and CSS3, such as
Internet Explorer 11 or later, or the latest version of Microsoft
Edge, Chrome, Firefox, or Safari (Mac OS).

What browser / browser engine do Office Add-ins use?

So I am trying to get started developing Office 365 Add-ins (previously Apps for Office), and I was wondering what browser or browser engine Office uses when it renders your app. I tried using JavaScript's navigator.appCodeName and navigator.appName, but due to the problem described here renders that method useless. What browser or engine do Office Add-ins use to render apps?
It depends on where Office is being used. If it's on Windows Desktop, Office Add-ins use an Internet Explorer to load the hosted webpage in Office. For iOS, it will rely on the native WebView control. If on Office Online, it will use a sandboxed iframe, in which ever browser you open Office Online with.
If you're trying to determine the browser Office is running in, I believe sniffing the user agent string will work for you.

How to test my application on older version of IE?

I have installed IE8 on my system. I usually test my application on this browser, but the problem arises when i got to know that the client is using IE7. Now how can i test my application on IE7?
One possible solution is to have dual booting on my system. So on version of Windows i can have IE7 and on another i can have IE8. But i really don't want to use this solution.
Another possible solution is to use PC Emulator [ Don't know what is this, just heard about these ]. Using which i can have multiple IE version simultaneously. Have you ever tried this solution? Please name any good FREE emulator.
Please let me know if there is any other better solution.
you can use
http://www.my-debugbar.com/wiki/IETester/HomePage
and here can you see all browser versions as picture
http://browsershots.org/
I got the solution. :)
In IE8, click on Tools > Developer Tools | or press F12
Then in developer Tools > select the browser mode [ available: IE7, IE8, IE8 with compatibility view ]
This is what i was expecting. :)
Microsoft provides a free set of Windows Virtual PC images for testing various versions of IE on various Windows service packs.
Virtual PC is also free.
Have you ever seen Microsoft Expression Web tool? It contains kick-ass tool for testing pages in various versions of IE - SuperPreview. And this tool also available free, you can download it here.
It's much more easy to use it instead of Virtual PC images. But it can't replace VPC completely because testing in clear environment is also very important.
This is a quick and easy web service solution, good for quick testing.
http://www.browserstack.com/
For those who are still looking for an answer here's a Chrome extension
It has over 6 millions users, and it claims:
Top 10 Chrome extension since 2009!
-- WINDOWS ONLY -- WINDOWS ONLY --
IE Tab exactly emulates IE by using the IE rendering engine directly
within Chrome. This will enable you to use ActiveX controls and test
your web pages with different versions of IE (IE6, IE7, IE8, or IE9).
-- FEATURES --
Create a list of URLs that will automatically open in IE Tab
Group Policy support for enterprise deployments
Securely use the old IE rendering engine
Edit Sharepoint documents instead of opening read-only
Use Java, Silverlight, and ActiveX in Chrome seamlessly
You can also look at Adobe BrowserLab:
http://browserlab.adobe.com
Microsoft has launched Modern.IE to help with this. Go here to download a test image for your preferred OS and visualization software.
http://www.modern.ie/en-us/virtualization-tools#downloads

Resources