active questions tagged vsto - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T22:48:19Z http://stackoverflow.com/feeds/tag/vsto http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/694422/beginner-tutorials-for-excel-programming-in-c 0 beginner tutorials for Excel Programming in C# Anirudh Goel 2009-03-29T10:21:21Z 2009-12-09T18:51:15Z <p>i'm having 3 years of exp working with excel vba. Now i want to port to excel programming using .net and C#, where can i find learning resources to get up to speed with the equivalent way in C#? thanks</p> http://stackoverflow.com/questions/1652917/is-it-possible-to-add-controls-to-the-existing-reading-pane-in-the-outlook 0 Is it possible to add controls to the Existing reading pane in the Outlook? IgorM 2009-10-31T00:12:14Z 2009-12-09T10:09:46Z <p>I know a lot of ways how to extend Outlook and add new Reading Panes and Inspectors to the Outlook, but what really bugs me is how to extend and modify the existing reading panes?</p> <p>I'd like to add more information on these panes without recreating them from scratch.</p> http://stackoverflow.com/questions/1859479/unable-to-install-a-vsto-excel-2003-addin 0 Unable to install a VSTO excel 2003 AddIn JF 2009-12-07T11:41:10Z 2009-12-09T10:06:23Z <p>I developped a VSTO SE Excel 2003 add in. When launching and debuging the add in from visual studio, it works well. But when I try to deploy it from my own install it never works.</p> <p>To sum up, here is my install process:</p> <ul> <li><p>the files are copied at the right location</p></li> <li><p>I register the addin: HKEY_CURRENT_USER\Software\Microsoft\Office\Excel\Addins\ with the appropriate values (Default, CommandLineSage, Description, FriendlyName, LoadBehavior, Manifest).</p></li> <li><p>I also add entries in HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ (with CLSID key including an UUID)</p></li> <li><p>And HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} with InprocServer32 (with the manifest name and path, the addinloader.dll fullpath), ProgID (with the assembly name (without extension)), Programmable and VersionIndependententProgID (with the assembly name too).</p></li> <li><p>I set the fulltrust policy to the url of every assemblies using caspol -m -ag "xxx" -url "MyUrl\Assemblies.dll" FullTrust -name "name"</p></li> </ul> <p>Do I miss something ?</p> http://stackoverflow.com/questions/1740287/vsto-outlook-2007-display-form-before-send-message 0 VSTO - Outlook 2007 - Display form before send message??? Eric Nguyen 2009-11-16T05:45:25Z 2009-12-09T08:29:15Z <p>Hi, I'm new to Outlook add-in programming and not sure if this is possible:</p> <p><B>I want to display a pop-up form (or selection) and ask for user input at the time they click Send. Basically, whenever they send out an email (New or Reply), they will be asked to select a value in a dropdown box (list items from a SQL database, preferrably). Base on their selection, a text message will be appended to the mail's subject. </B></p> <p>I did my research and it looks like I should use Form Regions but I'm not sure how can I display a popup/extra form when user click Send. Also, it looks like Form Regions can be used to extend/replace current VIEW mail form but can I use it for CREATE NEW form?</p> <p>Thanks for everybody's time.</p> http://stackoverflow.com/questions/1871272/adding-a-section-to-the-to-do-bar-in-outlook-2007-2010 0 Adding a section to the To-Do bar in Outlook 2007/2010? Michael Stum 2009-12-09T02:35:10Z 2009-12-09T02:35:10Z <p>I would like to add a new section to the To-Do Bar in Outlook 2010 (or 2007). I found some code to create a new collapsible task pane and someone claiming you can't modify the To-Do bar, but I also found a product called Add-In Express that claims it can do it (although at $349 it's not worth it for a one-off project).</p> <p>Is is possible to do that?</p> http://stackoverflow.com/questions/1871116/adding-a-tab-to-the-outlook-2010-ribbon 0 Adding a Tab to the Outlook 2010 Ribbon? Michael Stum 2009-12-09T01:40:50Z 2009-12-09T02:06:05Z <p>I'm trying to create an Outlook 2010 addin that adds a new tab to the ribbon. I found out how I can add my groups to an <em>existing</em> tab by setting the OfficeId to "TabMail" or something built-in, but I don't want to modify existing tabs.</p> <p>I've now set the OfficeId that something of my own ("TabMyAddin"), but it doesn't show up in Outlook. I wonder if I need to somehow tell Outlook to add it and show it, or how I would proceed?</p> <p>The RibbonType was changed to Microsoft.Outlook.Explorer if that matters.</p> http://stackoverflow.com/questions/1840892/access-document-stream-from-office-ribbon-code 0 Access Document Stream from Office Ribbon Code cmessier 2009-12-03T16:01:59Z 2009-12-08T23:53:25Z <p>I am attempting to write an add-in for Microsoft Word 2007. I'd like to create a Ribbon Button that when clicked, gets a FileStream for the current or active document. I would assume that is possible with the Visual Studio Tools for Office. Does anyone have any sample code that would show how to do this?</p> <p>Let me know if you have any questions. Thanks</p> http://stackoverflow.com/questions/1832379/is-it-possible-to-intercept-outlook-categories-events 0 Is it possible to intercept Outlook Categories events? Evgeny Shapiro 2009-12-02T11:34:43Z 2009-12-08T11:12:47Z <p>Is it possible to intercept when user creates, renames or deletes a category in Outlook?</p> http://stackoverflow.com/questions/1865294/how-to-programmatically-enable-the-options-button-in-the-ms-word-print-setup 0 How to programmatically enable the "Options..." button in the MS Word Print Setup dialog Ben Robbins 2009-12-08T07:38:52Z 2009-12-08T07:38:52Z <p>I'm trying to display the MS Word "Print Setup" dialog in a VSTO AddIn for Microsoft Word 2003. I can display the dialog box, but the options button at the bottom left corner of the dialog is always disabled as per the following screen capture.</p> <p><img src="http://i47.tinypic.com/f38gbc.jpg" alt="alt text"></p> <p>The relevant code for what I've done so far is:</p> <pre><code>private void printSetup_Click(CommandBarButton Ctrl, ref bool CancelDefault) { Dialog dialog = App.Dialogs[WdWordDialog.wdDialogFilePrintSetup]; Object missing = Type.Missing; dialog.Show(ref missing); // Note that the param is TimeOut } </code></pre> <p>Can anyone tell me what I have to do to enable the Options button? I know it can be done because we are replacing a template that used to do this in VBA and the button is enabled there...</p> <p>Regards, Ben</p> http://stackoverflow.com/questions/1830726/monitoring-a-range-of-cells-inside-of-excel-2007-with-c-vsto 2 monitoring a range of cells inside of excel 2007 with C#/VSTO Daniel Harvey 2009-12-02T04:53:18Z 2009-12-07T03:14:00Z <p>I have a row in excel I'd like to translate into an ObserveableCollection in C# for binding/event purposes, so all accessor classes know they're getting the latest data from the source excel sheet. How would this be done?</p> <p>Clarification: I'm using an excel add-in project, not a workbook project, so am not sure whether or not XMLMappedRange Controls are an option.</p> http://stackoverflow.com/questions/1587325/c-excel-import-data-from-csv-into-excel 2 C# Excel import data from CSV into Excel Manzoor Ahmed 2009-10-19T07:08:47Z 2009-12-06T21:30:49Z <p>How do I import data in Excel from a CSV file using C#? Actually, what I want to achieve is similar to what we do in Excel, you go to the <strong>Data</strong> tab and then select <strong>From Text</strong> option and then use the <strong>Text to columns</strong> option and select CSV and it does the magic, and all that stuff. I want to automate it. </p> <p>If you could head me in the right direction, I'll really appreciate that.</p> <p><strong>EDIT:</strong> I guess I didn't explained well. What I want to do is something like</p> <pre><code>Excel.Application excelApp; Excel.Workbook excelWorkbook; // open excel excelApp = new Excel.Application(); // something like excelWorkbook.ImportFromTextFile(); // is what I need </code></pre> <p>I want to import that data into Excel, not my own application. As far as I know, I don't think I would have to parse the CSV myself and then insert them in Excel. <strong>Excel does that for us</strong>. I simply need to know how to automate that process.</p> http://stackoverflow.com/questions/1416964/dynaimcally-customizing-the-built-in-office-2007-ribbon 0 Dynaimcally Customizing the Built-In Office 2007 Ribbon unknown (google) 2009-09-13T05:53:10Z 2009-12-06T05:00:07Z <p>I'm trying to dynamically customize the built-in Ribbon Controls on an Office2007 ribbon by adding C# objects such as RibbonTab, RibbonGroup, RibbonControl to the Ribbon. I have been unsuccessfull in disabeling any existing built-in controls, however I can add my own group. Now i'm thinking that disabeling or hiding existing ones not be possible.</p> <p>If anyone been able to hide a built-in control using code or the designer using .NET VSTO Office 2007 development, can you please post the code you used?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1728147/outlook-2007-vsto-send-email-with-html-content 0 Outlook 2007 vsto send email with HTML content Patrick 2009-11-13T09:30:25Z 2009-12-04T14:39:00Z <p>Hi,</p> <p>I am developing the addin for the outlook 2007 using VSTO. One of the function is to capture the send event, then force convert the email format to HTML and then insert a link to the bottom of the email message content. Following is my code to convert the email content to html format:</p> <pre><code>mailItem.BodyFormat = OlBodyFormat.olFormatHTML; string link = generateLink(); mailItem.Body += link; </code></pre> <p>However, when the email was recevied, it is not appear in the HTML format</p> <p>What's wrong with the above code for making email as HTML?</p> <p>Thank ~~ Patrick</p> http://stackoverflow.com/questions/74728/deploying-vsto-project-to-server 0 Deploying VSTO Project to Server KevDog 2008-09-16T17:19:33Z 2009-12-04T13:16:26Z <p>Is it possible to place an application using vsto if the office is not installed? It doesn't appear to be so, but I was wondering if anyone had a work-around.</p> http://stackoverflow.com/questions/1845915/why-im-not-able-to-debug-in-vsto-addin 0 why I'm not able to debug in VSTO Addin? shahjapan 2009-12-04T09:45:27Z 2009-12-04T09:45:27Z <p>If I select an extensibility addin of Excel, I'm able to debug my Add-In in Debug Mode with Excel, like</p> <pre><code>_application.ActiveWorkbook.ActiveSheet.Count </code></pre> <p>in Immediate window, but now I've moved to VSTO Excel 2003 Add-in, here I've goto following message while debugging,</p> <blockquote> <p>Cannot obtain fields or call methods on the instance of type 'Microsoft.Office.Interop.Excel._Worksheet' because it is a proxy to a remote object.</p> </blockquote> <p>I've enabled un-managed debugging in my application settings</p> http://stackoverflow.com/questions/1845404/how-to-build-outlook-plug-in 0 how to build outlook plug in vikas 2009-12-04T07:29:28Z 2009-12-04T08:59:10Z <p>hello...</p> <p>i want to make plug in for outlook.i build an application in which i am creating contact,appointment n tasks.i want to see these contact,appointment n task in outlook and if i create any contact in outlook .i want to see outlook contact in application contacts... i had read many article but till now i don,t get any idea.....</p> <p>plz reply how can i do this</p> http://stackoverflow.com/questions/1803576/convert-word-doc-file-to-docx-on-a-server-without-word 3 Convert Word doc file to docx on a server without Word Chris Jones 2009-11-26T13:06:49Z 2009-12-01T22:01:33Z <p>I would like to use c# to convert a doc file to docx file.</p> <p>Can this be done without Word on a server?</p> http://stackoverflow.com/questions/1715492/is-there-a-future-for-powerpoint-vba-vsto 1 Is there a future for Powerpoint VBA/VSTO? Sam Russo 2009-11-11T14:26:08Z 2009-11-26T03:44:39Z <p>Does anyone know what the future holds for VBA/VSTO programming in Powerpoint? I've been working on a Office automation project and find it frustrating to work with Powerpoint in particular since it seems to be one level below VBA support found in Excel or Word. It feels like MS is trying to phase out support for VBA in PPT since they dropped macro recording in version 2007 and the object model lacks some key features support.</p> http://stackoverflow.com/questions/1798114/vsto-word-add-in-get-docx-as-byte-array 1 VSTO word add-in get docx as byte array. Chris Jones 2009-11-25T16:22:52Z 2009-11-25T16:27:06Z <p>I’m writing a plugin for word and would like to get the docx files as a byte array and send it to a web service.</p> <p>Can I do this?</p> http://stackoverflow.com/questions/1784477/building-a-com-addin-for-office-2000-office-2007 0 Building a Com addin for Office 2000 / Office 2007 Stuart 2009-11-23T16:55:54Z 2009-11-24T22:38:18Z <p>I am struggling to find a straight forward guide to creating office addins using VSTO and VB.net.</p> <p>Specifically I would like to know how to be able to create a addin/ dll which can either be referenced from VBA in the form:-</p> <p>Addin.method(argument) or Addin.property = X</p> <p>Or which would install its own custom toolbars/ ribbon interface to an aspect of office for example Word.</p> <p>I've checked MSDN and in terms of legibility and usability of the explanations I have drawn a blank so far.</p> <p>I currently have a requirement to create at least one addin for Office 2000 to run and manipluate SQL and then a suite of addins for a customized Office 2007 (Word) set-up.</p> http://stackoverflow.com/questions/1789950/listing-shared-folders-in-outlook-addin 0 Listing Shared folders in Outlook AddIn Deepak N 2009-11-24T13:05:21Z 2009-11-24T13:10:10Z <p>Hi,</p> <p>I'm working on outlook 2003 AddIn using VSTO.</p> <p>Is it possible to list <strong>all the folders that are shared with current user</strong>? </p> <p>OR</p> <p>to list the <strong>shared folders currently opened by user</strong> in outlook?</p> http://stackoverflow.com/questions/1785061/excell-2007-cell-auto-complete-too-slow-for-worksheets-with-10-000-to-15-000-rows 0 Excell 2007 cell auto-complete too slow for worksheets with 10,000 to 15,000 rows RQueiroga 2009-11-23T18:30:15Z 2009-11-23T18:33:40Z <p>I'm doing a Excel 2007 VSTO template where I load a worksheet with between 10.000 to 15.000 rows of data, and was counting on using the built-in excel cell auto-complete to speed future data entry. Nevertheless I noticed the auto-complete is very slow, it takes a couple of minutes for excel to, after starting to edit a cell, be able to finish the "internal scan" of all the upper cells in other to be able to find a match. Is there anything I can do to speed it up?</p> http://stackoverflow.com/questions/1781966/is-it-possible-to-create-a-custom-mail-storage-for-ms-outlook-2007 0 Is it possible to create a custom mail storage for MS Outlook 2007? Valentin Vasilyev 2009-11-23T09:18:57Z 2009-11-23T09:25:20Z <p>I know that Outlook stores all mail in a .PST file. </p> <p>Is it possible to create a custom storage engine for outlook 2007? </p> <p>I would like to have the functionality similar to 'Personal folders', but have a new node of folders where everything is stored in a SQL Server database.</p> <p>Is Outlook extensible enough to allow swapping the internal storage, while leaving the UI intact (so I don't have to recreate it from scratch)?</p> <p>Thanks</p> http://stackoverflow.com/questions/1766581/unable-to-call-method-getvstoobject 0 Unable to call method: GetVstoObject AProgrammer 2009-11-19T21:10:25Z 2009-11-20T15:23:11Z <p>All, Cannot </p> <p>I have created a Word2007 Document Project and I'm trying to retrieve the content controls on the page via the GetVSTOObject method but it can not find the Microsoft.Office.Tools.Word.Extensions library after I have referenced the Microsoft.Office.Tools.Word.v9.dll as suggested on the MSDN site.</p> <p>I would greatly appreciate any help.</p> <p>Below is the error message:</p> <p>'Microsoft.Office.Interop.Word.Document' does not contain a definition for 'GetVstoObject' and no extension method 'GetVstoObject' accepting a first argument of type 'Microsoft.Office.Interop.Word.Document' could be found (are you missing a using directive or an assembly reference?) </p> http://stackoverflow.com/questions/1764491/how-to-find-the-named-range-of-a-cell-vsto 0 How to find the named range of a cell - VSTO Nikron 2009-11-19T16:15:26Z 2009-11-20T15:00:15Z <p>I have generated a series of rows using C# and VSTO. I have basically loaded a couple of rows with data and have given each cell a NamedRange. My question is how would I, knowing the beginning row and end row index, traverse each cell and retrieve it's NamedRange. I've tried Excel.Range range = (Excel.Range)m_worksheet.Cells[x,y]; which gets the range fine, but then when I do a range.Name.ToString(); I get "System.__COM...." instead of the name. Can anyone assist?</p> <p>Thanks</p> http://stackoverflow.com/questions/1767338/read-the-activecell-content-in-excel-using-vsto 0 Read the ActiveCell content in Excel using VSTO Plip 2009-11-19T23:30:52Z 2009-11-20T10:57:26Z <p>Hi there,</p> <p>I'm trying to read the ActiveCell from within an Excel Add-in but not getting very far. Anyone any ideas?</p> <pre><code>Excel.Window W = this.Application.ActiveWindow as Excel.Window; Excel.Range R = W.ActiveCell as Excel.Range; MessageBox.Show(R.Value2.ToString()); </code></pre> <p>The Exception being thrown on the last line is: -</p> <blockquote> <p>Cannot obtain fields or call methods on the instance of type 'Microsoft.Office.Interop.Excel.Range' because it is a proxy to a remote object.</p> </blockquote> <p>I tried .Value, and it says: -</p> <blockquote> <p>Property, indexer, or event 'Value' is not supported by the language; try directly calling accessor methods 'Microsoft.Office.Interop.Excel.Range.get_Value(object)' or 'Microsoft.Office.Interop.Excel.Range.set_Value(object, object)'</p> </blockquote> <p>On trying get_Value() I get the initial Exception again.</p> <blockquote> <p>Cannot obtain fields or call methods on the instance of type 'Microsoft.Office.Interop.Excel.Range' because it is a proxy to a remote object.</p> </blockquote> <p>Any ideas?</p> <p>Cheers,</p> <p>Phil.</p> http://stackoverflow.com/questions/1761406/vsto-excel-add-in-not-loading-on-terminal-server 0 VSTO Excel add-in not loading on terminal server Chris 2009-11-19T07:01:48Z 2009-11-20T07:18:24Z <p>My configuration is windows server 2003 (i'm logged in with admin privileges), office 2003, vtso runtime 2005 se. After installing my addin, all registry keys are in the correct locations and I have given fulltrust to my assembly using caspol.exe. My addin is a application level addin. </p> <p>When I run excel with regmon and filemon running I can see that excel reads the registry keys of my addin, but I do not see the AddinLoader.dll being loaded in filemon. I get no errors from vsto since it doesn't appear the runtime is even starting up. I've read almost all of the vsto doco on msdn particularly the application addin architecture and vsto runtime overview as well as various other articles and discussions on the topic. I still can't figure out why the runtime won't load on the terminal server.</p> <p>When installing this on an XP machine it all works fine and my addin gets loaded every time.</p> <p>Anyone have any idea what might be preventing the vsto runtime from loading?</p> http://stackoverflow.com/questions/1762068/accessing-contacts-in-outlook-exchange-through-vsto 0 Accessing contacts in outlook / exchange through VSTO januszstabik 2009-11-19T09:41:50Z 2009-11-20T02:07:35Z <p>I'm writing a Outlook add-in that needs to access Outlook contacts. I have successfully obtained a list of local contacts but cant seem to find an example that will give me access to the list of shared contacts using VSTO.</p> http://stackoverflow.com/questions/1766880/word-2007-contentcontrol-setplaceholdertext-maximum-string-size 0 word 2007 ContentControl.SetPlaceholderText maximum string size mas_oz2k1 2009-11-19T22:01:11Z 2009-11-20T00:11:39Z <p>I am planning to set the text in a content control, by using the Word.ContentControl.SetPlaceholderText() method:</p> <p>string myText = "Hello World!"; Word.ContentControl ctrl;</p> <p>ctrl.SetPlaceholderText((null, null, myText);</p> <p>myText = ctrl.PlaceholderText.Value;</p> <p>Can somebody let me know if there is any size limitation on the myText string?</p> http://stackoverflow.com/questions/1756355/architecture-q-vba-excel-macro-or-vs-tools-for-office 2 Architecture Q - VBA Excel Macro or VS Tools For Office? dferraro 2009-11-18T14:26:00Z 2009-11-19T16:05:31Z <p>Hello,</p> <p>I have requirements from our client where we basically have to 'parse' PDF files from various different sources.</p> <p>The solution we have come with, as 'phase 1' (as we have short time to market and will save them a huge amount of time) is</p> <p>1) manually use Able2Extract application to pull out the columns you need from the PDF file, and spit out an Excel file. This excel file is still very 'dirty' as it contains tons of header information, extra fields that we don't need, etc..</p> <p>2) run our application, feeding it this excel file, which will do the remaining of the cleanup. It takes this 'dirty' Excel file and then gives them a very clean excel file which just has the 3 or 4 columns they need all lines up very neatly.</p> <p>The first solution we are exploring is using VBA/Excel for step 2). They take their dirty output, paste it in Excel, then run our cleanup macro. Excel is great for this sort of stuff - shifting around and scrubbing data that's already in an Excel spreadsheet. We did a proof of concept with one specific 'source' file, and it came out great. Tooks around half a day to develop this one 'scrubbing script'...</p> <p>Simple enough huh? Not really. This script only works for one specific file type from one specific source. We will have 10 different sources each with possible 3-10 different file types. That means in the end, we may wind up with a huge Excel macro that has 120 of these very specific 'scrubbing scripts'. So my worry is about long term maintainability here. We might also bump into files that we had never seen before that might 'break' our scrubbing script and have to do a quick re-deply / change to a scrubbing script... I've never used Visual Studio Tools for Office and have minimal experience with VBA Excel Macros - but it seems like this might be a good case here. </p> <p>Any words of wisdom from someone who might have done something similar to this before? Are huge VBA Macros like what could result here nightmares to maintain? Is VSTFO a good alternative that will give me that 'easy to shift/scrub data' functionality, but with scalability and robustness? To be honest; my first instinct was a pure .NET solution with dynamically compiled scripts pulled from the database, using our Syncfusion Excel API to do the cleaning/scrubbing... but perhaps this is overkill..</p> <p>Thanks for any advice...</p>