Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
77 views

I have a dynamic menu button in our custom VSTO ribbon. I am loading content to it at runtime. That process is working fine. Dynamic drop down is creating fine. this is the code. In Ribbon.xml <...
ApsSanj's user avatar
  • 579
-2 votes
1 answer
32 views

I normally click a button to initiate a process on the `vsto` add-in. when the process is done, feedback is received is received in form of a `MessageBox`. now here is the issue. If I remain inside ...
nomacreates's user avatar
1 vote
1 answer
46 views

I understand that when there is only one filter active, I can easily obtain its value by accessing the cell adjacent to the page filter. However, when multiple filters are applied, Excel displays this ...
Robin Dieu's user avatar
0 votes
0 answers
72 views

I'm using Word Interop Libraries to identify bold text in a Word document and add comments to those sections. However, while running the code, I noticed an issue(from the Word UI): when a bold part or ...
Kasun Nimantha's user avatar
0 votes
0 answers
62 views

I am using UndoRecord.StartCustomRecord in Microsoft.Office.Interop.Word to create custom undo records in my VSTO add-in. However, I’ve encountered some unexpected behavior that makes the Word undo ...
Kasun Nimantha's user avatar
-4 votes
1 answer
88 views

I have populated a column of check boxes, and attempted to set the value of them to true like so: worksheet.CheckBoxes("Check").Value = True This is my code: Public Sub ...
Lloyd Thomas's user avatar
0 votes
1 answer
47 views

I'm developing a VSTO add-in for Microsoft Word and packaging it using a .msi installer (Visual Studio Installer Project). Before proceeding with the installation, I want to ensure that Word (winword....
Ankur Gupta's user avatar
0 votes
1 answer
61 views

I have VSTO Addin in word document, and I want to identify the "Comments" button that is displayed on top right corner of the word document. provided a screenshot for reference. The comments ...
Balaji Sundaram's user avatar
0 votes
1 answer
48 views

Project structure: Solution VSTO Project (Added WPF project as reference) WPF Project I got this error while installing VB.NET VSTO addin project which is created usng ClickOnce approch. I've checked &...
Rahul Shiyani's user avatar
0 votes
1 answer
426 views

I have a C# Excel VSTO addin which runs properly launched from VS, but fails to work when published with ClickOnce. MSAL.Desktop.4.62.0.0.MsalClientException wam_runtime_init_failed Microsoft....
gooopil's user avatar
  • 17
1 vote
1 answer
52 views

I'm developing a code that allows me to access the TASK USAGE view of any Ms Project file, and to be able to import that information to an Excel file. I'm using VB .NET and VSTO, accessing through the ...
Jhorbam's user avatar
  • 23
0 votes
1 answer
89 views

Currently I am experiencing a rare issue, where the Outlook recipient object does not seem to contain the SMTP information of a user. Only the X400 information is available, very difficult to ...
usselite's user avatar
  • 816
0 votes
1 answer
47 views

I tried to read emails from an email Outlook account in a .pst/.ost file. The code is as follows. Outlook.Application myApp = new Outlook.Application(); Outlook.NameSpace mapiNameSpace = myApp....
John Lee's user avatar
  • 171
0 votes
1 answer
83 views

I have built a VSTO Excel addin with a simple button. I added an image to the button, but the image size in excel is always small: I cant find a way to increase the image size, I would like the ...
Programnik's user avatar
  • 1,559
0 votes
2 answers
111 views

I am new to C# VSTO Add-In development and am trying to add a signature at the cursor's location. However, I'm unable to insert HTML and can only add plain text. How can I append HTML instead? I tried ...
Ramakrishnan Ramar's user avatar
0 votes
0 answers
33 views

I'm creating a VSTO Excel Add-in using VB.NET. I am trying to create custom shortcuts. Application.OnKey function has 2 inputs: key and procedure, I entered "^q", which means Control + q. In ...
Urveel Parmar's user avatar
0 votes
0 answers
22 views

I have a Vb.NET VSTO project that has one setting in an App.Config file. Let's say the string setting is named TestSetting. I publish and install the project. When the application is not running, I ...
Grant's user avatar
  • 1
0 votes
1 answer
44 views

So I have an add in that monitors the sent items folder and uploads emails to an azure storage when a new item hits it, if it meets certain criteria. my issue is that it only works on the default ...
Zorbacles's user avatar
0 votes
0 answers
75 views

I have an Excel VSTO add-in which utilises nlog. The nlog.config file is stored in the following folder: C:\ProgramData\Company Name\Historian Client\Config If I run Excel as non-admin, the Add-In ...
Paul Johnson's user avatar
0 votes
0 answers
38 views

I like to check if there is a slide zoom object on a slide to set the property "Return to zoom" for all the "Slide zoom objects". I saw this article - where they say, there should ...
Roger Heckly's user avatar
0 votes
3 answers
408 views

I am looking for a way to set an hyperlink a cell, but without setting the hyperlink style. so basically keep the existing cell formatting. I know you can set another style, but the original ...
MyExcelDeveloper.com's user avatar
1 vote
1 answer
38 views

I am using the following code when creating a meeting in outlook private void ThisAddIn_Startup(object sender, EventArgs e) { //other code Application.ItemSend += Application_ItemSend; } ...
Gadzhik's user avatar
  • 43
0 votes
1 answer
37 views

Is there a way to get the complete original email message as sent in SMTP DATA? I can get Outlook email body and bodyHTML, and I can get email headers with PR_TRANSPORT_MESSAGE_HEADERS. Looking for eg:...
Steve Shoemaker's user avatar
0 votes
0 answers
29 views

I'd like to get an Outlook ContactItem using Exchange formatted X509 email address (a string). Is it possible or not?
Sturmer's user avatar
  • 57
0 votes
1 answer
52 views

I am trying to write a scrip in VSTO that can export attachments and the email (as pdf) The goal is to export the pdf which has the same information as when you print to pdf (aka it should include ...
ZQ G's user avatar
  • 1

1
2 3 4 5
134