Excel 2007 Add-in with VSTO 2008: Walkthrough
Fri, 23 May 2008 15:21:40 +0200
I desperately try to get into VSTO. My aim is to develop an add-in with
custom worksheet functions. My questions:
- Why should I use VSTO instead of just developing the add-in using VBA?
- Where can I find a sample / walk-through showing step by step how to
create a worksheet function using VSTO?
Many ...
|
Processing incoming emails
Tue, 20 May 2008 21:58:29 +0100
Hi
Outlook 2003 Add-In.
How can I check the subject line of each incoming email and if a particular
string is found display an outlook alert with a link to the particular
email?
Thanks
Regards
...
|
Why is the "Tools for Office" discussion group so lightly traveled
Mon, 19 May 2008 09:40:06 -0700
To answer my own question, maybe there just isn't any developers using VSTO.
Maybe developers ask their questions in groups that are more heavily used.
Over the past week I've posted about 3 or 4 questions and have gotten
nothing in response which is of course very frustrating. For most of these I
was abl ...
|
DataGridView control contained within an Action Pane
Mon, 19 May 2008 08:02:02 -0700
Hi -
My basic question is how to programatically reference the DataGridView that
is inside an Action Pane control.
I have tried the following:
DataGridView dgv =
(DataGridView)Globals.ThisWorkbook.ActionsPane.Controls["dataGridView1"];
but dgv is null (I get a nullreferenceexception when I try to refe ...
|
Word 'SendMail' crashes Outlook 2007 Ribbon
Mon, 19 May 2008 03:54:45 -0700 (PDT)
I'm referring to the sample code download from the Microsoft website :
"OutlookRibbonXCS_VSTO". When I
have Outlook 2007 running with this AddIn, and I send a document as
an
attachement from Word 2007, the Inspector from for that email does not
close
down properly. The ribbon locks, and a 'hidden' Send button ...
|
Adding Subpane to Outlook 2003? ADX a good choice?
Sun, 18 May 2008 18:50:52 -0700 (PDT)
Hi,
As VSTO documentation (and me spend many many time) confirms:
CustomTaskPanes is only supported in OL 2007, but not OL2003.
The closest we can do in OL 2003 is to add an anchored commandBar with
Windows Form Control to simulate the custom task pane.
Anyone has any luck with anchor commandbar with Wi ...
|
Question on sending email from winform app
Thu, 15 May 2008 02:03:33 -0400
My clients use Outlook for their email client. I want to add the capability
of sending emails from within my app. Basically I am just going to
programmatically create the email and send it automatically without the user
being aware. Should I do this with VSTO. I have outlook 2007 on my
developer machine ...
|
|
|
Refresh ListObject Control
Wed, 14 May 2008 21:21:00 -0700
Hi -
I'm having trouble refreshing a ListObject control bound to a dataset that
was created from the New Data Source wizard. What is the code required to
refresh the ListObject with data from the data source (sql db)?
More Details:
The application is VSTO C# Excel 2007 (VS 2008).
I used the "Add New ...
|
VSTO and worksheet formulae
Wed, 14 May 2008 13:53:21 -0700 (PDT)
Hi there,
How can I write a function that is available as a formula on a
worksheet in a VSTO/code behind a sheet solution? I am aware of
automation add-ins but these functions are meant to retrieve data from
a pre-populated object and if I write a simple automation add-in then
the data object would have to be ...
|
XML Word 2003
Wed, 14 May 2008 15:14:20 +0100
What I would like to do is to create a Form with two Combo Boxes.
The combo boxes will be populated from an XML file:
Europe France
Europe Germany
Asia China
Asia Japan
Asia North Korea
Africa Morocco
Africa Eqypt
Africa South Africa
...
|