9

VB.Net を使用して、マップされたすべてのネットワーク ディレクトリ/ドライブをドロップダウン リストに表示できますか?

ゴーグルしましたが、役立つものが見つかりません..

4

2 に答える 2

7

ドロップダウンリストに追加するには:

 Private Sub TestCase1()
        Dim drive As System.IO.DriveInfo

    For Each drive In System.IO.DriveInfo.GetDrives()
        If drive.DriveType = IO.DriveType.Network Then
            DropDownList1.Items.Add(drive.Name)
        End If
    Next
End Sub

これは私がC#でそれを行う方法です:

private void TestCase1()
    {

        //Recurse through the drives on this system and add them to the new DropDownList DropDownList1 if they are a network drive.
        foreach(System.IO.DriveInfo drive in System.IO.DriveInfo.GetDrives())
        {
            //This check ensures that drive is a network drive.
            if (drive.DriveType == System.IO.DriveType.Network)
            {
                //If the drive is a network drive we add it here to a combobox.
                DropDownList1.Items.Add(drive);
            }
        }
    }
于 2012-10-02T11:29:48.957 に答える
1

マイクは素晴らしい答えを持っています。クリックして開くたびにサイズが大きくならないように、何かを追加します。言いたいことは....VBのコンボボックス。

    Dim drive As System.IO.DriveInfo

If DropDownList1.Count < 1

     For Each drive In System.IO.DriveInfo.GetDrives()

         If drive.DriveType = IO.DriveType.Network Then

             DropDownList1.Items.Add(drive.Name)

         End If
     Next
End If
于 2015-09-29T18:01:44.173 に答える