Search results for query: *

  1. F

    use sqldatasource for sqldatareader

    Of cause. Public Sub ReadMyData(myConnString As String) Dim mySelectQuery As String = "SELECT OrderID, CustomerID FROM Orders" Dim myConnection As New SqlConnection(myConnString) Dim myCommand As New SqlCommand(mySelectQuery, myConnection) myConnection.Open() Dim myReader As...
  2. F

    Datagrid IsSelected Question

    I've got a problem on Datagrid. I am using IsSelected to find which rows is selected and get its value. When I havn't sorted any column in datagrid, DataGrid.IsSelected works normally. However, It does not work after a column is sorted. Is there have any problem or limitation ? My code is here...
Back
Top