CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: batskee

Search: Search took 0.02 seconds.

  1. Re: VB.NET: How to retrieve a field value from a data source binding?

    i finally got it to work, and i'd like to share it with you guys. :)



    Dim myRowView As DataRowView = ClientsBindingSource.Current

    MessageBox.Show(myRowView.Item("ClientName"))
  2. VB.NET: How to retrieve a field value from a data source binding?

    Hi everyone!

    I'm a VB.NET newbie, and i'm currently building a .NET application.

    in VB6 (Data1 = Data control):
    MsgBox "ClientName is: " & Data1.Recordset("LastName")

    in Delphi:...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured