-
- Can't Install VSTO 2005 'cuz I don't have Office Pro 2003.
by JimCrist
- 2 Replies
- Last post
by JimCrist
- I bought VSTO 2005 and can't install it 'cuz I don't have Office Pro 2003. I have Office Pro 2000, Office Pro XP and Office Pro 2007. I can't find a Trial Version of Office 2003. I can't return the VSTO 2005. Is there a work around for this Please Help!!!
-
- Outlook security prompts
by Albert Raiani
- 4 Replies
- Last post
by Albert Raiani
- Why, when creating Outlook (2003) add-in's don't the security prompts pop up on the development machine. They only start appearing when you deploy it. Is there a way to force the security prompts to pop up during development so that you don't have to wait until the product is deployed to find out if your code will cause these prompts
Al
-
- Gap width property in column clustered charts in Excel 2007 using C#
by zoddiax
- 1 Replies
- Last post
by zoddiax
- Hello,
I have one query regarding column charts in Excel.
How do I set gap width property in column clustered charts in Excel using C#
Following is my code snippet
Code Snippet
xlSeries4 = (Excel. Series )xlChart.SeriesCollection(4);
xlSeries4.AxisGroup = Excel. XlAxisGroup .xlSecondary;
xlSeries4.ChartType = Excel. XlChartType .xlColumnClustered;
-
- Testing mailitem from remote inbox return false "if (obj is Outlook.MailItem)"
by tong+
- 4 Replies
- Last post
by tong+
- I use VSTO 2005 and Outlook 2003 to get MailItem in a remote inbox (shared inbox) see code below. Sometime all obj return from the Selection collection will not be able to pass the checking of its class as MailItem. It happened especially when I want to retrieve mail items from a remote mail folder. And if i try to cast each of them as MailItem, it will return null.
I am pretty sure that al
-
- Outlook Add-in Not Loaded :runtime error HELP HELP
by Hussain Saffar
- 14 Replies
- Last post
by treckamerica
- Deall ALL,
I installed the following in the client machine
Office 2003 SP2
framework 2.0
office tools runtime
MS PIA
the Patch KB908002
lockbackRegKey.msi
extensibilityMSM.msi
office2003-kb907417sfxcab-ENU.exe
all did all of the above and no luck to get my Outlook- add in working in the destination machine
BUT IT WORKING PEFECTLY in my DEVELOPMENT MACHINE
p
-
- XLL Framework has problems
by Carolina Gomes
- 2 Replies
- Last post
by Iouri Simernitski - MSFT
- Hello!
IĄ¯m trying to use Excel 97 XLL Framework that can be downloaded at MSDN but apparently this piece of code doesnĄ¯t work:
// Prefix strengths with their length & count items
// Note the framework's TempStr() function prefixes the
// lengths anyway, but this is for other code that might
// use the arrays
for (nFuncs = 0; func[nFuncs][0]; nFuncs++) {
for (i
-
- How to invoke Macros in Excel Doc with VSTO
by Xinhai Li
- 1 Replies
- Last post
by Dennis Wallentin
- Hi, presently, I am developing some VSTO projects with existing Excel 2003 workbooks, which have got some Macros defined. Now I wanna invoke such macros existing in workbook by VSTO programs without re-writting those macros.
Could anybody please tell whether VSTO can invoke a macro or not If yes, then how
Thanks a lot!
Xinhai Li
-
- Get Range from Word
by Oleg Volodin
- 4 Replies
- Last post
by Cindy Meister
- Hello All! Help me please: How I can get Word::Range interface with RangeFromPoint() method.
Thank you very much, Volodin Oleg.
-
- Outlook Application ItemSend Event signature
by davide_c
- 3 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hi, I'm trying to develop a solution that filters the outbound emails sent from the company, compares the email addresses of the recipients with those stored in the company contacts database and stores the message into a database table.
The best way to do this would probably be to do it on the server. I was able to do this for the inbound mail interacting with the Exchange event sink. Not a nic
-
- Outllook plugin - Dynamically create email adress list for the To... button
by Pierre Savard
- 6 Replies
- Last post
by Christa Carpentiere - MSFT
- Hi,
I need to found a way to dynimically create a email list from my Outlook Plugin to be able to send new email to him.
For example when my plugin load, I receive a list of all contact from a Database and I need to create a dynamic adresse book avalaible when you click on the To.. button in a email...
OR
Someone have a sample to create a adress list on the exchange server that will ap
-
- Excel Worksheets using GetOleDbSchemaTable
by Marcelo583141
- 7 Replies
- Last post
by Marcelo
- Hi there, Im trying to retrieve excel worksheets names using VB.NET and I did it, but the problem is that some times it brings me sheets than I really have. For example: I have only a sheet named "Plan1" when I use my code it brings me "Plan1$" and "Plan1$_" or else "_Plan1$" anybody have any ideia
My code:
Code Snippet
Dim tables A
-
- how to enable excel add-in installer in vsto 2005 if disabled
by parm
- 2 Replies
- Last post
by Darryn Lavery -- MSFT
- hi i have create a excel add-in for office 2003 using vsto 2005 SE. But after builting and running application i am not getting the installer or any setup. plzz help me out of it.
-
- Adding Panel or UserControl to document host item
by mobigital
- 5 Replies
- Last post
by mobigital
- I don't see Panel in the toolbox when customizing a host document (Excle Sheet). Is there a way to add my own panel and/or a User Control to the host document If I can add listboxes, textboxes, buttons, etc. why not allow to add a Panel as well.
-
- Adding shortcut menu in Excel using C#
by Sarina Jacob
- 1 Replies
- Last post
by Ji Zhou ¨C MSFT
- I would like to know how to add shorcut menu in Excel using Excel Worksheet Project in C#. MSDN shows how to add shorcut menu in Word whereas Excel Shortcut menu is not given.
-
- How do you set the input focus to the ActionsPane with VSTO when loading in Word?
by Bill Kinney
- 6 Replies
- Last post
by Bill Kinney
- Is there any way to set the input focus to a control on the Actions Pane when loading a VSTO solution in Word The typical behavior of Word is to have the focus on the document. I can not find a way to get the focus on an Edit Box in the Actions Pane.
I notice that most of the default Task Panes have a similar problem. When I select most of the default task panes the cursor does not enter
-
- DocumentBeforeSave - which document is getting saved?
by Jon Kruger
- 1 Replies
- Last post
by Andrew Whitechapel - MSFT
- I have a Word/VSTO app where I want to do special stuff when a certain document that I open gets saved. If the user tries to save any other document in that instance of Word, then nothing special should happen. My code looks something like this: private Word.Application _wordApplication; private Word.Document _wordDocument; public void OpenDocument() { _wordApplication = new Word.Applicatio
-
- Show the savdialog after DocumentBeforeSave
by neoret
- 20 Replies
- Last post
by neoret
- Hello
In my application I catch the DocumentBeforeSave event displaying a dialog box giving the user 3 options: "save in a external archiving system" - "save on disk" - "cancel".
If the user presses the "save on disk" I display the saveDialog. I hav two questions regarding this:
1: The first dialog box is still visible even though I close it in my c
-
- Where is my Access class
by Maarten Zaagman
- 4 Replies
- Last post
by thorkia
- Hello,
I'm trying to develop a program for automising ms Access. I'm trying to using the office PIA for this. I have added the Microsoft Access 11.0 Object Library to my project references(including core). But i get an error when trying the following:
Access.Application test = new Access.Application();
This is the error i'm getting:
C:\ReportCollector\Form1.cs(144): The type or names
-
- beforeSave or....
by b00gieman
- 3 Replies
- Last post
by Peter Jausovec
- Hi!
What should I use in order to trigger some actions after a user saves an xls file Is beforeSave ok or should I use something else
Thanks!
-
- How to add words to MS Word custom dictionary
by Stoil Pankov
- 6 Replies
- Last post
by Cindy Meister
- I am trying to use the MS Word spell check in my application. It is fine for words witch are in the main dictionary. For my functionality to be complete I need to add the option of adding words to the custom dictionary so that they are not constantly shown as mistakes.
I am opening the .CustomDictionaries.ActiveCustomDictionary file and adding the new word but at that moment MS Word desele
-
- Failed to update customization from the specified deployment manifest.
by Denis Pitcher
- 7 Replies
- Last post
by Denis BDA
- I'm trying this again.
I've successfully created an Excel App-Level addin that supports automatic updating (details below). The issue is that I want to ensure that the addin loads from the local copy when the remote copy is unavailable.
My app.dll.manifest file is as follows:
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:as
-
- Extending the Blog template in Word 2007
by Johan Nordberg
- 1 Replies
- Last post
by Cindy Meister
- If this is the wrong forum for this kind of questions I'm sorry. But I hope someone can help me.
I would like to extend the blog template either just to add some more content controls or reuse the XHTML export function. Is this possible Both VBA or VSTO is Ok.
I'm running a Swedish community network and would like to provide the possibility to use Word 2007 to write articles and publ
-
- Customize rubbon for a document only.
by mathmax
- 5 Replies
- Last post
by Vladimir Morozov (MSFT)
- Hello, I would like to know if it is possible to customize the rubbon of word 2007 not at the application level but at the document level. I mean the customizations should appear only for a specific word document. Thanks, mathmax
-
- General quetion
by YaelS
- 3 Replies
- Last post
by Sue Mosher - Outlook MVP
- Is it possible to add new entities to the left bottom slide bar Thank's
-
- Ribbon not loading in new excel session
by Abhishek Chadha
- 8 Replies
- Last post
by Cindy Meister
- I want to launch excel from another window application. Following is the code
Excel.ApplicationClass xl = new Excel.ApplicationClass();
xl.Workbooks.Open(filename, 0, false, 5, "", "", false, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "", true, false, true, false, Type.Missing, Type.Missing);
xl.Visible = true;
This works perfectly