VSTO Outlook Mouse pointer change
up vote
0
down vote
favorite
Working on an Outlook VSTO Add-In. I am trying to change the mouse pointer to reflect that an action is performed in the background. I tested the following code:
Cursor.Current = Cursors.WaitCursor
Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;
Wait Cursor in VSTO word add-in application
Microsoft.Office.Interop.Outlook.Application app = Globals.ThisAddIn.Application;
app.System.Cursor = wdCursorWait; // --> app.System does not exist + No OutlookCursor :-/
Any clue?
c# vsto outlook-addin outlook-object-model
add a comment |
up vote
0
down vote
favorite
Working on an Outlook VSTO Add-In. I am trying to change the mouse pointer to reflect that an action is performed in the background. I tested the following code:
Cursor.Current = Cursors.WaitCursor
Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;
Wait Cursor in VSTO word add-in application
Microsoft.Office.Interop.Outlook.Application app = Globals.ThisAddIn.Application;
app.System.Cursor = wdCursorWait; // --> app.System does not exist + No OutlookCursor :-/
Any clue?
c# vsto outlook-addin outlook-object-model
I have not had any significant issues withCursor.Current = Cursors.WaitCursor
aside from it sometimes getting unset by Word (not Outlook). What problems are you seeing?
– Chris
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Working on an Outlook VSTO Add-In. I am trying to change the mouse pointer to reflect that an action is performed in the background. I tested the following code:
Cursor.Current = Cursors.WaitCursor
Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;
Wait Cursor in VSTO word add-in application
Microsoft.Office.Interop.Outlook.Application app = Globals.ThisAddIn.Application;
app.System.Cursor = wdCursorWait; // --> app.System does not exist + No OutlookCursor :-/
Any clue?
c# vsto outlook-addin outlook-object-model
Working on an Outlook VSTO Add-In. I am trying to change the mouse pointer to reflect that an action is performed in the background. I tested the following code:
Cursor.Current = Cursors.WaitCursor
Mouse.OverrideCursor = System.Windows.Input.Cursors.Wait;
Wait Cursor in VSTO word add-in application
Microsoft.Office.Interop.Outlook.Application app = Globals.ThisAddIn.Application;
app.System.Cursor = wdCursorWait; // --> app.System does not exist + No OutlookCursor :-/
Any clue?
c# vsto outlook-addin outlook-object-model
c# vsto outlook-addin outlook-object-model
asked Nov 18 at 6:45
Salim
12511
12511
I have not had any significant issues withCursor.Current = Cursors.WaitCursor
aside from it sometimes getting unset by Word (not Outlook). What problems are you seeing?
– Chris
2 days ago
add a comment |
I have not had any significant issues withCursor.Current = Cursors.WaitCursor
aside from it sometimes getting unset by Word (not Outlook). What problems are you seeing?
– Chris
2 days ago
I have not had any significant issues with
Cursor.Current = Cursors.WaitCursor
aside from it sometimes getting unset by Word (not Outlook). What problems are you seeing?– Chris
2 days ago
I have not had any significant issues with
Cursor.Current = Cursors.WaitCursor
aside from it sometimes getting unset by Word (not Outlook). What problems are you seeing?– Chris
2 days ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53358536%2fvsto-outlook-mouse-pointer-change%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I have not had any significant issues with
Cursor.Current = Cursors.WaitCursor
aside from it sometimes getting unset by Word (not Outlook). What problems are you seeing?– Chris
2 days ago