Recent content by nobbie1

  1. N

    Data Type Mismatch in Dynamic Query

    sorry for not replying earlier. I played around with it some more and the test form I have in there I just changed the tech ID to look for the last name and based the search off that.
  2. N

    Data Type Mismatch in Dynamic Query

    That was one of the first things I had checked before posting for help. I've actually have the code checking a combo box which the bound column should be a numeric field. I'm still scratching my head over this one. Thanks
  3. N

    Data Type Mismatch in Dynamic Query

    Hello all, Attached is a test version of my database. I'm trying to create a form which can search through my one table dynamically. Everything works great except for when I try to search by the Tech ID. I get a data type mismatch error. The form which I'm testing is the Test Form. The...
  4. N

    Normalized so far, do I need more?

    Hi everyone, I have a little project here that I started awhile ago and at the start didn't fully understand databases, not that I do now, but I'm further along in my knowledge. I believe my database here is normalized and set up to have data inputted the way I want it. I was hoping someone...
  5. N

    Main Form Combo Box help needed

    Hello one and all, I'm back with another problem that I'm not sure how to handle. I've made up a database to help track work done by our technicians. I would like to be able to add to my main form a way of keeping track of work done by technicians if they are grouped up on a special project or...
  6. N

    afterupdate code problem

    Hello all, I have this code in my afterupdate event for a combo box: Dim rs As Object ' Find the record that matches the control. Set rs = Me.RecordsetClone rs.FindFirst "[TechID] = " & (Me![TechnicianList]) Me.Bookmark = rs.Bookmark Set rs =...
  7. N

    If Then Code help

    I'm not very good with coding yet so I thought I would turn to these forums for some help. I have a form for my technicians and when the form loads, the first thing they have to do is select their name from a combo box. I have some techs that are cross trained for 2 different areas, eventually...
  8. N

    Question Concerning Switchboards

    Does anyone know if it's possible to password protect certain forms from a switchboard? I have a database which technicians will enter in data about their line. I'd also like on that same switchboard an option for the supervisors to enter in data for say a new technician when hired or to be...
  9. N

    I think i'm Normal

    Edited above post with new link to repaired database, no longer split. Should open up fine in any version i hope
  10. N

    I think i'm Normal

    Hello everyone, First I'd like to thank everyone for all the advice and help they've given me on this project. I think I've come a long way in understanding Access and databases. If it's possible, I'd like to ask another favor and have you review my database. I've zipped it up in Access 97...
  11. N

    Hiding Subform till data is entered into the Main Form

    Ah I see what happened now. I had renamed my subform, but the control stayed as the orginal name I had. Is there a way I can edit the subform controls? Thanks for the lead on what drops down after I had typed in Me. It's working now :)
  12. N

    Hiding Subform till data is entered into the Main Form

    Ok, I'm able to set the subform to hidden with the On Load Event. Now I'm having trouble getting the AfterUpdate Event to work to make the subform visible again. This is what I have in my AfterUpdate event code for my combobox: Private Sub Combo10_AfterUpdate() Dim rs As Object...
  13. N

    Hiding Subform till data is entered into the Main Form

    Hello everyone, I've been searching through the forums here looking for a possible solution to my question. I'd like to hide a subform until data is entered on my main form. Specifically from a combo box which lists the first and last names of the techs using the form. I am trying to keep...
  14. N

    Choosing from a combo box

    Ok I'm running into a small problem here. I have set up a small database to eliminate our end of shift report paper trail. I have a table with our techs, a table with the lines that are worked on and a table with the problems common to those lines. I want to keep my form simple and less prone...
  15. N

    Correct Relationships?

    Ok, forgot to check that last database I had zipped up. This is one is my latest attempt to get my tables and the relationships right. After that I'll work with my data entry form. If anyone could take a look at it and make sure I've set up the relationships right I'd appreciate it. Just...
Back
Top Bottom