Search results

  1. A

    Close master form from subform??

    Hi, I have a form with a subform. In the subform (based on a different form) I need a button to close the master form. In the subform I need to find out what the master form is so I can close it. Since I use the same subform in multiple forms I can't really hard code the name of the master...
  2. A

    Browse [Find a directory or file]

    (Referring to this post by ghudson) Hi, This post was very useful, it really helped me out, but I do have one question. My database will be used by multiple users and will be stored on a mapped network drive, just as the files that I want to link to. Now unfortunately not all machines are...
  3. A

    Subforms and VBA

    Hi, I have a (master) form in Single Form view. In this form I have a subform, which displays a list of other record that have the same GroupID as the record viewed in the master form. Obviously the list will also display the record viewed in the master form, so next to it i want to place...
  4. A

    Another question on linking subforms...

    Hi, I tried searching for an answer, but with no luck. My problem is with linking master/child forms. What I want the subform to do is to show me a list of records that have the same "GroupID" as the master form. To do that I set the link properties to: Link Master Fields = "GroupID" Link...
  5. A

    Paramter query, subforms and VBA...???

    Hi, I have a database with a form to view the record. In this form, besides the records data, I also want to show a list of other record which are related to the current record (they have the same GroupID). Now I was thinking of using a parameter query to find the records, but I don't know...
  6. A

    Disable showing new(empty) record in a form??

    Hi, I am currently working on a database and I'm using a form to view the records. A standard Access behavior is to show an empty record (new record) as the last one. is there a way to disable this "feature". I would like my form to display only the records, which are really filled with data...
  7. A

    Text boxes...

    Hi, In a form I have 10 text boxes (TextBox1 - TextBox10), which are set to invisible. With a loop I want to change the "Visible" property of the first X text boxes. e.g. X = 5 Dim BoxName As String Dim i as Integer i = 1 Do Until i = X BoxName = "TextBox" & i i = i + 1...
Back
Top Bottom