Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (1)
Sam Hobbs(1)
Rafal Wozniak(1)
Mohan Kumar(1)
shrijeet (1)
Chandra Hundigam(1)
Resources
No resource found
SignalR to enable real-time communication between clients and the server
Sep 04, 2023.
SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll create a simple chat application where clients can send and receive messages in real-time.
Clicking a Button in Another Application
Dec 12, 2012.
This article provides a simple sample of an application that clicks a button in another application.
Usage of system hotkeys and window messages in C#
Jun 11, 2010.
This article will show how to register a system hotkey for a currently running application and how to handle window messages for altering controls functionality or adding new functions to them.
Find And Close The Window Using WIN API
Feb 01, 2008.
This article explains how to find and close the window using Win API. To find and close a window using the Windows API in a C# application, you can use the FindWindow function to locate the window by its title or class name, and then use the SendMessage function with the WM_SYSCOMMAND and SC_CLOSE parameters to send a close command to the window. Here's a step-by-step description.
Working with Win32 API in .NET
Nov 21, 2002.
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.
Kill an Application with System Menu using C#
Nov 20, 2002.
This article uses the Windows API’s to kill the application running under windows environment.