Search results

  1. I

    Create event on image component

    Hi Attach an example. just put the file in "temp" folder for the image load the form, you will see that if you click on the description you will get the correct ID. if you click on the image you will not get the correct id
  2. I

    Create event on image component

    No, I added an image control not a text box control
  3. I

    Create event on image component

    Hi I have a form with few bounded fields. I created a click event on one of the textbox field, when I click on it I see the description something like MsgBox "you ID is " & me.idSubTask that works fine when I add an image component and create the same code it doesn't work. what I want is to...
  4. I

    Navigation Button Active

    Thanks, I used the DoCmd.BrowseTo and it WORKS!!!!! :)
  5. I

    Navigation Button Active

    Yes i tried all of them. The navigation works differently from a button so i guess that's why is doesn't work
  6. I

    Save on a different DataBase

    We have a shadow copy twice a day. But what is it have to do with the company's policy? I would like to create a copy for some tabled. I know all the other solution of IT backup. I just wanted to know if someone has an idea for me about duplicate some tables :-)
  7. I

    Fields in a form with vba code

    Thanks
  8. I

    Save on a different DataBase

    there are about 40 concurrent users and the ms-access is split database (FE & BE) The goal of the second database is just for backup incase something will happend. and as I saidI don't want to use daily backup since if the database currepted and I will not notince on time it will overide the...
  9. I

    Save on a different DataBase

    currently not but that's what i was thinking about
  10. I

    Save on a different DataBase

    Hi I have a form that insert and update some tables. I would like to insert and update to more than 1 database for backup purposes I don't want to create a scheduler that copy the database to another folder since I am working in a big company and it takes to much to do it is there a way to do it?
  11. I

    Navigation Button Active

    Hi Minty, your solution unfortunately is not working. when I am the the other tab and I click on NavigationButton113 I get an error message compile error method or data member not found Tom, what do you mean by creating a public sub? currently I don't have anything on the click event. since it...
  12. I

    Fields in a form with vba code

    I have 2 table one is for tasks with fields (id,task_id,userid,checked) and employee with fields (userid, fullname) the join is task.userid = employee.userid If I am creating a form with bound fields from the query and I would like to click on the checked field to change it , it wouldn't allow...
  13. I

    Fields in a form with vba code

    I have to use unbound because i have a query with and one of the fields in checkbox' when I an using a query I can't mark the checkbox
  14. I

    Fields in a form with vba code

    I mention 2 records because the first is the ID and i don't need to display it
  15. I

    Navigation Button Active

    Hi let me try to explain better: I have 1 form with 4 navigation bar. the button is in Nav A, when I click on it on make Nav B visible but the focus is still in Nav A. I would like the focus will be on Nab B None if the option above that you guys mentioned is working. The focus is still on Nav A
  16. I

    Fields in a form with vba code

    Hi I have a table with 3 fields (id,Task_id,description) and the values looks like id task_id description -------------------------- 1 1444 aaaaaa 2 1444 bbbbb 3 1555 cccc I would like to create a form with 3 unbound textbox and fill the textbox something like dim rs as recordset dim db...
  17. I

    Navigation Button Active

    Hi I have a form with 4 navigation button. at navigationButton109 I have a button component , when I click on it I create an event that make visible the other navigation whcih works great [forms]![TaskNavigation]![NavigationButton113].visible = true the problem is I would like to make this...
  18. I

    Error in database shared over a network

    What I mean is from time to time I have this problem. when I am telling to the users to exit access then it works fine the next time we are log in/ The problem is during the day sometimes there are users that can login to the share app
  19. I

    Error in database shared over a network

    So if each user will have his own FE, how can I update all FE's ? When there is just one FE I can update just one file and everyone will see the results
  20. I

    Error in database shared over a network

    We are working in a company and all of the users are in wired cable and not WI FI The Users share the front-end. otherwise how can I update from time to time the forms and the reports?
Back
Top Bottom