Search results

  1. S

    subform and tab issues

    nm found it.
  2. S

    subform and tab issues

    sounds good where would I find that?
  3. S

    subform and tab issues

    I've got a subform in my form. The form keeps track of families, and the subform keeps track of the head of the family. When on the last field of the subform if you tab to move on it creates a new head of the family and clears the sheet for entering information for this second head of the...
  4. S

    Disabling items in a tabular form

    I've got a tabular subform that I'm when I the enrolled checkbox is checked I want the date exited field to be disabled, but only for that particular record. I have the following code in both the on current event and the afterupdate event for the enrolled checkbox if chkBox = 0 Then...
  5. S

    Crash?!!

    I dont' really have any modules. I click on modules in the object bar an there is nothing there. All this code is from the code bulider when I choose to build something on an event.
  6. S

    Crash?!!

    ok folks I'm a neophyte here can you explain those last two posts.
  7. S

    Crash?!!

    the two machines I know it worked on both had visual studio installed could it be that this computer needs some sort of VBA or VB environment?
  8. S

    Crash?!!

    Access has performed an illegal operation. an error has occured in module <unknown>. Access will be closed
  9. S

    Crash?!!

    Access Crashes when users click on OK on my this form, but only on certain computers. I don't know what's causing it. I'm including the code for the whole form. Private Sub cmdClose_Click() On Error GoTo Err_cmdClose_Click DoCmd.Close Exit_cmdClose_Click: Exit Sub...
  10. S

    code to disable an item

    I wasn't able to get it to work with the Me! in front of it. but it seemed to work when it was removed. I'll try some of the other suggestions.
  11. S

    code to disable an item

    Ok Here's what I have: What seems to be the matter. Private Sub ABE_Part_AfterUpdate() If Me!ABE_Part = -1 Then Me!AccompABEBeginningBE.Enabled = False Me!AccompABEBeginningLit.Enabled = False Me!AccompABEBeginningLitDate.Enabled = False...
  12. S

    code to disable an item

    I have a checkbox call it chkBox if it is checked I want several fields enabled (eg. chkHere), if not I want them disabled. how do I do this I know I need an on update event for chkBox but I don't know what code will test for checked, and I don't know how to disable the item.
  13. S

    how to

    I've got a list of people, and they participate in a list of activities. So I have a table for each of these activities. Here is an example of what the data would look like for each of these tables tblPeople: (PersonID, Name, Address, ...) tblActivity: (ActivityID, Name, Date, ...) Now my...
  14. S

    Using a find form

    I have a form that I want to use to find a record in several other forms. As it stands I have it working for the one form, but I'm having trouble adding it. I have a command button that opens the form. and then on record selection and clicking ok it uses findfirst and moves to the record in...
  15. S

    combo box with a subform

    nevermind fixed it. just remade the form...freak accident?
  16. S

    combo box with a subform

    I have a form with a subform. I put a combo box control on the form so it can look up information in the subform. But the control wizard isn't giving me the third option to lookup values in the subform from the combo box. What am I doing wrong? There is a relationship declared between the...
  17. S

    OK This should be easy

    Grrr. That's dissappointing. I guess I'll just have to do it that way.
  18. S

    OK This should be easy

    Alright now for some reason I can't make a Label that only has parts of it bold. Like Label "Hi there" where Hi is bold, but there is not. I've also tried this with a text box. Am I a complete moron or is there some magic access trick? TIA
  19. S

    Subform Blues

    That worked. Thank you so very much
  20. S

    Subform Blues

    How do I do that?
Back
Top Bottom