Search results

  1. Etxezarreta

    Solved Connection to the back end SQL Express tables

    Only one person could use the Access database before, and we want to make it available for new members.
  2. Etxezarreta

    Solved Connection to the back end SQL Express tables

    The SQL Server Express is in my computer: I used Firstly, thanks for all this information. I am a total beginner, so every answer brings me other doubts and questions. - the other users will be all over the country: which network do you refer whan ou say "the SQL Server connection needs to be...
  3. Etxezarreta

    Solved Connection to the back end SQL Express tables

    Hello, I have migrated the tables of my Access app to SQL Server Express. If other people want to use these tables, I know I have to install Access or Runtime Acces on every computer. The question is: how will they connect to the SQL Server tables? Where are exactly those tables nested: in my...
  4. Etxezarreta

    Solved Filter by criteria or by name: SQL VBA WHERE LIKE used to Form.Filter rather than new recordset

    The second folder posted by arnelgp is great too, easier for me, thanks!
  5. Etxezarreta

    Solved Filter by criteria or by name: SQL VBA WHERE LIKE used to Form.Filter rather than new recordset

    Vlad, This is exactly what I was looking for: the [ ] means that it works directly in the subform doesn't it? Thanks a lot. Etxe.
  6. Etxezarreta

    Solved Filter by criteria or by name: SQL VBA WHERE LIKE used to Form.Filter rather than new recordset

    This is very interesting, thanks. I will try to use it, not so easy though.
  7. Etxezarreta

    Solved Filter by criteria or by name: SQL VBA WHERE LIKE used to Form.Filter rather than new recordset

    Hello everyone, In order to update one table (t_AffectationProjetA_Contacts), I populate a temporary table (t_ConsultationContactProjet_temp_modiftableprincipale) with a VBA SQL query in the form f_ConsultationGestionContacts _Projets: I select different criteria in 5 list zones-> populate the...
  8. Etxezarreta

    Best strategy: dynamic recordsource or temporary table a recordsource?

    Yes, I have seen it. I will use this method. Here is how I did this time: 'Code in the form: str_SQL_finale = "SELECT DISTINCT t_AffectationProjetA_Contacts_expend.ID_contact, t_AffectationProjetA_Contacts_expend.Nom, t_AffectationProjetA_Contacts_expend.Prenom...
  9. Etxezarreta

    Best strategy: dynamic recordsource or temporary table a recordsource?

    Very useful information thanks a lot!
  10. Etxezarreta

    Best strategy: dynamic recordsource or temporary table a recordsource?

    Your approach is very interesting indeed, thanks. Etxe.
  11. Etxezarreta

    Best strategy: dynamic recordsource or temporary table a recordsource?

    I have a very poor expertise in SQL server too, thanks for your help anyway. I hope that other people will give me advice.
  12. Etxezarreta

    Best strategy: dynamic recordsource or temporary table a recordsource?

    Hi Gasman, Thanks for your answer. I am a bit reluctant to use querydefs, as it may slow down the process when the tables are on SQL server (I am not sure about it though). I try another way: I the string SQL expression that feeds the form recordset can be a public variable, and I use it to feed...
  13. Etxezarreta

    Best strategy: dynamic recordsource or temporary table a recordsource?

    Hello everyone, I would like to ask for advice here: I use many "forms-tabular sub forms", mainly to generate lists of people that match with queries: the queries are directly written in VBA, using ADO and SQl code. Then I need to generate reports that correspond to the subforms: I use the same...
  14. Etxezarreta

    Solved Impossible to modify check box in subform that has no modification restriction at all

    I found out how to simplify, I wrote the request in a single chain of characters. Thanks again
  15. Etxezarreta

    Solved Impossible to modify check box in subform that has no modification restriction at all

    Hello, The main form can be updated A last question: what do mean by "unnecessarily complicated way" please? That would help me a lot to improve the way I create my lines of code. Thanks. Etxe.
  16. Etxezarreta

    Solved Impossible to modify check box in subform that has no modification restriction at all

    And the subform is definitely bounded to the table
  17. Etxezarreta

    Solved Impossible to modify check box in subform that has no modification restriction at all

    Hello all, A huge headache here: I have a form, with a subform linked to a table that contains a yes/ no check box field. There is no edition or modification restriction whatsoever for the form, the subform or the fields of this subform. When I filter the subform with a query, the returned...
Back
Top Bottom