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

Author: codef4devs

C# | Insert Text in New Line of Multiline Text Box by Button Click

November 26, 2024November 19, 2024 codef4devs

Here in this C# example, we will show how to add text in new line of Multiline text box. The text will be inserted in new line when user clicks on a button. For a […]

Leave a commentC#c# Examples, c# GUI Examples

Math.Truncate() in C# | Get Integral and Fractional Part of Number

November 22, 2024November 19, 2024 codef4devs

Truncate method of Math class is used to find integral part of a specified decimal number or double-precision floating-point number. You can find decimal part of a specified decimal number as well by using Truncate […]

Leave a commentC#c# Examples

Reading Multiline Textbox Line by Line in C# Windows Form Application

November 19, 2024 codef4devs

If you need to read a multiline TextBox line by line in C#, you need to use the Lines property of the TextBox. This property gives you an array of strings in return. Each element of this array corresponds to […]

Leave a commentC#c# Examples, c# GUI Examples

C# – Round Up or Round Down Number to Nearest Multiple of 10

November 15, 2024November 19, 2024 codef4devs

You are given a number, and you need to round it up or down to nearest multiple of 10, means round up or down to a number having 0 as last digit like as given […]

Leave a commentC#c# Examples

How to Set Excel Sheet Zoom Percentage using C#

November 8, 2024November 8, 2024 codef4devs

If you are automating excel using C# and Microsoft.Office.Interop and you need to set the zoom factor of excel sheet, first you need to activate that particular sheet then set the zoom percentage of ActiveWindow.Zoom […]

Leave a commentC#Excel, Excel Automation, Excel c#

C# Code to Delete Mail After Send from Outlook Sent Item

November 1, 2024November 8, 2024 codef4devs

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 […]

Leave a commentC#Outlook, Outlook Automation

C# – Paste Values as Transpose in Excel

August 16, 2024 codef4devs

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 […]

Leave a commentC#

Simple Way to Convert XLSX file to CSV file by C#

June 1, 2024June 1, 2024 codef4devs

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 […]

Leave a commentC#

Calculated Fields – Excel Pivot Table Advanced Feature

July 23, 2023July 23, 2023 codef4devs

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. […]

Leave a commentExcel

Get Mail Address of Sender from Outlook Mail Item Object by C#

July 15, 2023November 8, 2024 codef4devs

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 […]

Leave a commentC#Outlook, Outlook Automation

Posts navigation

Previous 1 2 3 … 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.