TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Pan
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sameer Shukla (11)
Ivan Porta (5)
CSharp TV (4)
Mahesh Chand (3)
Sardar Mudassar Ali Khan (3)
Bohdan Stupak (2)
Anubhav Chaudhary (2)
Nitin (2)
Prabhakar Maurya (2)
Allam Purushotham (2)
David Mccarter (2)
Scott Lysle (2)
Ashish Bhatnagar (2)
Arjun Karthikeyan S (2)
Venkatasubbarao Polisetty (2)
Subham Ray (2)
Santosh Karanam (1)
Mujeeb Rahman (1)
Konga Mounika (1)
Anuradha Rani (1)
Aman Gupta (1)
Douglas Wagner (1)
Sudhir Vaghela (1)
Jitendra Mesavaniya (1)
Harshad M (1)
Sukanya Mandal (1)
Aditi Sawhney (1)
Ayushi Jain (1)
Chandani Prajapati (1)
Cr Bhargavi (1)
Ravee Rasaiyah (1)
Kokul Jose (1)
Dhruvin Shah (1)
Arun Choudhary (1)
Manish Sharma (1)
Monica Rathbun (1)
Nishi Kumari (1)
Umesh Baradkar (1)
Mithilesh Tata (1)
Sateesh Arveti (1)
Dipa Ahuja (1)
Davin Martyn (1)
Allen Oneill (1)
Dr Gomathi (1)
Sarthak Varshney (1)
Ashish Shukla (1)
Vishal Verma (1)
Ravikant Sahu (1)
Rohit Gupta (1)
Sabari M (1)
Vitalii Honcharuk (1)
Naimish Makwana (1)
Edinbiro James (1)
Chris Love (1)
Sai Kumar Koona (1)
Rohan Singh (1)
Abdul Basith (1)
Shweta Lodha (1)
Kaushik Borah (1)
Mushtaq M A (1)
Munir Shaikh (1)
Md Sarfaraj (1)
Ramesh Chandra (1)
Siddharth Vaghasia (1)
Abhishek Uppula (1)
Madhan Thurai (1)
Dhanush M (1)
Prajnya (1)
Related resources for Pan
No resource found
High-Performance Apps Using C# Span<T>
11/27/2024 11:35:46 AM.
Often in application we come scenarios where we need to perform string manipulation operations. In such cases using string type take up huge memory as it is immutable. Instead Span can be used, which
Using Span<T> To Improve Performance Of C# Code
10/21/2024 10:13:00 AM.
To enhance application performance, reducing IO calls and utilizing stack allocation is crucial. Leveraging value types and the Span<T> structure in C# allows efficient memory management and imp
Create Custom Tab in Office Ribbon at Excel/ Word 2007
9/25/2024 9:48:35 AM.
This article provides a step-by-step guide for customizing Office 2007 applications like Excel and Word using Visual Studio 2008. It demonstrates how to create a custom tab in the Ribbon without codin
How to Configure Authentication for the Virtual Directory
9/5/2024 11:16:31 AM.
This guide explains configuring authentication for a virtual directory in IIS. Start by opening IIS Manager from Administrative Tools. Expand your server's name, locate the desired site, and acces
Discovering Azure OpenAI GPT-4o Mini: Your New AI Companion
8/24/2024 7:18:03 AM.
Azure OpenAI's GPT-4o Mini is a compact, high-performance AI model designed for efficient text generation. It excels in tasks like chatbot creation, content generation, and data analysis. Versatil
Panel In C#
8/7/2024 10:44:17 AM.
A Panel Control in Windows Forms is a container for grouping and managing child controls. It simplifies showing and hiding multiple controls by allowing you to manage them as a group. You can create P
Working with WPF Expander Control using C# and XAML
8/6/2024 11:35:26 AM.
The Expander class in C# represents a WPF Expander control. At design time, the <Expander> element of XAML is used to create an Expander control. The code examples in this tutorial demonstrate h
How to Create Scrollable Screen?
7/25/2024 4:31:00 AM.
Learn how to create and manage scrollable screens in your project, enhancing user experience with full-screen scrolling. This guide covers adding and configuring scrollable screens, managing control a
Dynamic Expansion Panel as a separate component.
7/21/2024 7:54:06 AM.
Create a dynamic expansion panel in Angular using Angular Material to display user personal and correspondence addresses. This involves defining components with TypeScript for logic, HTML for view, an
The Critical Role of AI in the Future of IT Companies
7/3/2024 6:04:06 AM.
AI is revolutionizing the IT industry, enhancing efficiency, improving cybersecurity, and driving innovation. This article explores how AI can transform IT services and consulting, from automating rou
Sharepoint Framework Property Pane
6/28/2024 8:59:07 AM.
SharePoint Framework (SPFx) offers a client-side model for developing web parts and pages in SharePoint, leveraging modern web technologies and supporting seamless integration with SharePoint data.
Understanding AsMemory() in C# .NET with Examples
6/24/2024 5:47:07 AM.
In C#, the AsMemory method is a powerful tool for creating Memory<T> instances from arrays, array segments, or strings. It is part of the System.Memory namespace, which offers types designed to
TreeView In WPF
6/14/2024 10:37:05 AM.
Explore the WPF TreeView control in this tutorial, designed to display hierarchical data with expandable nodes. Learn to add, delete, and style TreeView items dynamically using XAML and C#. Enhance y
Database Options in Google Cloud Platform (GCP)
6/11/2024 9:07:16 AM.
GCP offers diverse database services tailored for various needs, from relational databases like Cloud SQL and AlloyDB for structured data to NoSQL options like Firestore and Cloud Bigtable for large,
Internet of Things (IoT) - Part 2 (Building Blocks & Architecture)
6/7/2024 10:44:39 AM.
This article explores the foundational elements of the Internet of Things (IoT), covering its basic building blocks: sensors, processors, gateways, and applications. It delves into IoT architecture la
Progress Bar in ASP.NET MVC
6/6/2024 11:33:00 AM.
Progress Bar in ASP.NET MVC utilizes Bootstrap, jQuery, and AJAX for dynamic updates. It offers visual feedback on task progress, implemented through partial views, async operations, and JSON data bin
Optimizing Memory Management in C#
6/4/2024 7:23:27 AM.
In this article, we will learn Memory management and optimization are crucial aspects of C# development, especially for applications that demand high performance and efficient resource utilization.
Layering Objects using Selection Pane
5/25/2024 1:11:06 PM.
The "Layering Objects using Selection Pane" tutorial guides users on how to efficiently organize and manage objects in PowerPoint presentations. Learn to control the visibility, order, and a
How to Auto-Refresh Grid View on Closing of Popup Menu
5/17/2024 11:00:41 AM.
Auto-refresh GridView on closing popup: Utilize JavaScript or jQuery to trigger a postback or AJAX call upon popup closure. Update GridView data source server-side to reflect changes dynamically, enha
Show/Hide Property Pane Component Based On Another Component's Value In SPFX
5/16/2024 9:29:27 AM.
In SharePoint Framework (SPFX), customize property panes by dynamically showing or hiding components based on the values of other components. Utilize React's conditional rendering for efficient UI
Introducing Copilot Studio: Your Creative Code Companion
4/25/2024 10:38:44 AM.
Copilot Studio is your ultimate creative companion for coding. This innovative platform is designed to assist and inspire you in your coding journey, offering support, suggestions, and guidance to enh
Access AssemblyInfo File and Get Product Informations
4/25/2024 10:13:01 AM.
Access the AssemblyInfo file to retrieve crucial product details such as version, title, and company. Utilize attributes like AssemblyVersion and AssemblyProduct to programmatically access metadata, f
Unity Muse Features Expanded In Editor With 3 New Updates
4/24/2024 11:11:53 AM.
Real-time collaboration enables developers to work together from anywhere, boosting synergy and speeding up creativity. It encourages teamwork, enhances knowledge exchange, and leads to top-notch resu
Write And Read Pandas Dataframe And CSV To And From Azure Storage Table
4/24/2024 7:57:24 AM.
This tutorial focuses on integrating Pandas with Azure Storage Table, enabling writing and reading DataFrames to and from CSV files stored in Azure Storage. It covers data transfer between local envir
Customize Power BI Theme Without JSON: Part Two
4/15/2024 11:57:24 AM.
Explore advanced Power BI JSON customization options including text, visual, page, and filter pane properties. Learn to format text, backgrounds, borders, headers, tooltips, and more for enhanced rep
Use of Environment Variable in Windows 8
4/10/2024 10:43:21 AM.
Learn how to manage Environment Variables in Windows 8 using Control Panel. Add, edit, or delete variables to customize system settings for better program execution. Simplify software kit installation
How to Disable Network Adapter in Windows 8
4/10/2024 8:58:15 AM.
Disable network adapters in Windows 8 through Device Manager or Network Connections in Control Panel. Navigate to the adapter, right-click, and select 'Disable' to halt network connectivity, u
Rockin’ The Code World with dotNetDave: Panel Discussion - Ep. 99
4/6/2024 8:41:10 AM.
In this episode, we have a panel discussion.
Comparing Execution Plans In SQL Server
4/3/2024 9:52:56 AM.
SQL Server Management Studio (SSMS) allows easy comparison of execution plans, aiding in identifying performance discrepancies. Users can compare .sqlplan files, highlighting differences in query oper
Creating LocalLibrary Models for Admin Panel Design
3/26/2024 11:51:33 AM.
Discover Django model design with our tutorial, focusing on LocalLibrary admin site implementation. Learn to define, access, and manage models efficiently, enhancing web app scalability and functional
Expandable and Collapsible Tables in PowerApps
3/10/2024 7:47:33 AM.
This article provides a comprehensive guide on expanding and collapsing multiple tables in PowerApps. It walks through the steps required to set up a canvas control, customize columns, add containers,
Add Company Email Signatures and Disclaimers in Microsoft 365
3/5/2024 5:41:41 AM.
Explore methods to Create and Add Company Email Signatures and Disclaimers in Microsoft 365. Get the best guides to add Email Signatures and Disclaimers in Microsoft 365 in easy steps.
Show Folder Contents and Compare with Another Folder
2/28/2024 11:40:36 AM.
This application provides a convenient way to display and compare the contents of two folders. Utilizing a web application interface, users can easily navigate through the files in the specified direc
How to Change Windows 8 Product Key
2/26/2024 12:06:26 PM.
To change the product key in Windows 8, access activation settings via the Control Panel or Command Prompt using 'slmgr.vbs'. Alternatively, modify the registry with the new key. Ensure proper
Turn Off Fast Startup in Windows 8
2/26/2024 9:31:49 AM.
This article explains the Fast Startup feature in Windows 8, which puts the computer into a hibernation state instead of fully shutting down to facilitate faster startup times.
GridView Using Ajax ModalPopupExteder
2/20/2024 7:27:56 AM.
This article demonstrates how to create a master/detail GridView using Ajax ModalPopupExteder in ASP.NET. It covers the setup of various controls including GridView, Button, Ajax's ModalpopUpExten
UpdateProgress Control With UpdatePanel in AJAX
2/14/2024 7:21:41 AM.
In this article, we will learn AJAX (Asynchronous JavaScript and XML) for interactive web development. Utilize technologies like JavaScript, XML, and Asynchronous Calls to enhance user experience.
Show Dynamics 365 Account Contacts in Side Panel HTML Table
2/5/2024 6:33:49 AM.
In the Account Entity Form, we are showing the Account Related Contact in the Side Pane using an HTML Page. Learn how to create a JavaScript web resource to load promotions in Microsoft Dynamics 365 u
Top Things You Need to Consider When Starting a New Company Using AI in 2024
1/29/2024 5:14:07 AM.
As we enter 2024, the AI industry is brimming with potential for startups and entrepreneurs. In this article, I'll share the top things you need to consider when starting a new AI focused company.
Python Pair & Joint Plots with Matplotlib and Pandas
1/25/2024 6:52:11 AM.
This article introduces you to creating Pair Plots and Joint Plots, powerful tools for visualizing relationships and distributions in your dataset.
Side Pane with Entity Form in Dynamics 365
1/12/2024 4:40:48 AM.
In Dynamics 365, the "Side Pane" typically refers to a section or area within an entity form where related or additional information is displayed. This section might contain related records,
New Features of Rust 1.73
11/2/2023 7:18:05 AM.
Rust 1.73 is a major release that includes a number of new features and improvements, such as impl Trait syntax, generic associated types, and improved borrow checker performance. These changes make R
A Warning to Companies: Your Development Manager is Ineffective, and It’s Your Fault!
10/30/2023 3:41:26 PM.
In this article, I will weave a cautionary tale that demonstrates something I have been seeing in teams since the late 2000s. That something is companies are creating ineffective development managers.
API Development using Clean architecture and facade design pattern in Asp.Net Core Web API
10/16/2023 4:56:31 AM.
Implementing a complete solution with all the details you've requested involves a significant amount of code, and it might not be feasible to provide an exhaustive example here. However, I can giv
How to Build APIs using ASP.NET Core, a clean architectural approach, and the decorator design pattern
10/10/2023 6:32:14 AM.
Implementing the Decorator Pattern in an ASP.NET Core Web API with Clean Architecture involves structuring your application into layers and using decorators to add functionality to specific methods or
Dynamic Type In C# 4.0
9/15/2023 5:00:23 AM.
In C# 4.0 and later versions, the introduction of the dynamic type brought dynamic typing to a primarily statically-typed language. The dynamic type is designed to provide flexibility in scenarios whe
Determine the Time since the Last Boot Up in C#
9/5/2023 5:26:06 AM.
This article describes an approach used to determine the time of the last system boot up and to display the time elapsed since boot up.
Object vs Dynamic vs Var and ExpandoObject
9/4/2023 11:26:11 AM.
In C# and .NET, "Object," "dynamic," "var," and "ExpandoObject" are different ways to work with data types, each with its own characteristics and use cases. Let
Expandable Card with Animation in Jetpack Compose
8/9/2023 5:22:07 AM.
This article will explain how we can create an expanded card animation in Jetpack compose.
Best Python Machine Learning Libraries
7/27/2023 6:53:29 AM.
Python and machine learning go hand and hand. Here is a list of most popular machine learning libraries for Python.
Message Panes and Confirm Panes in Advance JFC
7/11/2023 5:32:21 AM.
Of all the options panes, the easiest option pane to create is a message pane. And Confirm pane is slightly different from the message option pane. This type of pane is used to request a decision from
Introduction to Machine Learning with Python
6/30/2023 9:57:15 AM.
This article provides a concise introduction to machine learning with Python. It explains the basic concepts of machine learning, including supervised, unsupervised, and reinforcement learning. The ar
Sending SMS Notifications with Azure Communication Services in Python
6/26/2023 6:01:50 AM.
By retrieving the phone number from the Excel sheet, we can initiate SMS notifications if the extracted registration number matches the records in the Excel database. This integration with Azure Commu
Panel Discussion: How AI Changes the World?
6/26/2023 6:01:44 AM.
In this Panel Discussion, you will learn about How AI Changes the World?
Extracting Text from Images using Azure OCR and Match in an Excel Sheet using Pandas
6/22/2023 7:00:55 AM.
The concept revolves around enabling the police to capture a snapshot of a vehicle's license plate and quickly retrieve the corresponding information from a database. In this particular scenario,
Get access to free Azure subscribtion from company email
5/3/2023 4:49:55 AM.
Once you join the company who use Azure you can use free subscription to build and run your POCs for work and personal use. In this article I am giving an instruction how to enable Free personal Enter
Efficiently Working With Arrays And Memory In C# Using Span<T>
3/8/2023 3:01:30 PM.
In this article, we will see use of Span<T> to working with array.
A Beginner's Guide To One-Hot Encoding Using Pandas' get_dummies Method
2/13/2023 10:34:11 AM.
In this article we'll learn about One-Hot Encoding using Pandas "get_dummies" Method
Open Panel On Button Click Using C# Script In Unity
1/30/2023 10:43:41 AM.
In this article, you will learn how to open a panel on a button click using C# script in Unity.
How to Automatically Set Input Field Focus When Switching Tab Panels (Source Code Included)
12/19/2022 5:19:26 AM.
Learn how to use a simple JavaScript library and intermediate CSS selectors to set focus to the desired form field as tabs are toggled.
Assessing Dates of Birth Using C#
11/11/2022 4:19:27 AM.
This article describes an approach to assessing the difference between a specified beginning and end date. The example was written in the context of comparing a birth date to a specific end date but
C# Code Performance Improvement With Span <T> Type
10/18/2022 9:28:05 AM.
A new structure Span<T> was introduced since C# 7.2. The main goal of it is to avoid allocating new objects on heap memory when working with the contiguous region of arbitrary memory requirement
Reasons To Choose Python For eCommerce Development
10/12/2022 6:04:27 AM.
Ecommerce today has done wonders and there are millions of businesses existing in this sector and other millions waiting to enter.But this growth is not just because of improved digitalization. One
How To Expand Archive For A User Or Entire Organization In M365 Via PowerShell
9/9/2022 4:44:25 AM.
In this article, you will learn how to expand archive for a user or entire organization in m365 via powershell.
Python Tip - How To Call A Function On Pandas DataFrame Column
8/2/2022 10:21:49 PM.
This article explains about how to make a function call on Pandas dataframe column.
Investment in Blockchain, Crypto, Metaverse or NFT Companies
6/20/2022 1:41:08 PM.
Watch this session to learn about Investment in Blockchain, Crypto, Metaverse, or NFT Companies
Retrieve Related Entities Data Using Expand Query With Webresource In Dynamics CRM
5/5/2022 4:12:54 AM.
In Dynamics 365 CRM, for certain requirements data needs to be retrieved from related entities. Expand query in XRM Web API. As an example, selected contact record guid was passed to fetch details of
Creating a Dynamic Excel Using HTML
4/5/2022 10:22:42 AM.
This article includes some sample programs to show how to implement various excel functionalities with the help of HTML.
Xamarin Community Toolkit - Featured Views
3/28/2022 4:00:43 AM.
In this article, you will learn about New Views/Controls offered in XCT plugin.
How To Measure Central Tendency Using Pandas In Python - Data Science
3/14/2022 2:51:15 PM.
In this article, you will learn how to measure Central Tendency using pandas in Python.
How To Support Undo And Redo In Components Based On The Jtextcomponent Class
3/11/2022 3:17:11 PM.
In this article, you will learn how to support undo and redo in components based on the jtextcomponent class.
Useful Python Tips
2/28/2022 1:49:29 PM.
The article explains a few of the useful Python tips
Scrolling News Web Control using ASP.Net and C#
2/23/2022 10:25:04 AM.
This article shows to create scrolling news web control using ASP.Net and C#, simple to understand and can be used as a control in any of the ASP.Net page.
Pandas with D-Tale
1/25/2022 7:53:37 PM.
The article explains how to work with D-Tale library with Pandas
Introduction To PySpark
1/17/2022 10:57:06 AM.
The article explains what PySpark is and fundamental differences with Pandas and how to install and work with it.
List Rows Based On Expand Query In Power Automate
1/13/2022 4:10:36 PM.
In order to get details of related entity for the selected entity without separate retrieve call we can leverage Expand Query .As a business scenario for the same vaccination use case extracting detai
Pandas - Useful DataFrame functions
1/8/2022 4:11:26 PM.
Article explains about functions which are useful in knowing the data we are analyzing
Voyager An Admin Panel For Your Laravel Application
1/7/2022 5:50:44 AM.
Voyager is a free and open-source pre-build admin panel for the Laravel application.
Groupby Function In Pandas
1/5/2022 4:31:09 AM.
This article explains, how groupby works in Pandas.
Handling DateTime In Pandas
1/1/2022 4:50:42 AM.
In this article explains how to work with DateTime in Pandas.
Add Temporary Row Into Table Using JQuery Panel Slider
12/31/2021 11:42:03 AM.
Add Temporary Row Into Table Using JQuery Panel Slider.
Pandas - Investigating Pipe Function
12/31/2021 7:00:13 AM.
The article explains the pipe function in Pandas, the ‘pipe’ function is a very useful function through which we can chain multiple processing operations into one.
Pandas Aggregation Functions
12/30/2021 7:29:35 AM.
The article explains how aggregation works in Pandas, which help readers when they apply Grouping,
Pandas - Apply Vs Applymap
12/28/2021 4:09:53 AM.
Article explains the difference between apply and applymap function in Pandas pragmatically.
Pandas - Filtering DataFrame
12/23/2021 5:47:53 AM.
Article describes various options for filtering the DataFrame in Pandas
Pandas: Sorting DataFrame
12/21/2021 4:20:04 AM.
The article explains how to perform sorting on DataFrame
Using Span<T> Instead Of List<T>
12/8/2021 3:16:58 PM.
In this article, you will learn how to use Span<T> instead of List<T>.
Understanding Pandas With Examples
11/10/2021 12:36:05 PM.
In this article, you will learn about pandas with Examples. Pandas stands for Python Data Analysis Library, mainly used for data manipulation and data analysis, built over python programming lang
Rockin' The Code World with dotNetDave: The Agile Show Panel - Episode 40
10/17/2021 2:29:25 PM.
Join us with Mark Davis, Woody Pewitt, Woody Zuill, and Rod Nazaire on Rockin' The Code World with dotNetDave - a weekly show to learn & live Q&A on .NET and other programming technologies
Azure Meeting Bot To Capture Meeting Participants Information
8/30/2021 7:06:25 AM.
In this article, we will learn about how to create Azure Meeting Bot which can join a team meeting via Power Automate and can log participant's information.
How Azure Can Help Your Company Expand In Multiple Regions (5 Of 5)
7/29/2021 6:17:40 AM.
A previous article guided you through setting up your repository. You did this by creating multiple branches that reflect the GitFlow model and protecting those branch use policies. Then, I gave you a
How Azure Can Help Your Company Expand In Multiple Regions (4 Of 5)
7/22/2021 4:44:12 AM.
In this article, you will learn how Azure can help your company expand in multiple regions.
How Azure Can Help Your Company Expand In Multiple Regions (3 Of 5)
7/21/2021 12:51:00 PM.
In today’s article, I will move forward and creating an App Service resource, replicating it in North Europe, and setting up an Azure Front Door resource that will load-balance and forward the HTTP r
How Azure Can Help Your Company Expand In Multiple Regions (2 Of 5)
7/19/2021 2:26:46 PM.
In today’s article, I am going to start guiding you by implementing the proposed architecture by creating an Azure SQL database resource in our main company’s database in Montana, replicating it in Eu
How Azure Can Help Your Company Expand In Multiple Regions - Part I
7/3/2021 6:04:53 AM.
This month, I want to do something different. Typically, I discuss standalone topics related to an overall theme without really connecting each of them. But this time, I will guide you through a real-
When Are Companies Going To Learn How Software Development Works?
7/1/2021 2:20:14 PM.
In this article, you will learn when are companies going to learn how Software Development Works?
Pandas In Python
6/29/2021 3:39:06 PM.
In this article, you will learn how to explain Pandas and their basic operations.
Implementation Of ListPicker And Associated FieldPicker In Property Pane Of SPFx⚓
6/15/2021 2:40:23 PM.
In this article, you will learn how to implement ListPicker and Associated FieldPicker in Property Pane of SPFx?.
Hosting A Website Using cPanel
6/7/2021 3:04:05 PM.
In this article, we will discuss hosting a website using cPanel.
Multiple Expand And Collapse Rows In A Power Apps Canvas App Gallery
6/3/2021 12:43:02 PM.
In this article, you will learn how to expand and collapse multiple rows using PowerApps nested Gallery.