Search results

  1. A

    Combobox Selection

    I have a combo box with like thousand records. Now what exactly i want to do is to determine that there is a selection made. that user has either made a selection by using mouse or by pressing enter from keyboard. depending on that i want to load values in another combo and load values into...
  2. A

    Runtime Error 3146

    Runtime Error 3146 ODBC -- call failed this is the error I get when executing the following code. Dim db As DAO.Database Set db = DBEngine(0)(0) Dim strSQL As String strSQL = "select TOP 1 * from dbo_Logins where ContactID=" & c_id Dim rs As...
  3. A

    Run-time error '2467':

    I have an application which I did in 2003 version and then converted it for 2002 version. Everything works fine in 2003 but when I open in Access XP 2002 version then I get the following error. Run-time error '2467': The expression you entered refers to an object that is closed or doesn't...
  4. A

    Access 2003 and 2002

    I have an application which I did in Access 2003 and it uses "Microsoft Access 11.0 Object Library" and also "Microsoft Outlook 11.0 Object Library". I have converted it to 2002 format from database utilities where it says (2002-2003). Now when this application is opened in Access 2002 the...
  5. A

    Auto Selection of ComboBox

    Let me expalin the scenario. I have two combo boxes on a form the second one gets updated on any selection change made in the first one i.e. onChange event. lets say first one is Company and the second is employees. When I select a company 'ABC' the employees names are loaded in second and I...
Top Bottom