or
Private Sub findCustomer(Optional ByVal s As String = Nothing) Dim cs = From c In cA.Select(False) Where _ IIf(IsNothing(s), 1 = 1, c.cLastName Like s & "*") _ Select New With _ { _ .Name = c.cLastName & ", " & c.cFirstName, _ .Phone = c.cPhoneHome & " / " & c.cPhoneWork, _ .DOB = c.cDateOfBirth _ } _totalCount = cs.Count _currentCount = 0 loadCustomers() End SubI have Form include RadRibbonBar, RadGridView (some data for test).
I have problem about change row in GridView. When I Click on GridView for change row and show one message (RadMessageBox), Then RibbonBar can not effect by mouse hover. But Change row by Keyboard is ok
Please help me!
Thanks