-
- DataBinding in Excel2007 tables using VSTO SE
by spano
- 1 Replies
- Last post
by Cindy Meister
- When developing an application-level addin in VSTO SE for Excel 2007, is it possible to use the VSTO's Microsoft.Office.Tools.Excel.ListObject for databinding support I know how to create such ListObject from a Microsoft.Office.Tools.Excel.Worksheet, but I don't have a VSTO's Worksheet, only an Interop one. The objects I can use are the ListObject and Worksheet from the Microsoft.Office.Inter
-
- VSTO 2003 for Visual Studio 2003
by amitrao2003ce
- 1 Replies
- Last post
by Andrew Cherry [MSFT]
- One of my user use to work on Visual Studio 2003 and Microsoft Office 2000 in coordination to develop certiaon applications. He needs to have a compatible version of VSTO which can work with Visual Studio 2003 and Microsoft Office 2000.
Is there any way I can download the VSTO 2003 compatible verison
Thanks
Amit Rao
-
- Action Panes and Excel Addins
by iicDotnet
- 5 Replies
- Last post
by JulesF
- hello friend
i am try to cerate Action pane for word document
but am getting NullReference Exception
and am choosing MSWord Addin Project and Am using MS office 2003
help me
Using VS2005 and VSTO2e
thanks in advance
-
- How to Create a new xls document from Excel addins (VSTO 2005 se / Excel 2003)
by Lin Kejian
- 2 Replies
- Last post
by Linkejian
- How to Create a new xls document from Excel addins (VSTO 2005 se / Excel 2003)
-
- Use Outlook 2003 to send meeting request using c#
by mafiaboy
- 14 Replies
- Last post
by mafiaboy
- Please help me I must send mail by c# and visual studio 2003 so i can't use VSTO for 2005 and also can' t use some tool that require liences.
And more importance I must use COM by way access to Outlook 2003 to send mail.
I got it but the big problem is ... security .. warning messages that i need access then mail will delivery +_+ it is big problem. So anyone here can help me. I research ab
-
- Fixed panel at left in a excel-worksheet
by ilhamik
- 6 Replies
- Last post
by Dennis Wallentin
- Hi,
I need a fixed panel in a worksheet, it has to scroll down or up with worksheet. I could not find a way to do that with VSTO. I use Excel 2007 and VSTO 2005 SE. I searched the forum but found nothing., What i want is something like that: http://stud4.tuwien.ac.at/~e0027385/excel-addin-panel.jpg the image was from an addin taken, so it must be possible but how
-
- Table Style in Excel 2007 Addin
by Mohan Kumar Karunakaran
- 8 Replies
- Last post
by Mohan Kumar Karunakaran
- Hi,
I am trying to create an excel addin for office 2007 using VS2005 & VSTOSE. I would like to create a table style on the startup. I tried calling the below procedure in ThisAddin_Startup(). Procedure runs but the style is not available. Can anyone help me on this.
Public Sub TableStyles()
Dim Thiswkbk As Excel.Workbook
Thiswkbk = Globals.ThisAddIn.Application.
-
- How to Set Default Form for Outlook Folder through C#
by iSahil
- 4 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hi Frenz,
I have been stuck with a very worst problem, almost search entire web but did'nt get any solution.
My query is how do you set a default form (I have created that form) for an outlook folder through C#. I have been able to publish my form successfully through the code, however i can't set it default through the code so that whenever i create a new contact item in that folder it shou
-
- Adding SmartTags
by Andrew Melim
- 4 Replies
- Last post
by Phil Hoff - MSFT
- Hello, I am running VS 2005 with VSTO and Office 2003. I am trying to create a Word document smart tag, however when I try to call
Code Snippet this.VstoSmartTags.add(mySmartTag);
I get an error saying there is no definition for VstoSmartTags. Here is my full code
Code Snippet
using System;
using System.Windows.Forms;
using Microsoft.VisualStudio.
-
- Run an External Macro in a xxxx.dot file from the Office Ribbon on the current ActiveDocument
by Koluns81
- 1 Replies
- Last post
by Cindy Meister
- Hello,
Im trying to write a method that when you click the button i created in my custom ribbon, calls a method that runs a macro from another file somewhere on the ActiveDocument.
So far i have this method below which i have put together from various different hints on the web. control.Tag holds the name of the file i wish to call that has the macro inside it, that i want to apply to the cu
-
- Prevent Outlook from embedding attached image
by Danila_Master
- 5 Replies
- Last post
by Mike Morton - MSFT
- I'm using Outlook 2003 and C# and I'm trying to create a MailItem using Microsoft.Office.Interop.Outlook.Application
It is working so far, but there is a small problem. I create a new message and set the the BodyFormat to olFormatHTML. Then I attach an image "test.png" to the mail. In the HTMLBody I use this image as a source:
<img border="0" align="middle" s
-
- VSTO & Outlook custom regions
by Jan Ku&#269;era
- 6 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hi,
Is there any support for Outlook Custom Regions in VSTO 2005 SE I mean sample FormRegionStartup class like with Ribbon.... (and perhaps without needing to modify registry manually)
I have tried to follow a couple of walkthroughs (both MSDN and from Outlook blogs) but I have a little successs.
System.ArgumentException: The value entered for the DesignMode property is not valid. En
-
- How to replace an XML node?
by Neil Weber
- 1 Replies
- Last post
by Martin Sawicki - MSFT
- In my application we use XML nodes to delinate word text:
<term guid="xxx"><w:r><w:t>A </w:t></w:r><w:r><w:rPr><w:b/></w:rPr><w:t>Better</w:t></w:r><w:r><w:t> Term</w:t></w:r></w ></term>
The user can select a node and replace it with another existing node (i.e. term)
-
- Need to get several return values from an Excel add-in function
by paulfriday
- 2 Replies
- Last post
by paulfriday
- I've been searching for a way to do the following (seemingly simple task) for about a week and a half, with lots of code written, but I can't find a solution anywhere:
I want to write an Excel add-in function in C++ (or C#, doesn't matter), that will 'return' values that update multiple cells in the spreadsheet. In other words, the function should have multiple parameters, some of which are
-
- ListBox does not appear on my Form Region
by Romain Vailleux
- 14 Replies
- Last post
by Graphtyrael
- Hello there !
I am building an application based on Outlook 2007 and VSTO 2005 SE and I encounter an unexpected problem : an Office Listbox control placed manually on a outlook custom form through the Outlook 2007 form editor doesn't appear when the form render during the application running. But, it seems to be instanciated and to be contained correctly in the form : I can use it, add som
-
- Outbox Frustration
by dweeks
- 6 Replies
- Last post
by Sue Mosher - Outlook MVP
- Outlook 2007 VSTO Add-in.
The code (below) works fine... and the items do send , but they appear in my Outbox forever. Can anyone offer help in getting the notes to send and to not have them sit in the Outbox Thanks!
Here is the code:
Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean) Handles Application.ItemSend If TypeOf (Item) Is MeetingI
-
- send an email without confirmation
by Ori&#39;
- 4 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hello,
I'm trying to send an email trough outlook using its API. Something like:
Outlook. _MailItem oMailItem = (Outlook. _MailItem )oApp.CreateItem(Outlook. OlItemType .olMailItem);
oMailItem.To = toValue;
oMailItem.Subject = subjectValue;
oMailItem.Body = bodyValue;
oMailItem.Send();
The problem is that the send method raises a confimation dialog, that I want to avoid.
-
- using VSTO w/ ASP.Net 2.0
by den2005
- 14 Replies
- Last post
by den2005
- Hi,
Newbie using VSTO and developing office applications. The task is to import and export data from and to database, but user can select from a list columns what they want to add, there will be a dialog will appear and allow user to select data to be included in a word document, how can this be done I installed PIA, VSTO2005SE w/ runtime, MS Office 2003 Web Components and will use MS Office
-
- ListObject binding
by ssouki
- 3 Replies
- Last post
by Nikhil Khandelwal - MSFT
- I am using a listobject in vsto excel. it is bound to a collection. when it displaying more than 1 row and than the collection becomes 1 item after setting the binding the listobject shows 2 rows the second 1 is empty. eventhough the datasource has 1 item the listobject shows 2 rows.
can any1 help pls
-
- Why Excel customer menu only response for one time
by Lin Kejian
- 2 Replies
- Last post
by Linkejian
- Hi :
What I want is create a new menu in excel , when the first time click the menu , the code is ok, but click it again, there is no response for event .
Can anybody help me
using System; using System.Data; using System.Drawing; using System.Windows.Forms; using Microsoft.VisualStudio.Tools.Applications.Runtime; using Excel = Microsoft.Office.Interop.Excel; using Office = Microsoft
-
- Problem to add an ItemContextMenuDisplayEventHandler while starting up Outlook 07 addin
by a_martinez
- 1 Replies
- Last post
by X4U
- Hi, I developed an addin for OL 2007 with VSTO 05 SE. Everything worked well on developing machine and after a long time dealing with security settings I got the addin loaded in Outlook on a different machine. There's one problem left to have the addin running properly. While startup I add an EventHandler to catch when the user opens the context menu this way: this.Application.ActiveExplorer().Sel
-
- Inserting before a footer?
by r_daneel
- 10 Replies
- Last post
by r_daneel
- I am working on an application level plug-in for word 2007 and I am trying to figure out how to insert something just before the footer on each page. Is this possible I am not concerned about it affecting pagination.
-
- Outlook 03 SE Addin with Clickonce type App Manifest: Get the Assembly Path returns the path to the deployment server?
by bobchauvin
- 2 Replies
- Last post
by bobchauvin
- I have a working Outlook 2003 Addin using VSTO_SE with a ClickOnce deployment manifest for automatic updating of clients, but a call to the following line of code reutrns the path to the deployment manifest instead of the desired local install path on a client's C drive. The code in question:
is_AssyPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly(
-
- Word 2003 template document running exception "This action is not valid outside of a block-level XML" when used in Word 2007
by Laurent Kemp&#233;
- 8 Replies
- Last post
by Laurent Kempe
- Hi
I created a solution for authors to publish content on a website I created based on Word 2003 templates and VSTO 2005.
You might download it here: http://www.codeplex.com/THBAuthoring
Now I try to have it running on Word 2007 and get the following error when a user click on the save button or when I do in code document.Save:
This action is not valid outside of a block-level XML
L
-
- Casting error for Word.Range.Parent
by Anil_Soman_60969d
- 2 Replies
- Last post
by anil_m_s
- Hi,
I have a code with me in VB 6 which deals with Word Range
Code Snippet Set oWordRange = oWordRange.Parent.Content oWordRange.Application.Visible = True oWordRange.Application.WindowState = wdWindowStateMinimize
I want to convert this code into C#.Net (2.0). But when I do the following, I get an error message as given below in red.
Code Snippet