Recent content by avl

  1. A

    Form/subform and concatenated keys

    Hi everyone, I got a trouble with my form linking, and I right now, I might not see the wood before the trees. I have a form with three subforms, where each subform refers to a slave table and the mainform to a master table. In the master table, I have a concatenated key which consists of each...
  2. A

    Fields not updating

    Not sure whether I am getting this right. You want to update the contents of a table, based on the inputs in a input box (to which 'Me.Person.Text' refers)? It would help to see the whole context of your above statement. Right now, just my two cents: I usually refer to input fields in a Form...
  3. A

    Word wrapping problem

    Thanks for the suggestion. Even though it ain't perfect, I appreciate it very much. After doing what you proposed I had to fiddle around with the width of the text box to make it appear oK. When too narrow or to wide, it wrapped the text at the wrong position, i.e. in the middle of a word. And...
  4. A

    Word wrapping problem

    Hi everyone, I have a small but nasty problem with a text box in Access2k. The text box shall display the name of a person in the form <Last Name>, <First Name>. Hence I fill my text box with: =[NName] & ", " & [VName], where 'NName' is the Last Name, and 'VName' is the First Name of that...
  5. A

    Page header in subreports not working

    Hi, page headers are displayed in a main report, but not in sub-reports. So, yes, this is a feature! :rolleyes: However, you could substitute your page headers with a group header and in the properties of this header you can then set the 'repeat section' property to 'Yes'. This way you can...
  6. A

    Visible Subreports

    Hi, you should change this to Select Case Meeting_Type Case Is = 1 Controls("Mtg_Subreport").Visible = True Controls("CC_Subreport").Visible = False Case Is = 2 Controls("Mtg_Subreport").Visible = False Controls("CC_Subreport").Visible = True End Select Regards, Alex
Back
Top Bottom