Export embedded objects
Tue, 15 Jul 2008 07:07:02 -0700
Hello,
I am working on a Add-ins for Microsoft Office Word 2007 which saves
data in word document into some other proprietry XML format. I am able store
all the data except object embedded using "Insert->Object". Can someone guide
me how I can access OLEObjects embedded into Word document using Word O ...
|
Excel macro as part of my AddIn
Mon, 14 Jul 2008 16:07:31 -0600
Hi;
Is there a way for my AddIn to support a macro in Excel? And if so,
can it be used in part of a cell? I'd like to be able to have a cell
be:
dave(<wr:out select='/data/a'/>) * dave(<wr:out select='/data/b'/>)
Just like you can do sum (A2:A5) * avg(B2:B5)
We have an IExtensibility, not a VSTO AddIn.
...
|
COM add-in for XP and 2007
Sun, 13 Jul 2008 22:56:06 -0700
Hi All, I am trying to create a tool with custom task pane that needs to work
on both office 2007 and lower version, can anyone tell me where can i start
for this ?Thanks ...
|
Disable controls in Outlook 2007?
Sun, 13 Jul 2008 17:38:45 -0500
In my addin, I disable controls by getting the control id want, and doing a put_Enable false on it. For example, to disable Send Update for a meeting in Outlook 2003, I do this for id 1983 (Standard, Send Update), and it works.
In Outlook 2007, Send Update is a large button, and the same code does not work. I a ...
|
how to get height of inspector window
Sun, 13 Jul 2008 12:07:08 -0500
I need to know the height and width of the Inspector window, but when I access it using
void myinsp_NewInspector(Microsoft.Office.Interop.Outlook.Inspect or Inspector)
{
int ht;
ht = Inspector.Height // Error is thrown here
}
It throws an error
'Inspector.Height' threw an exception of type 'Sys ...
|
Re: outlook value not retained : tab require?other Possibilities Retain value in combo box(CommandBa
Fri, 11 Jul 2008 07:47:09 -0500
Thanks for the response Ken. But there should be an alternative to this, I think. I need to implement it in my project anyhow. Is the below things possible ?
1) Can I use any other control in commandbar as an alternative to commandbarcombobox ? If yes what can I use ?
2) I think if somehow I override Kill_fou ...
|
Re: Write event in the form region.
Thu, 10 Jul 2008 14:08:29 -0400
Ok. I am doing this the whole time.
using the debugger, we observed that when arriving in the end of the routine write(), ( using F11) the next command is the first command of the routine write() again. After the last time the flow finally goes to the close().
thx for your attention. ...
|
|
|
Re: Write event in the form region.
Thu, 10 Jul 2008 09:12:52 -0500
Quote:
> void apptItem_Write(ref bool Cancel)
> {
> if (certo && string.IsNullOrEmpty(txbAssunto.Text.Trim()))
> {
> return;
> }
> else
> if (string.IsNullOrEmpty(txbAssunto.Text.Trim()))
> {
> txbAssunto.Text = apptItem.Subject.ToString();
> txbLocal.Text = apptItem.Loc ...
|
Re: Write event in the form region.
Wed, 9 Jul 2008 14:47:54 -0500
Hi!
Thx for your attention.
In the beginning I had several save() in my system, including some in the close of the form. I noticed that this was a problem and I passed the whole code inside of the event write. Now I don't have more any explicit save().
When we clicked in the button "Save & Close" the system ex ...
|
poor performance of Word2007/Vista; not for other OS/Word versions
Wed, 9 Jul 2008 09:02:00 -0700
Hello,
We have problems with the performance of Word 2007 in combination with
Windows Vista. We have got a Word document that contains a lot of bookmarks.
All of the bookmarks have to be enumerated to check their start- and
endpostion. This worked fine for Xp/Word2003, Xp/Word2007 and Vista/Word2003.
If ...
|