-1

こんにちは、私はこのコードをオンラインで見つけました。しかし、それは私が慣れていないc#で書かれています。これを vb.net に変換できる多言語プログラマーはいますか? 私はあなたが与えることができるどんな助けにも感謝します!

foreach (DataGridViewColumn clm in grdView.Columns)
{
Bool FoundData = false;
foreach (DataGridViewRow row in grdView.Rows)
{
     if (row.Cells[clm.Index].Value.ToString() != string.Empty)
     {
         FoundData = true;
         break;
     }
}
if (!FoundData)
{
     grdView.Columns[clm.Index].Visible = false;
}
}
4

3 に答える 3

5

これを試して:

For Each clm As DataGridViewColumn In grdView.Columns
    Dim FoundData As Boolean = False
    For Each row As DataGridViewRow In grdView.Rows
        If row.Cells(clm.Index).Value.ToString() <> String.Empty Then
            FoundData = True
            Exit For
        End If
    Next
    If Not FoundData Then
        grdView.Columns(clm.Index).Visible = False
    End If
Next
于 2013-08-08T15:13:02.700 に答える
0

このツールを試してください。将来の変換に役立つかもしれません: http://www.developerfusion.com/tools/convert/vb-to-csharp/

于 2013-08-08T21:52:28.293 に答える