C# Code to Delete Mail After Send from Outlook Sent Item
When you send mail using outlook, you can see that mail in sent Item folder. If you have automated your outlook mail sending process using C#, you can see all your mails in sent item […]
When you send mail using outlook, you can see that mail in sent Item folder. If you have automated your outlook mail sending process using C#, you can see all your mails in sent item […]
Need to paste values as transpose in excel programmatically using C#? This post is going to guide you to do so. What Is Transpose Values in MS Excel? Transpose values in MS Excel is converting […]
This article demonstrates the C# code snippet to easily convert excel files to csv files. In this code example, you can define your own desired csv delimiter (comma, semicolon, pipe etc.) To do so, you […]
Insert Calculated Fields feature of Pivot table enable you to add a virtual column, based on some calculation over existing columns, which is physically not present in dataset but gets available in Pivot Table fields. […]
Here is a C# code example that will help you to find the mail ID of sender from Outlook Mail Item Object. We use SenderEmailType property of Outlook MailItem object to determine the email type […]
Here is an example C# code that helps you work on attachments in an outlook mail item. You can use Attachments property of Outlook MailItem object for saving attached file in outlook mail item by […]
This post will help you to know how to start, stop or restart MySQL services on Windows 10 operating system. While working with MySQL, sometimes it becomes necessary to restart or starting, stopping MySQL server. […]
Protecting the excel workbook with a password is the best way to prevent others from accessing data in your excel workbook. This ensures that the data in workbook will be accessed by only authorized person, […]
This article describes how to create a C# program that reads mails from your outlook inbox. You can do this using the Microsoft.Office.Interop.Outlook.dll. Here is the step by step procedure of creating automation of reading […]
Are you developing a C# program that automates the password protected excel file? You might be in irritative situation as when your excel file is opened by C# code, it will prompt you to enter […]