Recent content by jason_nevin

  1. J

    adp form holds on to where condition

    I am using adp to front end a SQL server database. When I open forms and specifiy a where condition it seems to set the server filter property of the form to my condition. If I then open the form to create new records or edit a whole recordset the filter is then applied. Is this a feature or a bug?
  2. J

    RI to more than one table

    BTW. In my design I created a relationship from tbl_user, tbl_administrator and tbl_engineer to tbl_login by including a foreign key column - FK_tbl_login - in each of the tables.
  3. J

    RI to more than one table

    My original database design was such that each person type table i.e user, engineer, administrator had their own table (tbl_user, tbl_engineer and tbl_administrator). Each table had a one-to-one relationship with a table called tbl_address and a one-to-one relationship with a table called...
  4. J

    RI to more than one table

    Surely the engineer-person and user-person relationship has the same problem but one level higher. i.e I still have one child table (in this case person) with two relationships to seperate parents (user and engineer).
  5. J

    RI to more than one table

    Is it possible to have two 1-2-many relationships from a single table? Presumably you would need two foreign keys but one would always be null. Is that possible?
  6. J

    RI to more than one table

    Unfortunately not in this case because both are entirely different entities in terms of their content, parent tables, etc. Its simply a case of having two tables that happen to have the same relationship with another table.
  7. J

    RI to more than one table

    I have two tables tbl_engineer & tbl_user. Potentially the people in either table can be trained. I'd like to store details of this training in tbl_training. So my question is; How do I create a relationship from tbl_training to both tbl_engineer & tbl_user that ensures RI?
  8. J

    Using field in view criteria

    Good morning I have a list box with a SQL server view as the data source. I want the dataset to be filtered to include only results with a particular foreign key which is stored in a field on my form. I can do it in the behind module by programmatically specifying the row source but I'm...
  9. J

    MySQL memory issues

    I have an MS Access database where the tables are held in a backend on a file server and the forms, reports, queries, etc are held in a front-end which is distributed to each user. This has worked fine up to now. I now have a requirement to access a number of MySQL tables that are held in a...
  10. J

    Error handling not execued second time

    I have some cde in which I'm trying to ignore error 3349 whenever it occurs. The code ignores it fine the first time but the second time the error occurs the code does not seen to go into the error handler. Can anyone help? Private Sub butGo_Click() Dim db As DAO.database Dim tdf As...
  11. J

    Remote Access

    We have an Access Database split between front and back-end. The BE is 50Mb and the front about 60Mb. We have a requirement to provide access to the database to our other branches all of which have broadband. I have been trying to find out the best way to achieve this over IP as we do not want...
  12. J

    Setfocus in subform not working

    I've tried that but to no avail I'm afraid.
  13. J

    Intellectual Property Rights

    My understanding is that in UK law its pretty straightforward that if you work for a company they own the copyright to anything that their employees design as part of their normal role. I have no problem with that at all. My question is effectively what does IPR do that isn't already covered by...
  14. J

    Intellectual Property Rights

    I have designed a software package based around an Access Database at my company (based in the UK). There is a good chance that the company will be able to sell the software and potentially make a handsome profit. My boss wants me to sign an Intellectual Property Rights agreement. Does anybody...
  15. J

    Setfocus in subform not working

    I still haven't managed to fix this problem. Any ideas?
Top Bottom