Search results

  1. F

    help with code

    I was given some advice by the website mvps.org and I am trying to put it together. I am trying to use a multi select list box as a query parameter. "You can still use a parameterized query provided you pass the entire Where clause to it via code as a parameter. (eg. Have the query reference a...
  2. F

    Advice on setup

    I have a database that contains information on football games. There are many different games from many different seasons, teams, opponents. I will eventually have a fairly large number of different reports and forms that will want to be viewed but filtered by the above three catagories...
  3. F

    help adding parameter to a filter

    I have gotten the following to work with the 2 parameters. DoCmd.OpenForm "reportfiltergameentryfrm", , , "opponent in (" & Me.opponentselected & ") AND season = " & Me.cboseason I am trying to add the following to the parameter? [team]=Me.lstteam [team] and [lstteam] are both text fields...
  4. F

    Printing OLE Object with PowerPoint Slide

    I have a couple of OLE Objects with microsoft access slides in them. On the slide are drawings. For some reason when I print them in a form or a report the drawing does not show up. You can see the text but not the drawing on the printout. They display in the form and the report with everything...
  5. F

    On Close event

    I used the following code in the on close event of my form and it works when the value of [maingameformation.playid] is not previously entered but if there is already a value there it won't overide it? Is this possible to do? Private Sub Form_Close()...
  6. F

    Multi List Box Filter

    I appreciate your help in advance. I am new to most of this and I need a little assistance. I have searched the web and found some articles etc... I am just not sure how to apply it to mine because I am unfamiliar with some of the wording etc.. I understand a very little of what people are...
  7. F

    Open form to matching record on another form

    I have 2 forms. The first form is called "entry" the second for is called "play" I am trying to open the play form on the click of a button so that it displays the records matching the value set for the [playid] field in both forms. Can anyone help me with the code?
Back
Top Bottom