Search results

  1. J

    Hide form

    In Design view, choose your text box, then Format, Bring to Front. Hope this helps.
  2. J

    Sub form properties

    1. Make sure the Main form has Data Entry set to Yes. 2. I think you may be out of luck on the Back Style property. Hope this helps?
  3. J

    Displaying Query Results in Form

    Since the record source is already set, you shouldn't need to run the query first. Just open the form. Hope this helps?
  4. J

    Record buttons

    Design View Form properties Navigation Buttons Hope this helps?
  5. J

    Error (no. 2501): The save action was canceled

    If you cancel an action query (Append or Delete query) that error will usually come up. In your error handling routine, you can skip this by checking for that specific error number. If Err.Number = 2501 Then Resume Next 'Go to next line of code after error End If Hope this helps?
  6. J

    Combo Box Subform Filtering Problem

    This !! forms!frmoutershell.frminnershell.Form.frminnerinn ershell.Form Doesn't look like a valid name for a form or subform Forms!YourFormName!YourSubformName.Filter = strSQL Also try to avoid spaces in your form or control names. If you do include spaces, put brackets around Forms![Your...
  7. J

    Combo Box versus List Box?

    Another way to use a List box. If you have a bound form you can put a list box on it and when choosing from the list box, you can go to that record on the form.
  8. J

    Prompt before closing form

    Easier to take the close button off of the form which will force users to use a command button to close.
  9. J

    Message box question

    Please check you syntax and capital letters OldValue not oldvalue Hope this helps.
  10. J

    Unbound Combo Box - which row

    In the OnChange property of the combo box Dim strFilter as String strFilter = "[ContactID] = '" & Me.YourComboBox.Column(0) Me.Filter = strFilter Me.FilterOn = True Hope this helps.
  11. J

    form footer like report footer

    If this is a continuous form, maybe you could use a listbox to show your data and it would be visually less confusing. Hope this helps.
  12. J

    display records

    This may help http://www.lebans.com/SelectRow.htm
  13. J

    hide a combo box

    If the Combo box is bound, it needs to be unbound. If the information in it is static you can use a value list instead.
  14. J

    Open Form Parameter

    Instead of passing the parameter when opening the form you might want to try opening the form with no parameters, setting a filter then turn on the filter. DoCmd.OpenForm "frmFullPicture" Forms!frmFullPicture.Filter = "[ObjectID] ='" & identity & "'" Forms!frmFullPicture.FilterOn = True You...
  15. J

    Open Form Parameter

    Try leaving off "acNormal" and "acWindowNormal" DoCmd.OpenForm destination, , , "[ObjectID] = '" & identity & "'" If that doesn't work you may have some other code in the form that you are opening (Maybe in the OnLoad or OnOpen event) that is causing a conflict.
  16. J

    how to lock a form for changes?

    In the property for all of the other textboxes set Locked = Yes Hope this helps?
  17. J

    Open Form Parameter

    Try This DoCmd.OpenForm destination, acNormal, , "[ObjectID] ='" & identity & "'", , acWindowNormal Hope this helps?
  18. J

    save entry

    You should clear your text boxes in your On Change property of the form.
  19. J

    printing form on one page

    A report would be your best option. All of your calculated controls should be able to be duplicated on the report. Hope this helps.
  20. J

    Re-opening Form from within it's self

    Another way would be to use combo boxes and a subform to show your results.
Back
Top Bottom