Search results for query: *

  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

    thanks a lot for the info
  3. K

    Executing Qry on Dataset

    Thanks you very much , can i give the select list and the filter as well. i mean the entire SQL statment. it will be great if a code sample is give.:D
  4. 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...
  5. 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...
  6. K

    Using SendMessage Lib

    Hi John thanks, and if i need to close how do i do it.
  7. 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...
  8. K

    Selectionchnaged vs lostfocus event

    Hi John thanks for replying. that what been doing . when you have to many contrls and code its to much to handle it. i was looking for a better way to handle it.
  9. 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