Search results

  1. A

    VBA Help

    I have a db that I wasn't the one who wrote. I'm actually pretty much a noob at this. Up until recently one of the forms had a bound list box. When I changed it to an unbound list box, the selections stopped being recorded. I know its possible to record those selections still because there is...
  2. A

    help limiting return on query

    Since the last time i posted, I've decided to try something with the database work. I downloaded a survey database that someone posted for use and I'm trying to adapt it the work i have. So far the biggest hurdle is the form. It is based on a query, i think which set up the basic controls. A...
  3. A

    Code help

    While working on ways to try simplify the tables of the database that I've been working on i found that I kept getting errors on this code Private Sub Form_Load() If Not Form.Recordset.EOF Then txtStudentName.Value = DLookup("[firstname]", "tblTeacherpreSurvey", "[ID]= " +...
  4. A

    VBA help

    I could use some help with VBA. To be honest, I don't know it and didn't write what I am about to post. I keep getting an error message that says 'invalid use of null" Private Sub Form_BeforeUpdate(cancel As Integer) Dim varW, varX, varY As Variant If...
  5. A

    Database help

    This database is not something I designed. Someone else started it and then just quit. I cobbled together something, but I know that it isn't that good because to make it work I had to split the database into 6. Probably too many reports, but that is because I don't know how to code. If...
  6. A

    Report help: counting and average

    I hope that I don't get into trouble for posting this in more than one access forum, but I really do need help. First I want to say that I am a complete N00b when it comes to access. For all I know the answer is already here- I just don't know what I am looking for. I started volunteering for...
Back
Top Bottom