Recent content by irish634

  1. I

    Weird printing phenomena

    Ok... So in trying to figure out this frustrating issue, I have discovered what I thought would stop the issue, really doesn't (pop up boxes, message boxes). I can however close the database and it works fine as long as I leave the attachment field alone. Here is what I have narrowed things...
  2. I

    Weird printing phenomena

    It appears to me that it is standard behavior. I created a new DB from scratch, new forms, new table, new report. I can duplicate the issue every time centered around the attachment field. I am interested to see if you can duplicate it too... So far I have not been able to stop it except for...
  3. I

    Weird printing phenomena

    I suppose it is possible. But it happens in a couple of DBs (just importing the objects though). I'll do the same and see if it is still there in a new scratch DB.
  4. I

    Weird printing phenomena

    Things Tried (in On_Click Event of Reports Button): These do not correct the issue -Set focus to another control -Go to another record then back to prev -Form Refresh -Add new record -Form Requery Things found to stop the issue from happening: -Close first form then re-open it, run the reports...
  5. I

    Weird printing phenomena

    This is a new portion of the larger database. The objects for this testing (forms, queries, tables, reports) are about 2 months old. This is the only table where I actually use the attachment field so I cannot answer your question other than to say, I think it has been there all along.
  6. I

    Weird printing phenomena

    Kind of. There is a sample DB in a previous post. These objects are part of a larger DB but the same issue appears in this standalone. The process is as follows: Open the DB Open the first form (frm_CleanlinessTestData) When the form opens, I automatically go to a new record. This form is...
  7. I

    Weird printing phenomena

    To answer your question, No. I only set tab stop to no when I hide a control. It's not really a subform. I actually open a new form, and then a report. So the main form in question is twice removed from the top object (my report). As mentioned, is only seems to happen when the attachment field...
  8. I

    Weird printing phenomena

    Ok... after a while of trial and error I think I have it narrowed down. It has something to do with the attachment field. This field is usually the last thing I populate before printing a chart. When I add or remove a file from the field, and then immediately go to the report form to print...
  9. I

    Weird printing phenomena

    Exactly as you described. Open the entry form...add data (what kind of data is irrelevant). I click "Reports" then click the Run chart button, the chart displays. Then I use the print icon on the ribbon. That's it. I'll work with it a little more today to test my theory above.
  10. I

    Weird printing phenomena

    It works as it should in Access 2016. Meaning I add data, click reports, open the report, and when I print it, the chart is printed like I want.. When in Access 2010 at work, it prints the records in the opening form as previously described. On my long commute home, I began to wonder if it's...
  11. I

    Weird printing phenomena

    Form2 has no record source whatsoever. It is only used for buttons to open the various reports. There is no primary key to reference. So it won't even compile like that. It's like the default print icon has no idea the report is open. Almost like the focus never leaves Form1, although form2 and...
  12. I

    Weird printing phenomena

    Code to open Form2: Private Sub cmd_Reports_Click() On Error GoTo Error_Handler If Me.Dirty = True Then 'If changes have been made to the record DoCmd.RunCommand acCmdSaveRecord 'Save the record End If...
  13. I

    Weird printing phenomena

    I have a weird thing going on and I can't seem to pinpoint the cause. I have Form1 used for data entry. I display the navigation buttons so I can cycle through records, etc. I have Form2 with various command buttons to open various reports in print preview mode. Keeping things to a...
  14. I

    Moving Range in a Query?

    I have been able find threads on moving/running averages etc, but is there a way to perform a moving range calculation in a query? I need to calculate the range between a current row and the previous row. Here is an example: I can certainly accomplish this in a couple of other ways, code...
  15. I

    Help with variable in SQL

    Thank you! Told you it was simple... LOL
Top Bottom