Can any c# programmer expert help me to convert this vb.net code to c# code
Dim MyItem = ListViewBookRecord.Items.Add(dr("ID".ToString))
With MyItem
.SubItems.Add(dr("bookname".ToString))
.SubItems.Add(dr("authorname".ToString))
.SubItems.Add(dr("booktype".ToString))
.SubItems.Add(dr("price".ToString))
End With
Dim SaveOrEdit As String = ""
Dim Apppath = Application.StartupPath
Dim DatabasePath = Apppath & "\..\bookrecord.mdb;"
Dim ConnString As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & DatabasePath & _
"Persist Security Info=False"
|
Go4Expert Founder
|
![]() |
| 3Jun2006,22:47 | #2 |
|
I am not sure what is ListViewBookRecord but the C# code would be like
Code: C#
|
|
Contributor
|
|
| 4Jun2006,08:27 | #3 |
|
It give me the error:
"The type or namespace name 'ReturnTypeOfAddMethod' could not be found (are you missing a using directive or an assembly reference?)" |
|
Go4Expert Founder
|
![]() |
| 4Jun2006,22:05 | #4 |
|
I mentioned the reason for the above error also.
Quote:
Originally Posted by shabbir |

