Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9137299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:05:12+00:00 2026-06-17T09:05:12+00:00

I need to develop an winform app which reads attached cameras and microphones names

  • 0

I need to develop an winform app which reads attached cameras and microphones names from the system and displays it with radioboxes so that the user can select an attached microphone and camera and proceed to the next form where video conference happens….!!

But, I am not able to read attached hardware names of the system..Please suggest some way..!!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:05:13+00:00Added an answer on June 17, 2026 at 9:05 am

    There’s an article on CodeProject that might help – Retrieving Hardware Information in C#:

    This article will explain how to use WMI to access hardware information and properties. It will not set properties of hardware, only retrieve information about it.

    WMI refers to Windows Management Instrumentation, and the majority of the code will use the System.Management namespace.

    This sample I wrote will display a list of sound devices on your PC:

    using System;
    using System.Management;
    using System.Management.Instrumentation;
    
    namespace Test {
        class TestClass {
            [STAThread]
            static void Main(string[] args) {
                Console.WriteLine("Win32 SoundDevices\r\n===============================");
                ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * from Win32_SoundDevice");
                foreach (ManagementObject soundDevice in searcher.Get()) {
                    Console.WriteLine("Device found: {0}\n", soundDevice.ToString());
                }
                Console.WriteLine("Search complete.");
                Console.Read();
            }
        }
    }
    

    You’ll want to look at WMI Query Samples to help you figure out how to find the devices you’re looking to identify. Microsoft also has a WMI Code Creator utility that might help:

    The WMI Code Creator tool allows you to generate VBScript, C#, and VB .NET code that uses WMI to complete a management task such as querying for management data, executing a method from a WMI class, or receiving event notifications using WMI.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to develop an app that reads info from google calendar on Android.
I need to develop an app that runs side by side with a django-app.
I need to develop a mobile app that is capable of using the device's
I need to develop a facebook app which runs inside a page tab. Only
I need to develop method that extracts the meaning from a string for a
I need to develop a test program, which sends and recieves data from terminal
I need to develop a CRM system which will allow users to have a
I need to develop a winform with a treeview menu, localizable and with different
I need to develop an application on Android platform that enables a client to
I need to develop a service that will perform login through several login providers

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.