Click here to Skip to main content
15,927,745 members
Home / Discussions / C#
   

C#

 
AnswerRe: CancelEventArgs - multiple subscribers [modified] Pin
DaveyM6929-Jun-09 22:20
professionalDaveyM6929-Jun-09 22:20 
QuestionInvalidOperationException - object is currently in use elsewhere - red cross Pin
para para29-Jun-09 10:20
para para29-Jun-09 10:20 
AnswerRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
Christian Graus29-Jun-09 10:44
protectorChristian Graus29-Jun-09 10:44 
GeneralRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
para para29-Jun-09 10:48
para para29-Jun-09 10:48 
GeneralRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
Christian Graus29-Jun-09 11:37
protectorChristian Graus29-Jun-09 11:37 
GeneralRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
para para29-Jun-09 19:14
para para29-Jun-09 19:14 
Questionweb automation using axwebbrowser Pin
T_Teef29-Jun-09 9:59
T_Teef29-Jun-09 9:59 
QuestionI'm needing to have a textbox to be on top of all other controls on the form. Pin
Lecutus129-Jun-09 8:10
Lecutus129-Jun-09 8:10 
AnswerRe: I'm needing to have a textbox to be on top of all other controls on the form. Pin
OriginalGriff29-Jun-09 8:22
mveOriginalGriff29-Jun-09 8:22 
QuestionCalling GetPrinterData (windows api) from c# Pin
belzer29-Jun-09 6:52
belzer29-Jun-09 6:52 
AnswerRe: Calling GetPrinterData (windows api) from c# Pin
Svetlin Panayotov29-Jun-09 8:56
Svetlin Panayotov29-Jun-09 8:56 
GeneralRe: Calling GetPrinterData (windows api) from c# Pin
belzer29-Jun-09 10:51
belzer29-Jun-09 10:51 
GeneralRe: Calling GetPrinterData (windows api) from c# Pin
Manfred Wilner25-Jul-16 7:18
Manfred Wilner25-Jul-16 7:18 
AnswerRe: Calling GetPrinterData (windows api) from c# Pin
Henry Minute29-Jun-09 14:11
Henry Minute29-Jun-09 14:11 
GeneralRe: Calling GetPrinterData (windows api) from c# Pin
belzer30-Jun-09 2:56
belzer30-Jun-09 2:56 
QuestionWindows Service Application: Will not execute separate class Pin
bellorke29-Jun-09 6:37
bellorke29-Jun-09 6:37 
AnswerRe: Windows Service Application: Will not execute separate class Pin
Gajula Srikanth29-Jun-09 10:27
Gajula Srikanth29-Jun-09 10:27 
QuestionSerial Port DataReceived method in a Windows Service Pin
saeidfarahi29-Jun-09 6:20
saeidfarahi29-Jun-09 6:20 
AnswerRe: Serial Port DataReceived method in a Windows Service Pin
Luc Pattyn29-Jun-09 7:07
sitebuilderLuc Pattyn29-Jun-09 7:07 
Questionchange "registry value's" type by c# ? [modified] Pin
jamesband00729-Jun-09 5:27
jamesband00729-Jun-09 5:27 
AnswerRe: change "registry value's" type by c# ? Pin
michaelvdnest29-Jun-09 6:22
michaelvdnest29-Jun-09 6:22 
AnswerRe: change "registry value's" type by c# ? Pin
Eddy Vluggen29-Jun-09 6:29
professionalEddy Vluggen29-Jun-09 6:29 
GeneralRe: change "registry value's" type by c# ? Pin
Luc Pattyn29-Jun-09 7:10
sitebuilderLuc Pattyn29-Jun-09 7:10 
GeneralRe: change "registry value's" type by c# ? Pin
Eddy Vluggen29-Jun-09 7:35
professionalEddy Vluggen29-Jun-09 7:35 
QuestionCreate and open a taskpane in outlook opened worddocument Pin
fhoernchen29-Jun-09 4:57
fhoernchen29-Jun-09 4:57 
Hello,

I'm having an Outlook 2007 addin, which opens an existing word 2007 document and fills in some userdata, which I receive from Outlook.

The next step is an actionpane, which should be opened in this worddocument.
I wrote some worddocumenttemplate in VS 2008 and got everything working:
...
namespace WordDocumentTaskpane
{
    public partial class ThisDocument
    {
        private HelloControl hello = new HelloControl();
        private void ThisDocument_Startup(object sender, System.EventArgs e)
        {
            this.ActionsPane.Controls.Add(hello);
        }
...

This HelloControl is just a userconstrol to display some items from a database.

By working hard on the Outlook addin, I can't get the taskpane / actionspane created in the opend worddocument, because I can't call the according methods.
Are there any basic ideas?

Grettings Confused | :confused:

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.