Search results

  1. C

    how to connect a form to many tables

    Hi all, I was wondering how to make my form look for other tables as well. Actually the form uses one table, but I want it to use 2 other tables, making it 3 tables in total. Here's my code: Public Sub Fusion_Click() Dim Sql As String Dim pathFichierWord As String Dim rs As...
  2. C

    calling a code from a module is not responding

    Hi all, I have a form with 2 group options + command button. I wanted to call a second form. It can work, but the second form must remain open. Then I placed the code (of form A and B) in a module. It still don't work and I don't know what else to do. Anyone has any idea ?
  3. C

    Merge data from Access into a Word template

    Hi all, I'm trying to merge my Access data (specific fields) to a World template containing also the same specific fields. The problem is that my code does not run and there's no any error message that appears. The button I put on the form will not react on the first click...but on the...
  4. C

    How to create table from VBA code

    Hi all, I was wondering how I can create a table from VBA code. Actually my database contains a linked Excel sheet. I need to export the data from this linked Excel sheet into a table because I can't execute a merge into Word. Your help is much appreciated. Thanks currentdb
  5. C

    export data from MsAccess to Excel

    Hello everyone, I created a database and I want to export the data from one field into a ready-excel file. There's my code: Private Sub Command27_Click() Dim db As DAO.Database Dim rst As DAO.Recordset Dim appexcel As Excel.Application Dim wbexcel As Excel.Workbook Set db...
Back
Top Bottom