Skip to content
Code for Devs
  • Home
  • JavaScript
  • WordPress
  • Excel
  • VBA
  • C#
  • Miscellaneous
  • Contact Us
  • Home
  • codef4devs
  • Page 5

Author: codef4devs

How to Delete Windows.edb file in Windows 10

July 31, 2022February 26, 2025 codef4devs

Windows.edb is a search index database file of the Windows Search service. This file helps users to search for data and files in the file system in a faster way as it keeps indexing of […]

Leave a commentMiscellaneous

How to Read Table Data in Word Document using C#

January 5, 2022January 21, 2022 codef4devs

In this article, we are going to describe an example that will read the data from table available in Word document by using C# and then this data will be stored in C# data table. […]

Leave a commentC#

C# code to Copy file from One Folder to Another

December 27, 2021December 27, 2021 codef4devs

We use File.Copy method in C# to copy a file from one directory to another directory. This method takes three parameters. 1: SourceFileName: Existing file name with full existing path name 2: DestinationFileName: New file […]

Leave a commentC#

Export C# DataTable to CSV file

December 22, 2021December 22, 2021 codef4devs

This code will help you to write C# datatable to a csv file with headers. You can also define your own desired csv delimiter (comma, semicolon, pipe etc.) Below given code snippet demonstrates the example […]

Leave a commentC#

Convert Data Table to HTML using C#

October 17, 2021October 15, 2021 codef4devs

This article will help you to know how to export C# data table to HTML. Suppose below given data is in CSV format and you need to generate the code HTML code for that data. […]

Leave a commentC#

How to Convert CSV file to C# Data Table

October 15, 2021October 15, 2021 codef4devs

This code will help you to import a CSV file into DataTable using C#. As you know that a CSV file is like a text file which contains data fields separated by delimiter (comma, semicolon, […]

Leave a commentC#

How to Open Outlook Automatically using C#

October 13, 2021November 8, 2024 codef4devs

If you are automating outlook, it is good practice in your C# program to ensure that outlook is opened. If outlook is not opened, your code will not work as expected. Below C# code snippet […]

Leave a commentC#Outlook, Outlook Automation, Outlook C#

C# Code to Send Outlook Mails Programmatically

October 1, 2021November 8, 2024 codef4devs

This article demonstrates an example of sending outlook emails automatically by using C# code snippet. For this, you need to add a reference to the dynamic link library of Outlook called Microsoft.Office.Interop.Outlook.dll. Follow the below-given […]

Leave a commentC#Outlook, Outlook Automation, Outlook C#

How to Use Substring function in C#

September 29, 2021September 30, 2021 codef4devs

Substring function in C# helps you to retrieve a part of the string. It means you can extract a specific portion of a given string like retrieving first n characters, last n characters or characters […]

Leave a commentC#

How to change default delimiter of CSV file in excel

May 12, 2021May 12, 2021 codef4devs

This article will guide you to change the default delimiter from “comma” to another character that you want. As you all know CSV means comma-separated values. A CSV file is like a text file which […]

Leave a commentMiscellaneous

Posts navigation

Previous 1 … 4 5 6 Next

Categories

  • C#
  • Excel
  • JavaScript
  • Miscellaneous
  • MySQL
  • Python
  • Uncategorized
  • VBA
  • WordPress

Recent Posts

  • Python code to Find a Cell in Excel having Specific Date
  • Python Error: ‘module ‘win32com.gen_pyxxxx’ has no attribute ‘CLSIDToClassMap’ Solution
  • Group Concat in Excel-Concatenating Cell Values based on Grouping Rows
  • Python: Send Email from Outlook with Attachment
  • How to Add Checkbox in DataGridView in C# Windows Form Application
Copyright © All rights reserved.