Search results

  1. S

    adding buttons to each record

    thanks - thats an excellent site.
  2. S

    Opening specific data from using onclick

    hi many thanks for this. It has helped. I am having a problem with the following where clause. it is not picking up the approveID. SELECT qry_approve.ID, qry_approve.name, qry_approve.start_date FROM qry_approve WHERE (((qry_approve.ID)=[forms]![frm_homepage].[approveID])); approveID is in...
  3. S

    adding buttons to each record

    thats great. I have copied what I can from your database, but this statement is still chucking up an error. any ideas? approveID is in the subform in a tab control. SELECT qry_approve.ID, qry_approve.name, qry_approve.start_date FROM qry_approve WHERE...
  4. S

    adding buttons to each record

    I can load frm_test and it looks like it loads qry_test. when I could click any box it doesn't do anything. any ideas?
  5. S

    adding buttons to each record

    could you explain that please, I have looked in it and can't see the bit that helps? Thanks for this.
  6. S

    adding buttons to each record

    I would like to pull that record accross to new new form and then have 2 buttons on the new form, 1 saying accept and 1 decline. then I was going to have it so that when they click accept it adds that data to another table and if decline then it just emails the original user and deletes that...
  7. S

    Opening specific data from using onclick

    I have a subform in datasheet view and when i click on a box (record) i can use the onclick function to load another form. But how do I get it so it brings over just that record data that i just clicked on on the datasheet on to the new form? Thanks
  8. S

    adding buttons to each record

    ok that sounds good. how would I pull that specific record accross to the new form? how will it know which one i clicked on?
  9. S

    adding buttons to each record

    oh right, that seems to work for 1 button but what if I need 2 buttons, i saying accept and 1 saying decline?
  10. S

    adding buttons to each record

    Hi all, I have a query here that displays all data from a certain table. But when it displays the table data on the form (I have it as a query as a subform in a form) I want it so the user can click on one of the records and click either accept or decline on that record. So there is an accept...
  11. S

    Object required error

    wow that is great, so quick as well. the !'s worked. Thanks a lot.
  12. S

    Object required error

    I get an object required error on the following code. Can anybody help please? Thanks If frm_homepage.user_id.Text = "Jo" Then etc....
  13. S

    approval databases

    the above sounds great, I'll just now try to program it all. thanks for your help cheers
  14. S

    approval databases

    ok your second paragraph sounds like a good idea. So person A sends the completed form to a waiting table and at the same time it emails Person B saying there is an approval to check. And the rest would be the same as your paragraph. Sound about right? I was trying to do it with sending...
  15. S

    approval databases

    All, I am trying to get an approval database to work. Basically if somebody fills in a form in the database it sends it to another person to approve. If they say yes then it fills in the database with a yes and also adds the amount of holiday they wanted to the users record. If they say no...
  16. S

    taking text from 1 form to open data in another form

    All, I have a login form where the user types in their username and password. It looks up these from tbl_users. If the username and password match what is in here then the button loads another form. Also if it does match then it copies the username and date to tbl_logonname. I am asking how...
Back
Top Bottom