Recent content by alex_117058

  1. A

    Formatting problem when exporting from Access 2007 to word doc

    Same issue. I might have to tell my client to do a manual export instead of using a macro. It appears that word is having a programming issue? I'm not sure what to do about that other then to not use macros for specific reports now..
  2. A

    Formatting problem when exporting from Access 2007 to word doc

    The vba code for the macro: Private Sub Command34_Click() On Error GoTo Command34_Click_Err DoCmd.OutputTo acOutputReport, "BookChapters", "RichTextFormat(*.rtf)", "", True, "", 0, acExportQualityPrint Command34_Click_Exit: Exit Sub Command34_Click_Err: MsgBox Error$ Resume...
  3. A

    Formatting problem when exporting from Access 2007 to word doc

    Haha, I guess I have bad luck then. Most of the macros I'm using are just one action macros. Namely the "outputto" function. As for using vba, I'm not entirely sure how to write the code needed to export from report to word. Also, it turns out that the report is actually getting all the...
  4. A

    Formatting problem when exporting from Access 2007 to word doc

    I have the value of the underlined category coming directly from a form. The whole report is generated from a single form. I've exported it into the .rtf, .txt, and excel formats and I've gotten the same issue as before. Another thing is that since I've been using Access, there are times when...
  5. A

    Formatting problem when exporting from Access 2007 to word doc

    Hello everyone, I'm very new to access and computer programming in general, but thanks to sites such as this, I've learned quite a bit. I'm managing a database for a client and for the most part it does exactly what I want it to do. The only issue is that when I export a report in access 2007...
Back
Top Bottom