Search results

  1. A

    After update event triggered by changing tab

    right, I think that's a good idea
  2. A

    After update event triggered by changing tab

    the problem is that BeforeUpdate triggers before the AfterUpdate, hence the problem is always there
  3. A

    After update event triggered by changing tab

    yes, that's the ultimate solution. But I wanted to avoid this because the typical users simply forget to hit the buttom.
  4. A

    After update event triggered by changing tab

    it cannot work, because the user will enter several records on the subform. The notification should be sent only after entering records on the suborm and when the users either close the form or save the record on the main form.
  5. A

    After update event triggered by changing tab

    Hello, I have a main form with a subform, which is placed on a tab page of a tab control belonging to the main form. The main form afterUpdate event should trigger an email notification. I am trying to include in the email notification some information which is placed in the records of the...
  6. A

    Solved Form based on query + subform

    thanks but the main form is based on a aggregated query, so there is no primary key on it. It looks like below, so the only choice I had is to use the 3 fields I mentioned.
  7. A

    Solved Form based on query + subform

    thanks, I didn't think about it, I will change the names
  8. A

    Solved Form based on query + subform

    hello, the error was simply "-3004 - reserved error". I don't have a screenshot, but it's in italian language. Anyway I solved the issue by changing the linked fields from customerCode, Year, Month to customerName, Year, Month. Now it works.
  9. A

    Solved Form based on query + subform

    Hello, I have a form based on a query that shows something like "open orders to be invoiced". I would like to add a subform to allow users to write comments, something like below. The subform is based on a table (on SQL server) and I set three fields to be linked to the top query: customer...
  10. A

    Front end dimension

    Hello, thanks for all the comments received. Regarding front end dimension, it was actually the subject of the thread: The accde file I distribute is now about 80 Mb, with the following number of objects: Tables 318 (most of them linked, few local just as temporary tables) Queries 1027 Forms...
  11. A

    Front end dimension

    In fact one of the functions I have implemented is "feeding" the ERP with the forecast provided by the sales people. Before this there was one guy getting excel files from them and feeding ERP tables manually, really a crazy thing ...
  12. A

    Front end dimension

    Thanks, in fact IT are the ones that many years guided me to using an SQL express backend which made everything much more solid. You gave a good explanation about the pro's of Access as a RAD tool, I will certainly use this to redefine a new strategy of software development within our company. I...
  13. A

    Front end dimension

    Thanks for your comments, much appreciated. Maybe I was a little bit extreme: in fact the IT guys "maintain" the SQL server back end and the backups. Moreover there is one person in my team that can look in the Access front end if needed but he doesn't make any new development.
  14. A

    Front end dimension

    Hello, I am running an Access application since more than 10 years. It has become a very large one in our organization but I would say very successful: about 100-120 users in different locations across the globe. All front ends are linked to a main SQL backend (read/write) and some other back...
  15. A

    table not readbale

    Thank you very much, it must be this!
  16. A

    table not readbale

    Hello, since this morning one linked table (to a SQL server) is not accessible from my computer, and it show all records as belows. All other tables are ok. This system is used by many users (about 80) and no pc has this issue except mine. The table is fine in SQL. I have tried to delete the...
  17. A

    left join updatable query

    Thanks, you are right we take those things for granted but they are not at all! I tried to add the index in SQL back end on the "componente" field, but the query is still not updatable. Anyway I wanted to try your approach with subform and I think this is the best solution: I put the tblSmall...
  18. A

    left join updatable query

    I mean deleting a record
  19. A

    left join updatable query

    Hello, I have a simple LEFT JOIN query like below. The left table (tblSmall) is a from an SQL server (1000 records), the right table (tableLarge) is from a Oracle back end (200k records). I would like to use this query as the data source of a simple form in datasheet view where the user...
  20. A

    Hide Hyperlink target

    Thanks RanMan256, works well!
Back
Top Bottom