Search results for query: *

  • Users: khalik
  • Content: Threads
  • Order by date
  1. K

    Problem with Same Datatable and multiple Combobox

    Hi Guys I have a same Datatable bind to multiple combobox. here i have code. DDDCol1.DataSource = MyDt DDDCol1.DisplayMember = MyDt.Columns(1).ToString DDDCol1.ValueMember = MyDt.Columns(0).ToString DDDCol.DataSource = MyDt DDDCol.DisplayMember = MyDt.Columns(1).ToString...
  2. K

    Executing Qry on Dataset

    hi Gurus I am planing to develop a offline custom reporting application. i have the entire data on the xml file and from which i have my dataset. the user will have a choice of select any fields and give any filter conditions. and i should be able to display according. i have a logic of...
  3. K

    Problem with Listview sorting

    Hi All i have a listview control in my application where i display the search results. to allow sorting i have the following procedure Public Function Compare(ByVal x As Object, ByVal y As Object) _ As Integer Implements System.Collections.IComparer.Compare Dim lv1 As ListViewItem = x Dim lv2...
  4. K

    Using SendMessage Lib

    Hi Guys I need find a windows do some activity and close it. from my windows application. the declaration i have Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As any) As Long the lParam...
  5. K

    Selectionchnaged vs lostfocus event

    Hi Guys I have a choice to make in my windows formi have several comboxs. based on one select the other fill in. and like wise. if i choose Selection changed event when we bind the datasource it fires too.which in turn is causing issues. to handle it we had diffrent way. remving handlers...
Back
Top