Recent content by mike60smart

  1. mike60smart

    Table fields

    Can you upload a copy of the database?
  2. mike60smart

    Data model for recruitment database with reserve list

    Hi You do not need Vacancy_tbl_1 or Candidate_tbl_1
  3. mike60smart

    Form with subform in transaction

    1 way would be to have a Form for New records. A search form that lists all existing record. Then a Click event on a specific record to allow edits.
  4. mike60smart

    Output data from tables into a directory or phonebook

    You can Export the data to a Word RTF file
  5. mike60smart

    Duplicating values

    Can you upload a copy of the database?
  6. mike60smart

    Solved Code running report despite default set to not

    Private Sub cmdPrintReceipt_Click() Dim response As VbMsgBoxResult response = MsgBox("Print Customer Receipt?", vbYesNo + vbDefaultButton2) If response = vbYes Then DoCmd.OpenReport "rptPrintCustomerReceipt", , , "[ContractNo] = " & Me.ContractNo End If End Sub
  7. mike60smart

    Solved Code running report despite default set to not

    Hi Can you upload a copy of the Db?
  8. mike60smart

    Data model for recruitment database with reserve list

    Hi John Upload what you have so far and we can give you further guidance.
  9. mike60smart

    Solved conditional formatting

    Ok No problem. I would recommend not using split forms are they are very limited.
  10. mike60smart

    Solved conditional formatting

    Hi I could not replicate your problem. I created a new Form named "Delovodnik" and applied conditional Formatting. See attached.
  11. mike60smart

    Solved conditional formatting

    Hi You have just sent a shortcut to the database. I need the actual database in zipped format
  12. mike60smart

    Solved conditional formatting

    Can you upload a zipped copy of the database?
  13. mike60smart

    Solved Email current record for form

    Hi Karim Your tables have some design issues. You should not use Lookup Fields in table. Check Google for "The Evils of Lookup fields in Access Tables" You have not set referential integrity between tables. You should not set the Format of your Autonumbers to 000 You should not set the record...
  14. mike60smart

    Trying to wrap my brain around table normalization in a 1:many relationship

    It might be a better option to explain your more complex case.
Back
Top Bottom