Search results

  1. L

    Encrypt with Password

    The field in the table is an Attachment data type. And, it's Access 2007.
  2. L

    Encrypt with Password

    I am unable to put Encrypt with password because of its size; the computer freezes. I tried creating another database with only tblDocument, but it still want import--it freezes. The table imports just fine if there is no password on the database. I tried creating a new data and putting...
  3. L

    On No Data

    I've never used the On Paint function. Do you have example of this that you can post that I can see visually?
  4. L

    On No Data

    Unfortunately, my memory is not that great like yours :)! I know I did something but I can't remember what db or form or report. It'll come back to me as I move a long.
  5. L

    On No Data

    No, I don't. I tried pulling up a couple of dbs but they were not the one. I know I did it, but just don't remember. Let me search some more.
  6. L

    On No Data

    Yes, that is correct.
  7. L

    On No Data

    I have an Image21.Visible = No on the main report that I want displayed if there is no phone number for a record. On rsubTelephone report I went to On No Data and entered: Reports!rptCompanyProfile.Image21.Visible = True but it does nothing. Should I set this up another way?
  8. L

    Syntax error in query

    That did it, thanks a bunch!
  9. L

    Syntax error in query

    Thank you, thank you!
  10. L

    Syntax error in query

    I need to create requery that will list all addresses from tbladdress with the company name. If there is no company name (due to blind ads), it should list the CompanyID. In Query1 I added this calculated field: Company: IIf(IsNull[qryCompanyNameDefault]![CompanyNameTitle]),"Company ID " &...
  11. L

    Concatenate multiple answers into one field

    Okay, I was thinking that you can have too many subforms and subforms are just hard to format to look like the other fields. Anyway this form will have six subforms.
  12. L

    Concatenate multiple answers into one field

    Why is using a ControlSource slower than when you use a query? Meaning, I used the Concatenate function using the ControlSource of a text box and I created it using the query (which I put the subform on the form), the ControlSource lags behind the subform. Using ControlSource is easier and I...
  13. L

    Concatenate multiple answers into one field

    Thanks vbaInet for all you help! You have given me some good answers and links; it is very appreciative to get accurate information.
  14. L

    Concatenate multiple answers into one field

    I think I fix the problem; I went to CompanyID field and enter this as the default: =[Forms]![frmCompany]![CompanyID]
  15. L

    Concatenate multiple answers into one field

    When I navigate to a record without any cross-references I get the following error: Error 3075: Syntax error (mission operator) in query expression 'CompanyID ='.
  16. L

    Concatenate multiple answers into one field

    No, not really. I am just testing--not sure it is correct.
  17. L

    Concatenate multiple answers into one field

    No, that's okay--seems like a lot of work. But, thanks for replying!
  18. L

    Concatenate multiple answers into one field

    Okay, I built my query with: tblCompanyName CompanyNameTitle tblCompanyCompanyNameJunction CompanyNameID Type DefaultForCompany Is that okay? Because I noticed you used all three tables.
  19. L

    Concatenate multiple answers into one field

    Okay, I did: =ConcatRelated("CompanyNameTitle","qryCrossRef","CompanyID = " & [CompanyID]) Is there a way to put 1, 2, 3... in front--meaning: 1) ABC123; 2) ABCxyz; and so on?
Top Bottom