Search results

  1. J

    SQL Query giving different results in VBA and Access

    Hi , I am using Access Application with Orcale Db as backend and this application is already in production. The problem is.. USers Complained that the system is slow, this is because there is refresh (requery) for each Insert (When they click submit, that particular record is inserted and then...
  2. J

    The command or action Show all records isn't available now error!

    Hi, I am getting this error "The command or action 'Show all records' isn't available now", i get this when i try to do DoCmd.ShowAllRecords DoCmd.GoToControl ("ID") DoCmd.FindRecord Me!Text116 I am trying to do search on ID..but i get this error and i dont know how to proceed.. P.S...
  3. J

    How to format a field on a form as date ?

    I am using ODBC with oracle tables.. My table has columns startdate and end date which are of type varchar(backend tables)..but when i display it in form it should display it as mm/dd/yyyy format, i tried setting format property as Short date but that doesnt work as my form is based on a...
  4. J

    How to suppress confirmation messages when inserting or del recordsin backend tables?

    When i try to insert data into a backend Oracle table (with ODBC) using a form, (i use docmd.runsql "insert....") Access gives me a message like"You are trying to append 1 row to the table are you sure you want to append?" i want to suppress this message as i have to insert into 2 tables and...
  5. J

    How to give a commit statement in VBA?

    Hi, Do i have to give a commit statement when i update tables in backend(insert, delete,update) from a form, say when user clicks submit, it takes the data in fields and inserts it into the table , but till now i never did that but i could see all data when i queried the table, but i am not...
  6. J

    how to make fields in a form non-editable(non-deletable, non-addable)?

    Hi, how do i make the fields in my form uneditable(cannot delete or add but can copy a field from form), i tried setting the properties..allow additions deletions by setting it to no, but even then when i open the form and when data is dispalyed , if i go jus delete (say address field)a field...
  7. J

    Populating form and subform based on search criteria

    Hi, I have a form with a subform, Both of them are based on a query.the form displays a productid and its details ,and the subform has matching productnames for that productid. Now i have a search on the main form wherein the user enters ( search for) the productid, once they click search...
  8. J

    Updating backend oracle tables from MS Access

    Hello, My requirement is this... I have to use MS Access as front end with ODBC connection to Oracle 9i DB. The application(forms) should be able to update, delete ,insert records into oracle tables(backend). i have a main form,which has some unique id's and other info about the ids...
Back
Top Bottom