-
- Outlook Shared Addin With COM Shim Wizard
by Preeteesh
- 6 Replies
- Last post
by Andrew Whitechapel - MSFT
- Hi,
I am trying to build a simple Outlook Plugin. I Generated a C# code and coded a Hello Button for Outlook. After this i followed Steps to generate a COM Shim as told in http://msdn2.microsoft.com/en-us/library/aa537166(office.11).aspx
I got the COM dll registered and it came under COM Addin tab, I keep checking it to load but it never loads in outlook. Is there some
-
- Get The text of Words from a word document
by Corby111
- 14 Replies
- Last post
by Pweeks
- This may be a topic for some other group, but this group gets replies faster then then Automation or some other Word groups, so maybe someone here knows this.
I really want to thank Cindy for pointing me in the right direction for what I wanted to do. I ended up using the DsoFramer control to host my word doc, and now I have the document loaded, when I first saw the Word.Document.Words collecti
-
- Saving OLEObject content to a file
by Anton Rapoport
- 14 Replies
- Last post
by Geoff Darst - MSFT
- Greetings, colleagues
I have spent quite some time on trying to solve the following problem: I get the OLEObject from the Excel worksheet, e.g.
Excel.OLEObject myOLEObject = (Excel.OLEObject) currentSheet.OLEObjects(1);
I need to to save this myOLEObject object back to file on hard drive (in my Excel 2003 managed code extension).
The only thing I know about the OLE object is that
-
- Why Excel Menu did not response when click custom menu twice (VSTO 2005 SE)
by Lin Kejian
- 3 Replies
- Last post
by Dennis Wallentin
- hi
The code blow is my Excel Add-in using VSTO 2005 SE.
The Add-in create a menu when Excel 2003 started,
when click menuitem ,a windows form show.
Now I have a problem,when click the menuitem once,the windows form show
,all thing is right . But click agin , there is no response and the windows form never shown.
using System; using System.Windows.Forms; using Mi
-
- Creating tables in Excel 2007 using vb.net
by Dhruvan
- 3 Replies
- Last post
by Dhruvan
- Hi, I wanted to create a table dynamically in excel 2007 using visual studio. To get the code, I recorded a macro and the code which I got was
Macro Code Range("E8:I14").Select ActiveSheet.ListObjects.Add(xlSrcRange, Range("$E$8:$I$14"), , xlNo).Name = _ "Table1" Range("Table1[#All]").Select ActiveSheet.ListObjects("Tab
-
- Using a Multi-Project with a Web Site frontend and VSTO Word Project to populate Word templates
by John McAllister
- 3 Replies
- Last post
by Cindy Meister
- Hi, I have been doing some research recently into VSTO as I have a project that may require it. So far I have not found any help out there on the following: I have various Word documents that are letters that will need to be sent out to customers. I would like these "templates" to be personalised using a Web front-end. So basically the member of staff takes information over the phone fro
-
- Addin fails to load a DLL which had its version updated.
by sameera
- 9 Replies
- Last post
by sameera
- I have a Excel document level customization project that is dependant upon another common class library project. When I increment the version number of the class library the VSTO project fails to load it during run time. The exception I get: Could not load file or assembly 'CommonLibraryPrj, Version=1.0.0.0, Culture=neutral, PublicKeyToken=69128d937baea9c7' or one of its dependencies. The located
-
- VSTO SE and the Controls Collection
by Douglas H. Troy
- 3 Replies
- Last post
by Cindy Meister
- Previously, in a VSTO Word Document-Level solution, there existed a Controls collection off the document object. We could create a custom Windows Form control and add it to the document via the AddControl() method. I, personally, use this method extensively in my current Word Template customization ... So, if this collection is now gone ... what is the proper method to use, in order to dynamicall
-
- Activex component can't create object 'outlook.application'
by kotor2000
- 5 Replies
- Last post
by X4U
- Hi,
I'm trying to do a web application that will take the info passed by the user, generate an report with excel and automatically send a mail throught outlook. I used vbscript to generate the mail. All works fine on localhost, but on server, I get the following error: ActiveX component can't create object 'outlook.application'.
my code :
<code>
< script language =vbscrip
-
- Word's web options
by r_daneel
- 2 Replies
- Last post
by r_daneel
- Hello, I am working on an application-level plugin for word 2007 using VSTO. Is it possible to change some of the web options that you can set in Word I want save the document as filtered html but not have it arrange the files under a separate directory, and I want it to target really old browsers. Can I use VSTO to make sure the proper values are set Right now it seems I have to continually chang
-
- Add-in deployment problem
by jaz
- 14 Replies
- Last post
by jaz
- hi, I hv buid a setup for word2007 addin... but when i am installing it on another machine it s not working .. It comes under inactive application addins as com-addin.. How can i activate this
thanking you in advance
jaz
-
- How to add items to combobox/dropdown dynamically?
by Ashish Dwivedi
- 2 Replies
- Last post
by csr9632
- Hi, I have added a combobox to my outlook ribbon. I am able to add items to the combobox using the following code:- <comboBox onChange ="OnChange" id="cmbCase" > <item id="itmMech" label="Mechnical"/> </comboBox> While i can add item using the above code i need to add the items dynamically wherein i will be getting items from the d
-
- Outlook 2007 and Word 2007 AddIns
by Westman
- 4 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hi everybody,
This is my first time posting a question in this forum. Lets get straight to the problem.
Situation:-
I've created an addin for Word 2007 using VSTO2005 SE. My task now is to re-create the same addin (same function, same look) in Outlook 2007. Addin contains function like setting a specific language in document, calling an external exe file and so on. I've configured Outlook
-
- Outlook.AppointmentItem.Conflicts - Problem
by Iram
- 14 Replies
- Last post
by Iram
- Hi,
I'm writing an AddIn Outlook application, that should create new Calendar instance.
In this new Calendar I need to check each change in each item if it has any conflicts with other Calendar item.
I tried to use Outlook.AppointmentItem.Conflicts member but its count property always equal to 0. What am I doing wrong
Thanks, Iram.
-
- Outlook - how to get full emailaddress from To filed in Outlook
by Minty
- 7 Replies
- Last post
by Sue Mosher - Outlook MVP
- I'm creating an addin for Outlook 2003 using VSTO in VS.NET 2.0. I'm trying to get all the email addresses in the To filed by
private void ThisApplication_ItemSend( object Item, ref bool Cancel)
{
MailItem mail = ( MailItem )Item;
string allEmailAddress = mail.To;
}
However, the mail.To doesn't return the full email address in the format of john.doe@
-
- How to get the Range that contains a control.
by mathmax
- 5 Replies
- Last post
by mathmax
- Hello,
I've a control in my word 2007 document and I would like to get the Range that contains it. If the control already exist on my page, I know I can add a bookmark around it and then get the Range via the Range property. But if the control is added at runtime, I don't find a way to add a bookmark around it...
As a general rule, is there an other way to find the Range that contain
-
- Microsoft Word
by ANGanley MCSD
- 2 Replies
- Last post
by ANGanley
- Overview.
I have created a mail merge application & I need to be able to make the document the active window so the user can add extra text to the document before the mail merge completes what its doing.
I am using VB.NET
Any ideas.
Thanks.
-
- VSTO Eye for the Non Developer Guy
by OmegaMan
- 2 Replies
- Last post
by OmegaMan
- If one were to describe the benefits of the differing VSTO projects to a managerial staff that may have no clue to what a VSTO application is verses an old style add-in...is there a good link to provide the uninitiated, the end-user benefits of VSTO created applications
-
- VSTO Excel add-in only working in development machine
by Abhishek Chadha
- 14 Replies
- Last post
by Ray Saltrelli
- Hi,
I am creating a Excel 2007 VSTO COM Add-In using VSTO 2005 SE . It runs perfectly fine when I build it and run the in development computer having VS 2005 .
However, when I try to install the setup.exe or .msi file for the same addin in the client machine or Virtual PC having the following installed:
1. VSTO Runtime - Shipped with VSTO 2005SE
2. Office 2007
3. .NET 2.0 Framework
-
- Reference problem from Outlook addin in vb6
by Rosander
- 1 Replies
- Last post
by Carlos Quintero - MVP
- Hi,
Have a main application VS2005 AppA.exe which is using VS2005 AppB.dll, then I have a VB6 OutlookAddin which is using AppA and AppB. The problem is that the Outlook Addin can't find AppB in ProgramFiles. Do i have to put it in the GAC
-
- Smart tags Word 2007 VSTO 2005 SE
by EagleWizard
- 3 Replies
- Last post
by Misha Shneerson - MSFT
- Hi, I'm having a problem with smart tags in Word 2007. I just can't find how to add them. On the microsoft site their are lots of walkthroughs for VSTO 2005. But in the VSTO 2005 SE, you can't use me.VSTOSmartTags anymore Thanks in advance
-
- Deployment Issues
by abhimanu
- 1 Replies
- Last post
by bobchauvin
- Hi I have created a Outlook Addin using VSTO 2005 RTM. I have also used Redemption. My Problems is that when I am adding the dependencies to the Setup Project it throws an error as "c:\program files\redemption\redemption.dll may have dependencies that cannot be determined automatically. Please confirm that all the dependencies have been added to project". Please help me on this. Thanks i
-
- Word 2007 Interop problem
by ichi
- 3 Replies
- Last post
by ichi
- Hi, I've upgraded to Office 2007 from Office 2003 and am having some trouble getting some software I made that uses the Word Interop to do search and replace working. I changed the reference to the new Interop assembly I got from the Primary Interop Assemblies . I tried converting my template documents to Office 2007 format, but that didn't seem to help. Everything else seems to be OK but I get
-
- Windows app to monitor outlook folder cycles through only half each tick?
by nomb
- 11 Replies
- Last post
by nomb
- Hey guys,
I haven't figured out yet how to make an outlook-addon so atm I am stuck doing a windows app. I have a timer which is fired every 45 seconds. It then cycles through whatever folder you choose and takes each mailitem and adds it to a list view. Then deletes the item. The only thing is that every time it ticks, it only goes through half. For example if you have 20 messages in the de
-
- Passing credentials from Word to SharePoint?
by Pletzky
- 4 Replies
- Last post
by John R. Durant - MSFT
- I'm building an application that uses Word. One of the first things it does is create a new document based on a template that is stored on a secure SharePoint site. The problem I'm running into is passing credentials on to the site. I haven't explored this very thoroughly, but I think if the user has IE set to allow pass-through, then my application works fine. However, if that is not the case, cr