Search
Follow Us
Categories
- Success Stories(157)
Archives
Monthly Archives: June 2022
Connect to Microsoft365 Mailbox using Modern Authentication in C# .NET
Modern Authentication is now enabled by default for all new Microsoft 365/Azure tenants because this protocol is more secure than the deprecated Basic Authentication.
Modern Authentication is based on Active Directory Authentication Library and OAuth 2.0. It uses time-limited tokens, and applications don’t store user credentials.
In addition, it is planned to completely prohibit the use of Basic Authentication for all Microsoft 365 clients.
In this article, we will focus on using Modern Authentication to connect via EWS, SMTP, IMAP, … Continue Reading
Convert Project Data to XAML using Java
As a Java developer, we can easily export Microsoft Project data from MPP files to XAML format programmatically in Java applications. In this article, you will learn how to convert Microsoft Project data to XAML using Java.
Convert PDF to TXT in Python
PDF is a well-known file format that provides a consistent layout of the document across heterogeneous platforms. It provides a bunch of features and elements to create rich text documents. However, in certain cases, e.g. to parse the text in the document, you have to convert PDF files to TXT format programmatically. To accomplish that, this article covers how to convert a PDF file to TXT format in Python.
Convert TXT to JSON in Python
Convert TXT to XLSX in Java
TXT files are commonly used to work with plain data with little or no formatting. Sometimes numeric data exists as a TXT file which you might need to convert to an XLSX Excel file for further processing. In this article, you will learn how to convert a TXT file to XLSX format programmatically in Java.
Save Webpage as PDF in C#
Webpages can contain text, images, drawings, animations, etc. Sometimes you might need to convert a webpage to PDF for archival or several other purposes. Accordingly, this article covers how to save or print a webpage to PDF format in C# by specifying the URL of the webpage. It discusses the simple and basic conversion as well as the advanced conversion where you can encrypt the output file.
Convert CSV to TXT in Python
CSV (Comma Separated Values) files are commonly used to store the data. Most of the datasets in different domains are also maintained in CSV format. However, in certain cases, you have to convert the CSV files to TXT format to process the data. In accordance with that, this article covers how to convert CSV to TXT in Python.
Convert PDF Pages to JPG Images in C#
PDF is a versatile format that is commonly used for printing and sharing documents. However, there could be cases when you need to convert PDF files to image formats programmatically. To accomplish that, this article covers how to convert PDF to JPG images in C# from within your .NET applications.
Read Gantt Chart of Project using Java
The Gantt chart view is the default view of the project. It lists project tasks, their relationship to one another, and the schedule of the project. In this article, you will learn how to read the Gantt chart of the MS project using Java.