Search results

  1. R

    Access DB Email Validation and Update

    A 'bad' email address means that the address is not valid. The programs should check the destination server of the email address for validity. Thanks. Raeba
  2. R

    Access DB Email Validation and Update

    Anyone here know where I can find this program to do this? Thanks.
  3. R

    Access DB Email Validation and Update

    Hi, I would like to find a program that will check all of the email addresses in an MS Access 1997 database and mark the bad ones. Please let me know if you know where I can find something to do this. Thank you. Raeba
  4. R

    Don't Want Field on Report to Appear if ___ is True

    Ok, I'll give it a try. Also, I wonder about one of those fields (Label5) was just a text box on the report, not one of the fields that gets the info elsewhere like the company stuff. I got that one to change with Me!Label65.Caption = "la la la" raeba
  5. R

    Don't Want Field on Report to Appear if ___ is True

    I have it all in the format event. When I enter it without the qualifier as you suggested, I get the "object doesn't support this property or method" still.
  6. R

    Don't Want Field on Report to Appear if ___ is True

    I get "object doesn't support this property or method."
  7. R

    Don't Want Field on Report to Appear if ___ is True

    Ok, yes, that did it. Here's what I have now: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If Forms![Orders by Customer].Seeds = True Then Me.Label65.Visible = False Me.[Company Name].Visible = False Me.CompanyAddress.Visible = False...
  8. R

    Don't Want Field on Report to Appear if ___ is True

    It looks like that did it. It's late here, so I will look at in better after some sleep. However, it does look like that did it for me. Thank you very, very much! raeba :D
  9. R

    Don't Want Field on Report to Appear if ___ is True

    It appears that the form name is Orders by Customer, because the project window says that if is Form_Orders by Customer, and there is a checkbox on that form that for which the name and control source is Seeds. The report name shown in the project window is Report_Invoice. And, there is a text...
  10. R

    Don't Want Field on Report to Appear if ___ is True

    I also tried the following in the open event for the Report_Invoice, and it didn't work. Private Sub HideMe() If Forms![Orders by Customer].Seeds = True Then Report_Invoice.Label65.Visible = False End If End Sub I'm sure this is extremely easy, but I don't have any familiarity...
  11. R

    Don't Want Field on Report to Appear if ___ is True

    I've typed the following into the "Report_Invoice" (General) code area: Private Sub HideMe() If Forms!Command44.Seeds = True Then Forms!Report_Invoice.Label65.Visible = False End If End Sub It did not work. I am not sure how to find the names of the forms...objects...etc, but...
  12. R

    Don't Want Field on Report to Appear if ___ is True

    Hi, I hope that I am posting in the proper place. I am new here, and a newbie to all of this, so please be gentle and simple (and I have no reason to believe that you woudn't ;) ). I have an old sample database that I have been using in Access 1997. It is the "Order Entry" database that came...
Back
Top Bottom