Search
Follow Us
Categories
- Success Stories(157)
Archives
Monthly Archives: September 2020
Convert CSV to Excel or Excel to CSV File using Java
CSV file format is used to save comma-separated values. CSV to Excel conversion is helpful when there are numbers involved in the input data and you need to perform some calculations. Likewise, Excel to CSV conversion is helpful in some scenarios, like serialization of data in some cases. Let us explore the inter-conversion between CSV and Excel file format.
Merge MS Word Documents using Java
The merger of multiple MS Word documents could be needed in various scenarios. For example, reducing the number of documents, keeping similar kinds of content in a single file (i.e. invoices), and etc. Many online applications let you merge two or more MS Word documents, however, you may need to implement document merging features within your own web or desktop applications. For such a case, in this article, you will learn how to merge MS Word documents using Java.
Create MS Project Files using C++ – Add Tasks, Resources, or Calenders to Projects
MS Project is a widely used project management software that helps the managers in managing their projects efficiently. It helps to create the tasks, add resources, allocate tasks to resources, monitor the progress, and manage budget-related operations. In this article, you will learn how to embed the project management activities within your applications without MS Project. With the help of code samples, you will learn how to create MS Project files (.mpp), add tasks, resources, and calendars programmatically using C++. Furthermore, the assignment of tasks to resources in a project will also be demonstrated.
Convert CAD’s DWG and DXF to PDF using C#
AutoCAD is used by designers to create various types of designs of buildings, bridges, automobiles, chips and etc. in a wide range of industries. However, the AutoCAD formats (DWG, DXF, etc.) can only be viewed in a dedicated software or an online AutoCAD viewer. To make things easier, the AutoCAD drawings could be converted into PDF files which can be viewed anywhere without any dependency. In this article, you will learn how to convert AutoCAD DWG/DXF drawings to PDF programmatically using C#.