-
- Change customization for xls
by Yustos
- 0 Replies
- Last post
by Yustos
- I'm changing assembly following way:
if (ServerDocument.IsCustomized(document)) { ServerDocument.RemoveCustomization(document); }
ServerDocument.AddCustomization( document, assemblyName, null, applicationVersion, false);
And save. In the next time IsCustomized don't return true for the same document, but VSTO is available in this.
Maybe it is a p
-
- Outlook Appointment Schedule
by Dynamic_array
- 2 Replies
- Last post
by Jassim Rahma
- Hello, this is my first post here. I am trying to create a custom appointment scheduling windows application using VB.net that is setup like the appointment scheduling in outlook. Is there a control that I can use that will help me, or can anyone offer me any advice as to how to achieve this Basically, the main aspect of the outlook appointment scheduler I can't seem to figure out how to set up is
-
- Problems with Add-In UnInstall.
by mchuc7719*
- 8 Replies
- Last post
by mchuc7719*
- Hello to all,
I followed the "Deploying Visual Studio 2005 Tools for Office Second Edition Solutions Using Windows Installer: Walkthroughs (Part 2 of 2)Deploying Visual Studio 2005 Tools for Office Second Edition Solutions Using Windows Installer: Walkthroughs (Part 2 of 2), part Walkthrough: Enhancing the Outlook Add-in Setup Project" tutorial.
I have installed success the
-
- C# Footers and AutoTextEntries
by Ian Vink
- 4 Replies
- Last post
by Cindy Meister
- Word 2003, C#, Using PIA
Code Snippet
To the Primary Footer I add some text successfully: doc.Sections[1].Headers[WdHeaderFooterIndex.wdHeaderFooterPrimary].Range.Text = "Baha'i Faith"; I then wish to append the AutoText Page X of Y. But how This is how it's done in VBA:
With wordApp.ActiveDocument With .Sections.Item(1) wordApp.NormalTemplate.AutoTextEntries.I
-
- Can not open Sample project
by Sen_p_kumar
- 7 Replies
- Last post
by jimt1vault
- Hi,
I am working on Visual Studio 2005 (8.0.50727.42). Also have VSTO2005 Second Edition and Office interop assemblies.
I have download the 'outlook samples' from MSDN. And trying to open one sample, for example 'ShortcutBar.sln'. Am getting the following message. The message is very generic, not giving a hint what application is missing!
---------------------
"One ore more projec
-
- Discontiguous selection in Word 2007?
by kewpcg
- 3 Replies
- Last post
by Cindy Meister
- I am developing a VSTO SE Addin for Word 2007. I need to determine if the user's current selection in Word 2007 is discontiguous (i.e., one or more non-adjacent paragraphs selected with Ctrl key), then handle accordingly.
The Selection.Type object does not seem to offer this information. Is there some way that I can find out if a discontiguous selection is made in the Word document
T
-
- Including "OutlineNumbered" Bullets and Numbering
by AmrishDeep
- 3 Replies
- Last post
by lennon60000
- Hi, I am performing Word 2003 automation using C#, VSTO 2005. The macro for Inserting bullets and numbering of type outlineNumbered is something like ListGalleries(wdOutlineNumberGallery).ListTemplates(5).Name = "" Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=ListGalleries( _ wdOutlineNumberGallery).ListTemplates(5), ContinuePreviousList:=False, _ ApplyTo:
-
- Excel Cell Format Behavior
by FcoLomas
- 5 Replies
- Last post
by FcoLomas
- Hi all!!
Me one more time...
Well I haven't see before this behavior, I have an Excel sheet that recives data from a Database, of course with VSTO 2005, some of this data are Excel's formulas, well if the cell is formated as text it don't uses the formula and no calc is performed, but if the cell is formatted as general it works well, the question here is:
I'm using C# with an Excel Smart
-
- Outlook Addon - MessageBox not displaying in the current active window.
by Deltoid
- 8 Replies
- Last post
by Deltoid
- I have created an Outlook add on which performs actions when the ItemSend mail event occurs. I have a confirm dialog box that pops up. 1) If the e-mail message is open on my secondary monitor the messagebox will display on monitor 1. 2) If the e-mail message is open on my primary monitor the messagebox will be displayed BEHIND the message window. I suspect the problem is that I need to pass the Me
-
- What is the format of a Word hyperlink that uses a Range?
by Dave Jenkins
- 1 Replies
- Last post
by Christa Carpentiere - MSFT
- Note: I posted this question to office.developer.automation three weeks ago and only received one response (thanks Cimdy M). Unfortunately, she didn't have an answer. Since I'm using VSTO to create these hyperlinks, I think it's a fair question for this forum also. I need to know the format for a hyperlink that jumps to a specific location in a Word document. I can create these hyperlinks manuall
-
- API to retrieve Address from outlook address book?
by Malleswar
- 13 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hi, Can any one guide me or provide the link to retrieve Address from outllok address book Thanks in Advance
-
- VSTO 2005 SE Excel 2007 solution deployment
by Paul Oulton
- 1 Replies
- Last post
by Darryn Lavery -- MSFT
- Is there any relevant documentation on how to deploy above MSDN documentation all applies to earlier releases of Office and VSTO.
-
- Current Profile Name
by Dino498823
- 6 Replies
- Last post
by Sue Mosher - Outlook MVP
- Hi, Just wondered if anyone knew how to get the current Profile name from within an Outlook Addin using VSTO I need to be able to configure different options for different profiles, but I'm at a loss as to how to detect which profile a user is using. Any ideas Cheers, Dino
-
- Word ribbon customisation not working
by PaulHH
- 3 Replies
- Last post
by McLean Schofield - MSFT
- Hi I tried customising the ribbon to show/hide a custom task pane (VSTO 2005 SE with Word 2007), as described in the walk-through - didn't seem to work, no custom "VSTO" tab was displayed when I ran it. I took the embedded resource route. Any hints on tracking down the problem Many thanks Paul.
-
- Deploying Word 2007 addin on Vista - File Access problem
by Herman Solberg
- 4 Replies
- Last post
by Andrew Cherry [MSFT]
- Hi!
I've built an addin for Word 2007 that works just fin on XP with Office 2007 installed, but when I insatll it on a client running Vista I get a problem accessing files outside my assembly.
In my solution I've included an Xml file for storing and retrieving data. This file cannot be accessed on a machine running Vista. I get a "File access denied" error when Word starts
-
- Drag-drop hyperlink into Word
by Quirk
- 1 Replies
- Last post
by Quirk
- Im trying to drag a hyperlink into Word (2003) from my C# application, and I'd like to set the address and the title of the link when it is dropped. I can set the address with my code now, but the title is completely ignored no matter what I try. Here is the DataObject I am creating for the drag operation:
Code Snippet string url_title = "Test Title";
string url_addr = &qu
-
- Converting HTML email body into HTML attachment (ex message.html)
by William Pessoa
- 6 Replies
- Last post
by William Pessoa
- I need to convert every outmound email into a attachment. Does anyone know what I need to do to accomplish this on outlook (or exchange)
Very email needs to be converted into an attachment.
Thanks in advance!!!
-
- Add-in for Word 2007 Not Installed for ALL Users
by pKulandrei
- 4 Replies
- Last post
by pKulandrei
- Hi everyone,
I had developed a add-in for Word 2007 using VSTO and build the installer. I installed it on the target machine and it went successfull. The Add-in is working fine when I open Word. However, when other users login on the computer (aside from the username I used when I installed the add-in), the add-in was not loaded by Word. I already grant full access on the assembly. Target m
-
- 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
-
- Word addIn..Context Menu How To..?
by Ridi Ferdiana
- 3 Replies
- Last post
by Cindy Meister
- Dear All
I'm Installing VSTO SE and Office 2007 based on January MSDN shipment In usual i create customization in action pane or commandbar but now i want to create the customization in Word 2007 context menu, so user can select a range of text, right click it and display my own menu beside another usual menu item (such as copy,paste,etc)
Is there any clue for me thanks before
-
- VSTO in Word 2003 a bug?
by Michael Pongan
- 5 Replies
- Last post
by Ji Zhou ¨C MSFT
- Hi, I have VSTO installed with VS 2005. I am trying to add a new menu item in MS Word 2003 application. So I assume I am dealing with an Application add-in, right I tried testing it and it does show up in MS Word. The problem with it is the next day, I am trying to use the MS Word trying to create a document (non-programming related), I saw three of my buttons added in MS Word already. I don't kno
-
- Deploying this outlook addin
by perpetual_dream
- 1 Replies
- Last post
by perpetual_dream
- Hello,
I have this outlook addin which adds a button to microsoft outlook. Once the user clicks on the button it opens a form. I can run the addin successfully. Here is my code:
Code Snippet
public class ThisAddIn
Private _cbBar As Office.CommandBar
Private WithEvents _cbButton As Office.CommandBarButton
Private Sub ThisAddIn_Startup( ByVal sen
-
- No VSTO parts in prerequesities dialog
by kkarre
- 6 Replies
- Last post
by kkarre
- Hi, does anyone know what's wrong if I can't choose VSTO runtime or Excel 2003 PIA among the prerequesities for my setup project I use Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200)
and Microsoft Visual Studio Tools for Office 77617-168-7076001-41212
-
- Word/Excel/Powerpoint to TXT converter
by MrBogomips
- 1 Replies
- Last post
by Cindy Meister
- Hello all,
I need to realize how to efficently convert an Word .doc document into a TXT or an HTML (better).
I cannot install office on the production server, I just need a simple way to extract all the textual info from the file.
There's around an SDK suitable for the purpose
Thanx in advance for your reply.
-
- Custom Dictionary Problem
by Pati123
- 9 Replies
- Last post
by Cindy Meister
- Hi Guys,
I am a sri Lankan. I want to plug a sinhala Dictionary and validate the spellings, written in sinhala. So when user right click on the spesific word the word i select from the data base has to be shown in the spellin list insead of english. if you have any code or resource which can help me to do this please tell me.
Tharindu (Sri Lanka)