Search results

  1. B

    How to make visible tex box using combo box

    Everything is working fine. Thanks
  2. B

    How to make visible tex box using combo box

    Hi All I have combo box and unbound text box. Combo box [Ethnicity] fields are: White British White Irish White Greek or Greek Cypriot Cypriot Any other White (please specify) Mixed White and Black African Mixed White and Asian Any other Mixed (please specify) Indian Pakistani Bangladeshi...
  3. B

    Message box before close database

    Thanks a lot for your advise. I changed litle bit the code and it works!!! Private Sub Form_Unload(Cancel As Integer) If MsgBox("Are you sure you want to close the program?", vbYesNo) = vbNo Then Cancel = True Else Exit Sub End If End Sub :D
  4. B

    Message box before close database

    boblarson could you explain little bit more how to hide form. Is it any chance to put buttons like ok and cancel?
  5. B

    Message box before close database

    Hi Everyone I need the message box appear then user click button (X) to close database. Have you got any suggestions how to do this? Thanks in advance
  6. B

    Option group for word doc

    Hi All I have several word documents as template. I created options groups to open one of the selected document. I am trying wright a vba code, but I think I have not enough knowledge about it. Can anyone help me wright a code? Please.
  7. B

    Open selected record

    In my form I have list box lstNames, subform sfrmDate and button PreviewReport, which opens all records in report rptNames. I need this report button open selected name from the list box with data from subform. I don't know how to write the code for this action. Can you help me please.
  8. B

    Open selected record

    In my form I have list box lstNames, subform sfrmDate and button PreviewReport, which opens all records in report rptNames. I need this report button open selected name from the list box with data from subform. I don't know how to write the code for this action. Can you help me please.
Back
Top Bottom