Recent content by stee_97

  1. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    Thats fine! I have managed to attach it here! Thank you for telling me how to upload on here The code is found under “Question 20” in the navigation bar under the form “generate 20 questions”. There is a button called generate feedback - the build event has the code for the report and...
  2. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    Thanks for the reply @arnelgp I have attatched a zip file of my db The code is found under “Question 20” in the navigation bar under the form “generate 20 questions”. There is a button called generate feedback - the build event has the code for the report and subreport. The report is called...
  3. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    I tried using a new database and I still get the same results :/. DoCmd.SetWarnings False DoCmd.OutputTo objecttype:=acOutputReport, objectName:="Feedbacksheet_Q20", outputformat:=acFormatPDF, outputFile:=exportpath & "Feedback for group" & Groupnumber & ".pdf" DoCmd.SetWarnings True That is...
  4. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    Thank you for the reply @The_Doc_Man Sorry if this is a simple stupid question, I am really new to VBA and MS Access and struggle quite abit with it. Could you please tell me how to do that or what you mean with the OnPrint routine. DoCmd.SetWarnings False DoCmd.OutputTo...
  5. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    Thank you for replying! Nothing happens when I change the colour scheme etc, and all the boxes are unbound. In my code I tell the boxes to have text in them depending on if conditions. A snippet of my code can be seen below: If (rs70.Fields(3).Value = rs74.Fields(0) Or...
  6. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    Hello, This project is actually part of my final report for my Masters Degree!
  7. S

    Text box shows text in print preview within sub reports but when I save the report as a PDF the textbox is clear

    Hello, I am pretty new to using Microsoft Access and VBA in general and within my final year project at University I am required to use Microsoft Access. The issue I am having is that I want to save my master report (With 4 sub reports) as a PDF. When I press a button for my report to be filled...
Top Bottom