Search results for query: *

  1. R

    phone dialler

    how can i create a windows application which can be used to make calls to different landline phone numbers ... eg: a telemarketing application
  2. R

    data access applicationblock issue

    dear ppl im workin with enterprise library 1.1 june 2005 release application blocks..,vb.net2003 and sql server2000. but when ever i execute an application that is configured to use data acess application block..i get the following exception... An unhandled exception of type...
  3. R

    binding a key to a button

    hi all,i would love to know how can we bind a keyboard button (eg:delete) to a button in my form,so that when i press delete button on my keyboard it should execute the code i written in click event of the button in my form...
  4. R

    combo box problem

    hi all ,currently iam workin with the concept of dynamic binding of comboboxes, here is my problemi have a no of comboboxes which has been filled dynamically during there GOTFOCUS event.now i have created a data table which will hold the present selcted data from each of these comboboxes and try...
  5. R

    binding multiple comboboxes at form loadtime

    hi all im doin a project in which i have to use a form which contain a no of comboboxesall of these must be binded dynamically (from sql server db) during the form load event.i have done it with using a no of dataadpters and datasets,but i would love to know how can i do it in a more efficient...
  6. R

    dynamic data access using combobox

    hai all im doin a project in vb.net 2003 with sql support in which i have to use dynamic binding with combobox my code is as follows:ds = oservices.getdataset("select DEALERNAME from adealer") Me.dealercombo.DataSource = ds.Tables(0) Me.dealercombo.DisplayMember = "adealer.DEALERNAME"here...
Back
Top