Search results

  1. S

    Form corruption

    That did not work either. However, I have noticed that the corruption appears after I run the form; as long as I do not run the form, I can keep doing changes. Moreover, it appears that it is the database the one getting corrupted. I imported the form from my backup and some comboboxes were not...
  2. S

    Form corruption

    It did not work. Made a change, clicked Save, and immediately got the message "Microsoft Access has stopped working. Windows is checking for a solution to the problem...". So, I deleted a control and tried to save, but got the same message. This is frustrating.
  3. S

    Form corruption

    Thanks! I will try that the next time I have this issue.
  4. S

    Form corruption

    Hi, I am having issues with one of my forms. Occasionally, it gets corrupted after changing something. For example, I just changed the background color of one label and I could not save the changes. From there, I sometimes need to restore a copy of the DB I am working in. Other times, I just...
  5. S

    Forms

    Check this link, http://support.microsoft.com/kb/88160
  6. S

    Proper Event Trigger for QCing Entry

    Try the KeyPress event. There, you can check the ASCII code of the character being typed.
  7. S

    Blank page before report printout

    Does it happen with other applications? If that is the case, you have your printer set with a 'Separator Page'
  8. S

    Can Access reports print to a Zebra thermal label printer?

    Yes, Access can print to thermal printers. However, it does not support receipt-length paper so you have to figure out the paper size that fits your needs. I selected a receipt-width with letter length paper
  9. S

    Report issue with Images

    The code goes under the Detail_Format event. Forgot to mention that.
  10. S

    Report issue with Images

    :confused: The code provided before accounts for that (me.detail.Height)
  11. S

    1 forum two tables linked fields - need help

    I am not sure how your program works, but I guess you would need to include the code in the <your dropdown>_AfterUpdate event, so when the user updates the value in the dropdown, the other values (non-bound columns) will get updated at the same time. By the way, this is not VB script, it is VBA...
  12. S

    Report issue with Images

    here it is: If IsNull(Me.Image) Or Trim(Me.Image) = "" Then Me.Image.Visible = False Me.Image.Height = 0.01 * 1440 Me.Detail.Height = 0.75 * 1440 Else Me.Image.Visible = True Me.Image.Height = 2 * 1440 Me.Detail.Height = 2.75 * 1440 End If Note: * 1440 to convert to twips
  13. S

    1 forum two tables linked fields - need help

    <your field> = me.<your dropdown>.column(2) would be the value on the third column of the dropdown
  14. S

    Report Previously Formatted for Printer X....

    In design mode, check the page setup. You should use the "Default Printer" so anyone can use that report.
  15. S

    select * from table1 where the entry is not in table2

    Select * from <table1> where <table1>.<code> not in (select <table2>.<code> from <table2>)
  16. S

    Report preview does not match printout

    Ok. I found out what was the problem. I had a variable, kind of a sequence number, that I used in the function that gets the data. When printing, Access 'runs' the report again, it does not use the preview. Since the value of the variable was already the max value, the data was not being pulled...
  17. S

    Report preview does not match printout

    I have a report for which the user can select different options. For some of these options the report prints fine, but for others the report is a page with just the page header. In both cases the preview shows the correct data. I had some logic under the GroupHeader0_OnPrint. I moved it to...
  18. S

    Multiple reports into one

    Are ypu talking about a form or a report? because in your 1st paragraph you say "form". If it is a report you need to use the Sorting and Grouping option for the report and group by shift.
  19. S

    API Reference

    Great reference! Thanks so much Nigel. Jorge
  20. S

    API Reference

    Does anyone knows where can I find a complete API reference in VBA (either link or book)? Most of the references I have found are for C++, and there are only a few in VBA. Thanks.
Back
Top Bottom