Friday, 16 August 2013

Convert this tow line code from .net 3.5 to .net1.1

Convert this tow line code from .net 3.5 to .net1.1

I have this following C#.net3.5 code, and I want write this code in VB.net
1.1
I can convert c# to vb, but I can't convert convert .net3.5 to .net1.1,
because in .net 1.1 we haven't these properties:
(RowCount, CurrentRow, Cells[index].value)
please somebody convert that for me. Thanks <3
code:
if (DataGridView1.RowCount > 0)
{
TextBox1.Text = DataGridView1.CurrentRow.Cells[0].Value.ToString();
}
and in the end, I am asking not advice me to not use .net1.1 :|

No comments:

Post a Comment