Search results for query: *

  1. C

    Posting All of My Code to Get Help with an Error.

    Please read also this. I modifed Public Sub doDelete() Dim bm As BindingManagerBase = Me.DataGrid1.BindingContext(Me.DataGrid1.DataSource, Me.DataGrid1.DataMember) Dim dr As DataRow = CType(bm.Current, DataRowView).Row Try dr.Delete()...
  2. C

    Posting All of My Code to Get Help with an Error.

    I get the following error. Public Sub doDelete() Dim bm As BindingManagerBase = Me.DataGrid1.BindingContext(Me.DataGrid1.DataSource, Me.DataGrid1.DataMember) Dim dr As DataRow = CType(bm.Current, DataRowView).Row Try dr.Delete()...
  3. C

    Need help on getting values for parameters

    I have the following subroutine: #Region " DataGrid MouseUp Event " Private Sub highLightRow(ByVal sender As Object, ByVal e As MouseEventArgs) Dim pt = New Point(e.X, e.Y) Dim grd As DataGrid = CType(sender, DataGrid) Dim hit As DataGrid.HitTestInfo =...
Back
Top