Search results

  1. W

    Solved Excel xls-Export

    Found a solution. With a small adaptation to my existing SUB, the problem with the gray data display in Excel.xls was solved. Everything is nice and black! Sub 'Ausgabe PDF DoCmd.OpenReport strReport, acViewPreview, , strWhere, acHidden, strBez DoCmd.OutputTo acOutputReport, strReport...
  2. W

    Solved Excel xls-Export

    I have a general query, which is then output to the individual reports with the where condition. my query: SELECT AgeAktuell(tblMitglieder.Geburtsdatum,tblMitglieder.Austritt) AS AktAlter, AgeLJahr(tblMitglieder.Geburtsdatum,tblMitglieder.Austritt) AS LJAlter...
  3. W

    Solved Excel xls-Export

    I prepare the data using a report (with the appropriate WhereCondition), which I can then export either as a PDF or Excel.xls. I just had to change the acFormat (acFormatPDF or acFormatXLS). In the Excel file the fonts are displayed quite gray. Is there an explanation for this? Sub...
  4. W

    Solved Beginner question Second Time

    Many Thanks, works wonderfully :):):)
  5. W

    Solved Beginner question Second Time

    I want to increase the seconds display of a DateTime field by 30 seconds. I dont get any further. My update query is not working: "UPDATE tblMitglieder SET tblMitglieder.DateAct = DateAct + (second(DateAct)+1) where IDMit = 2;" Where is the mistake? Thanks for help
  6. W

    Solved Copy Recordset

    Excuse, here is the code: Private Sub cmdCopy_Click() Dim rs As DAO.Recordset Set rs = CurrentDb.OpenRecordset("qryMitglieder", dbOpenDynaset) Dim strNeueMitNr As String Dim strNachname As String Dim strStrasse As String Dim strOrt As String strNeueMitNr =...
  7. W

    Solved Copy Recordset

    Thanks for the information. I found out for a recordset method and found the following code and adapted to my needs. A new data record is created, but the first is displayed when I close the form and open again. What is missing in the code? Please help!
  8. W

    Solved Copy Recordset

    No ribbon menu, I'm looking for something in VBA.
  9. W

    Solved Copy Recordset

    I created a small MySQL database for our club using Access 2021 via an ODBC connection, which also works well. I manage the members using a simple form. If I now create a new member and the following member has the same data. Only the date of birth and first name are different. I just want to...
Top Bottom