excel-addins

How to dected Excel was starting by automation (VSTO Addin context)

有些话、适合烂在心里 提交于 2019-12-08 07:14:38
问题 Context: I'm running a VSTO Excel application context addin and I will load my addin also when MS Excel was started by an other process for automation in visible mode. So now, it's necessary to know if MS Excel was started by an other process with automation e.g CreateObject() ExcelApplicatoin.Visible =true ("/automation -embedding") At the the moment, I evaluate the following Excel Property: ThisAddIn.Application.UserControl But when MS Excel is started during CreateObject the property is

We couldn't connect to the catalog server for this add-n

血红的双手。 提交于 2019-12-07 21:03:21
问题 I just realized that many add-ins cannot be loaded in Excel Online (Chrome): Does anyone know what's happening? 回答1: This is a known issue reported through StackOverflow and other channels. We're investigating this as a high priority issue. We'll let you know when the issue is resolved. 来源: https://stackoverflow.com/questions/46670563/we-couldnt-connect-to-the-catalog-server-for-this-add-n

Trim all cells within a workbook(VBA)

南笙酒味 提交于 2019-12-07 17:23:18
问题 I have attempted to add functionality to an excel add-in ave been developing which trims the leading spaces at the end of used cells, and maybe even parse the text, The reason I need to do this is simply to have it turn into a hyperlink which I have already working but that parts fine. This is what I have attempted so far, I have it trimming the active.worksheet am on which is fine but I can't figure out how to: Trim Every cell being used across the whole workbook. And also parse the text if

Excel JS Add-In works in Excel but not Excel Online

孤人 提交于 2019-12-07 01:56:28
I've built an Excel JS Task Pane add-in using the WoodGrove Expense Trends sample and have validated that it runs correctly in Excel 2016 on my machine. However, when I go to Excel Online and try to add the add-in (via uploading the manifest from my machine), I get "Your add-in manifest is not valid." I'm not sure what it is about this manifest that's valid on my machine but not in Excel Online. Anyone encountered this before or have any diagnosis ideas? It's somewhat akin to banging my head into a wall at this point. Michael Zlatkovsky - Microsoft Taking a guess from looking at the manifest,

Add excel custom functions to an existing excel add-in - Javascript Api

橙三吉。 提交于 2019-12-06 15:56:45
问题 I have an existing excel add-in with UI (using react) and I would like to add some custom functions to it. When I add the add-ins in separate both work fine but when I try to merge them the custom functions don't appear. I assume that my issue is on the manifest but I'm not sure what is it: I added the custom functions extension point, added the custom functions bit to the resources Urls and ShortStrings and replaced the html source location of the cf to be the task pane html. Here is my

How to dected Excel was starting by automation (VSTO Addin context)

点点圈 提交于 2019-12-06 14:51:39
Context: I'm running a VSTO Excel application context addin and I will load my addin also when MS Excel was started by an other process for automation in visible mode. So now, it's necessary to know if MS Excel was started by an other process with automation e.g CreateObject() ExcelApplicatoin.Visible =true ("/automation -embedding") At the the moment, I evaluate the following Excel Property: ThisAddIn.Application.UserControl But when MS Excel is started during CreateObject the property is alsways "False". Does have anyone any idea to solve this problem? I have no other properties found to

We couldn't connect to the catalog server for this add-n

◇◆丶佛笑我妖孽 提交于 2019-12-06 11:27:51
I just realized that many add-ins cannot be loaded in Excel Online (Chrome): Does anyone know what's happening? This is a known issue reported through StackOverflow and other channels. We're investigating this as a high priority issue. We'll let you know when the issue is resolved. 来源: https://stackoverflow.com/questions/46670563/we-couldnt-connect-to-the-catalog-server-for-this-add-n

Trim all cells within a workbook(VBA)

吃可爱长大的小学妹 提交于 2019-12-06 01:40:59
I have attempted to add functionality to an excel add-in ave been developing which trims the leading spaces at the end of used cells, and maybe even parse the text, The reason I need to do this is simply to have it turn into a hyperlink which I have already working but that parts fine. This is what I have attempted so far, I have it trimming the active.worksheet am on which is fine but I can't figure out how to: Trim Every cell being used across the whole workbook. And also parse the text if possible This is my attempt at Trimming the entire workbook, Its something simple I just know it, I

VSTO Debug version fine, Installed version doesn't read app.config

ぐ巨炮叔叔 提交于 2019-12-06 01:37:27
问题 I have a VSTO Excel 2007 add-in that should read connectionstrings from the app.config file, and then let the user decide which database to connect to. This works fine when I debug it, but when I run the deployed version (done with Windows Installer) the connectionstrings aren't read at all. I have added the primary outputs from all the projects to the setup project. The app.config file is in the ExcelAddIn project, but not under the Excel heading. The class that manages the connectionstrings

Add items to the ROT( Running Objects Table)

天涯浪子 提交于 2019-12-05 20:19:59
I know how to use *****.GetActiveObject(ProgId), however the problem is that several of the Applications I use this code line on are not added to the ROT, even if they are already open, I get an HRESULT Error. However If I click on another Application and then return to the original Application, the code line works just fine. The reason I am leaving this so vague, is because this is a problem I am having across 10+ applications. The reason for me not posting code is because I do not believe this problem to be code based, rather I believe this problem to be due to a simple lack of understanding