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 Win32
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sanjeeb Lenka (12)
Mohammad Elsheimy (7)
Pritam Zope (4)
Kirtan Patel (4)
John O Donnell (2)
Rafal Wozniak (1)
Scott Lysle (1)
Sam Hobbs (1)
Mahesh Chand (1)
john donell (1)
Supreet Tare (1)
Abhishek Sur (1)
Tushar agarwal (1)
Vishal Kulkarni (1)
Hector Hugo Alpizar Cesena (1)
Manisha Mehta (1)
Mickey Marshall (1)
Hiren Soni (1)
Santhi Maadhaven (1)
shrijeet (1)
Mokhtar B (1)
Chandra Hundigam (1)
Ajit Mungale (1)
Vijay Cinnakonda (1)
kas_atd1 (1)
Santhosh Kumar R V (1)
Saumit Sheth (1)
Related resources for Win32
No resource found
Programmatic Installation and Configuration of Microsoft Loopback Adapter
3/4/2024 6:24:06 AM.
This article will show how to programmatically install, configure and manage virtual network adapters such as Microsoft Loopback Adapter using Devcon tool, WMI and netsh command.
Running a Web Site in Kiosk Mode with C#
9/4/2023 12:02:44 PM.
This article addresses a simple approach to supporting the display of a web site in kiosk mode using a simple win forms application.
Changing Display Settings Programmatically
8/29/2023 7:10:21 AM.
Learn how to change display settings (resolution, bits, rotation, etc.) via C# and Win32 API.
The Basics of Creating a Static Library Using Visual C++
5/26/2023 9:05:21 AM.
Explains the basics of creating a static library, with explanations, and how to use a static library.
Working with Windows Registry
5/5/2022 6:36:44 AM.
In this small tutorial, I'll show you how to read, write and delete Windows Registry.
Get the Desktop Details of Your Windows Operating System in ASP.Net
4/2/2021 11:01:46 AM.
This article describes how to get the Desktop details of User in your System . Here I will get the information from the Win32_Desktop class.
Get All Intranet User Details in ASP.Net
3/26/2021 7:17:24 AM.
This article describes how to get the details of users present in a intranet. here i will get these info from Win32_UserAccount class.
Get the Details of Your Windows Operating System in ASP.Net
3/9/2021 7:45:15 AM.
This article describes how to get the details of your Windows Operating System. Here I will get the information from the Win32_OperatingSystem class.
Get the BIOS Details of Your System in ASP.Net
3/2/2021 8:22:07 AM.
This article describes how to get the BIOS details of your System . Here I will get the information from the Win32_BIOS class.
Programmatically Swapping Mouse Buttons
10/28/2020 1:27:51 AM.
In this article we will learn how to swap mouse buttons programmatically - to make the left button acts as the right and vice versa.
Printing Directly to the Printer
5/21/2020 4:45:47 AM.
Using this code enables you to print directly to the printer using WIN32 api calls and therefore should enable you to print at maximum speed rather than relying in the Windows Printing subsystems.
Getting Started With OpenGL Win32
1/27/2018 7:04:44 PM.
To get started with OpenGL using GLUT, read this article.
Creating Custom Window In Win32
5/31/2016 2:30:29 AM.
In this article we will create a black colored customized window in Win32 API-C/C++.
Getting Started With Windows Programming In C/C++: Key Events
5/24/2016 5:57:57 AM.
In this article, we will see how to use key events for a window in Win32.
Getting Started With Windows Programming In C/C++ : Basic Drawing
5/14/2016 2:58:15 PM.
In this article we will draw some basics shapes using windows programming in C/C++.
Fixing Win32 Unhandled Exception in Silverlight Web App
5/3/2014 12:12:09 PM.
This article describes diagnosing and fixing a Win32 Unhandled Exception in a Silverlight Web App.
Creating a Sound Recorder in C and C#
2/4/2014 3:25:18 PM.
In this article we will learn how to record audio and play sound files in C and C#.
Handling Deadlock in Code Using Mutex
2/1/2014 12:09:34 PM.
This article exlains what a mutex is and how to use them.
Get the Registry Details of Your System Using WMI Class
9/23/2013 1:41:10 PM.
This article describes how to get the Registry details of your System Using a WMI Class. Here I will get the information from the Win32_Registry class.
Get the Time and Date Details of Your System Using WMI Class
9/18/2013 3:21:24 PM.
This article describes how to get the Time and Date details of your System Using a WMI Class. Here I will get the information from the Win32_CurrentTime class.
Get the Processor Details of Your System in Windows Form
9/13/2013 11:41:57 AM.
This article describes how to get the Processor details of your System. Here I will get the information from the Win32_Processor class.
Get the Installed Software Details of Your System in Windows Form
9/7/2013 1:30:10 PM.
This article explains how to get the installed Software details of your system. Here I will get the information from the Win32_Product class.
Get the Motherboard Details of Your System in Windows Form
8/30/2013 8:17:58 AM.
This article describes how to get the Motherboard details of your System . Here I will get the information from the Win32_MotherboardDevice class.
Get the Pointing Device (Mouse) Details of Your System in Windows Form
8/26/2013 6:08:52 AM.
This article describes how to get the Pointing Device (Mouse) details of your System. Here I will get the information from the Win32_PointingDevice class.
Get the Keyboard Details of Your System in Windows Form
8/23/2013 1:30:37 PM.
This article describes how to get the Keyboard details of your System . Here I will get the information from the Win32_Keyboard class.
Memory Management in .NET
8/23/2013 12:42:24 PM.
This tutorial describes Memory Management in .NET.
Get the Battery Details of Your System in Windows Form
8/22/2013 1:11:24 PM.
This article describes how to get the battery details of your System . Here I will get the information from the Win32_Battery class.
Calling WinINet API from VB.NET : Part 2
12/1/2012 4:19:36 AM.
This is an API which connects with the remote server . After connecting it brings the files to your local disk without the “Save to Disk” dialogue box . Please contact the author for any problems.
Printing Directly to the Printer in VB.NET
11/10/2012 3:40:10 AM.
Using this code enables you to print directly to the printer using WIN32 api calls and therefore should enable you to print at maximum speed rather than relying in the Windows Printing subsystems. Additionally I have added code to show how to send PCL codes to the printer.
Animate with Pocket PC in VB.NET
11/10/2012 3:11:14 AM.
This article discusses programming for a Pocket PC in general. If you are lucky enough to get the Smart Devices Extensions you will finally be able to target devices.
How to Create and Implement Static Library in VC++
9/30/2012 2:26:40 AM.
In this article I am going to explain how to create and implement a static library in VC++.
Tutorial: Capturing and Running IE Instances in a Windows control
9/29/2012 6:16:03 AM.
In this article we are going to study how to find the running instances of Internet Explorer on your machine.
Checking if User is connected to Internet or Not using Win32 API and C#
9/29/2012 5:19:52 AM.
Article Checking if User is connected to Internet or Not using Win32 API and C#
Locating Windows Owned by Other Process and Changing Window Title in C#
8/11/2012 12:45:19 PM.
Manipulate another process's windows from your program using the Win32 API.
Moving a Form without the Title Bar
5/13/2012 5:57:37 AM.
In this article, learn how to to allow the user to move the form without its title bar.
Gapless Audio CD Recording with VB or C Sharp
12/5/2011 1:45:10 PM.
I wrote this because I needed it. Being a card carrying member of Old Timers Associated, I have a lot of beautiful music on vinyl. Being a card carrying member of Poor Folks Associated, I can’t afford to re-buy all of them on CD.
Clearing the Console Screen using API
2/11/2011 12:42:03 AM.
Learn how to clear the Console screen using Win32 API calls. Also learn additional techniques like how to clear a specific portion of the screen or to move it.
C# and Win32_PortConnector Class
8/16/2010 5:06:02 AM.
In this article you will learn how to use Different available port connector in a computer system using C# and Win32_PortConnector Class.
Get Laptop Battery Status using C# and WMI
8/8/2010 12:51:48 PM.
Article about how to get status of laptop battery
Getting CD/DVD Drive capabilities using WMI and C#
8/4/2010 11:16:00 PM.
article about how to Get Different capabilities of CD_Drive like read/write using WMI
Hard Links vs. Soft Links
4/7/2010 12:30:08 AM.
This article talks about hard links and soft links; two of the nice features of NTFS file system.
Programmatically Turning on the Screen Saver
10/8/2009 12:42:40 PM.
Learn how to programmatically turn on the screen saver via Win32 API and C#.
Accessing Registry using ASP.NET
5/27/2009 1:44:46 AM.
In this article, we will see how to access the registry using ASP.NET. We will see one simple example to check where Visual Studio installed on our machine.
Working with Win32 API in .NET
2/3/2006 5:01:00 AM.
Windows exposes lots of functionality in the form of Win32 API. Using these API you can perform direct operation in windows, which increases performance of your application.
Time Ticker2
2/2/2006 5:34:01 AM.
Microsoft had made lot of Changes for Beta2, some of the changes are old Namespace such as System.WinForms modified to System.Windows.Forms. In addition no. of new Namespaces like Microsoft.CSharp, Microsoft.JScript, Microsoft.Vsa etc...
Kill an Application with System Menu using C#
1/11/2006 5:31:20 AM.
This article uses the Windows API’s to kill the application running under windows environment.
C# and API
12/30/2005 1:50:35 AM.
API (Application Programming Interface) is a set of commands, which interfaces the programs with the processors.
DigitizeAny - A .NET Windows Digitization Tool
12/26/2005 4:33:53 AM.
DigitizeAny uses Win32 API calls to obtain the coordinates of the cursor and then translates to the graph coordinates once set. Since a mouse click would essentially bring to focus the window where it is pointed to, this tool uses the key event to capture the coordinates of the cursor.
Coloring the Console in C#
12/26/2005 12:57:22 AM.
When working with console applications in C#, you always see a black and white screen. What if we want to change the background color of the console? We can change the foreground and background color of our console application by using win32 API SetConsoleTextAttribute().
How to work with Assemblies in InstallShield Developer 7.0
12/24/2005 12:40:44 AM.
InstallShield Developer 7.0 is the best solution for providing the very easy user interface to author installations having both .NET and side by side components. This article is a step by step walk through of how to create a deployment project using InstallShield.
Getting Official DayTime using NIST TimeServer
12/7/2005 3:25:40 AM.
This program shows how to create a simple socket to a NIST timeserver (Port 13) and using the Daytime Protocol, gets the official time.