Click here to Skip to main content
15,880,427 members
Articles / Programming Languages / C#
Article

A C# Server Drop-down Control

Rate me:
Please Sign up or sign in to vote.
4.13/5 (5 votes)
29 May 2002 138.4K   2.2K   44   15
A C# usercontrol that enumerates servers and displays the list in a drop-down list
  • Download source files - 6 Kb
  • Download demo project - 7 Kb
  • Sample Image - ServerDropDown.jpg

    Introduction

    The sample code below shows the API's and code necessary to enumerate the servers on a domain. The ServerType enum determines the filter for the NetServerEnum call.

    The tricky part (I found) was using the unsafe keyword to actually get the pointer to the array of structures, and then marshalling the pointers to strings (server names) back into managed code. I spent a couple of hours trying to get this to work...but the frustration has paid off.

    The demo project contains a usercontrol that implements the NetServerEnum API. The user of the control then only has to set the ServerType property, and the drop-down will be populated.

    public enum ServerTypeEnum
    {
        steNone = 0,
        steWorkstation = 0x00000001,
        steAll = 0x00000002,
        steSQLServer = 0x00000004,
        steDomainController = 0x00000008
    }
    
    [sysimport(dll="netapi32.dll")]
    private static extern void NetApiBufferFree([marshal(UnmanagedType.U4)]uint bufptr);
    
    [sysimport(dll="netapi32.dll")] 
    unsafe private static extern uint NetServerEnum([marshal(UnmanagedType.LPWStr)] string ServerName, 
            uint level,
            [marshal(UnmanagedType.LPVoid)]uint* bufptr,
            uint prefmaxlen,
            ref uint entriesread,
            ref uint totalentries,
            uint servertype,
            [marshal(UnmanagedType.LPWStr)] string domain, 
            uint resume_handle);
    
    [System.Runtime.InteropServices.StructLayoutAttribute (LayoutKind.Sequential, CharSet=CharSet.Auto)]
    public struct SERVER_INFO_101 
    { 
        public int dwPlatformID; 
        public int lpszServerName;
        public int dwVersionMajor; 
        public int dwVersionMinor; 
        public int dwType; 
        public int lpszComment;
    }
    
    protected void GetServers()
    {
        string servername = null;
        string domain = "YourDomainName"; 
        uint level = 101, prefmaxlen = 0xFFFFFFFF, entriesread = 0, 
             totalentries = 0, resume_handle = 0; 
        
        cboServers.Items.Clear();
    
        unsafe
        {    
            //get a pointer to the server info structure
            SERVER_INFO_101* si = null;
            SERVER_INFO_101* pTmp;    //temp pointer for use when looping 
                                      //through returned (pointer) array
    
            //this api requires a pointer to a byte array...
            //which is actually a pointer to an array of SERVER_INFO_101 structures
            //If the domain parameter is NULL, the primary domain is implied. 
            uint nRes = NetServerEnum(servername, level, 
                    (uint *) &si, prefmaxlen, ref entriesread, ref totalentries, 
                    (uint)_ServerType, domain, resume_handle);
                    
            if (nRes == 0)
            {
                if ((pTmp = si) != null)    //assign the temp pointer 
                {
                    for (int i = 0; i < entriesread; i++)    //loop through the entries
                    {
                        try
                        {
                            //the lpszServerName member of the structure contains a pointer to 
                            //the server name string...marshal the pointer from unmanaged
                            //memory to a managed string
                            cboServers.Items.Add(Marshal.PtrToStringAuto(pTmp->lpszServerName));
                        }
                        catch (Exception e)
                        {
                            MessageBox.Show(e.Message) ;
                        }
                        pTmp++;        // increment the pointer...essentially move to the next 
                                       // structure in the array
                    }
                }
            }
            NetApiBufferFree((uint)si);
        }             
    }

    History

    30 May 2002 - updated source files

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    United States United States
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    GeneralWhy cant you write Pin
    kaasee6-May-10 2:29
    kaasee6-May-10 2:29 
    GeneralTranslation Pin
    kaasee6-May-10 2:23
    kaasee6-May-10 2:23 
    QuestionDatabases servers Pin
    Thiago Berti22-Mar-07 4:50
    Thiago Berti22-Mar-07 4:50 
    GeneralI don't convert project... Pin
    Begin Programing7-Sep-06 16:50
    Begin Programing7-Sep-06 16:50 
    GeneralI need Help Pin
    CumhurKose12-Nov-04 1:05
    CumhurKose12-Nov-04 1:05 
    GeneralTranslation to VB.NET Pin
    DarkKnightWI9-Aug-04 3:11
    DarkKnightWI9-Aug-04 3:11 
    GeneralRe: Translation to VB.NET Pin
    Damien Guard4-Nov-04 6:00
    Damien Guard4-Nov-04 6:00 
    You do not need to translate C# components to VB.NET and vice versa providing they use just the CLS of .Net. This component almost does, see the end for the correction.

    Unpack the zip to your system, and add the project file contained within it to your solution and compile.

    Now go to your VB WinForms project within the solution, expand references and choose this components project from the project tab.

    It just so happens there is a slight oversight in this component that prevents it working. Open ServerList.cs and change the line

    public enum ServerTypeEnum : uint

    to

    public enum ServerTypeEnum : long

    As uint is not supported by the CLS.

    [)amien
    Generalkaaa-rist! Pin
    3-Jun-02 11:14
    suss3-Jun-02 11:14 
    GeneralRe: kaaa-rist! Pin
    James T. Johnson3-Jun-02 11:54
    James T. Johnson3-Jun-02 11:54 
    Generaltranslation to Final Visual Studio Pin
    dumbatz1-Apr-02 13:10
    dumbatz1-Apr-02 13:10 
    GeneralRe: translation to Final Visual Studio Pin
    shilin22-May-02 7:33
    shilin22-May-02 7:33 
    GeneralRe: translation to Final Visual Studio Pin
    kaasee6-May-10 2:31
    kaasee6-May-10 2:31 
    GeneralBeta2 version of the "C# Server Drop-down Control" Pin
    shilin22-Nov-01 7:20
    shilin22-Nov-01 7:20 
    GeneralRe: Beta2 version of the "C# Server Drop-down Control" Pin
    rbrock038122-Mar-07 11:51
    rbrock038122-Mar-07 11:51 
    GeneralCrazy Win32 API function call Pin
    2-Mar-01 6:19
    suss2-Mar-01 6:19 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.