Search results

  1. mike60smart

    SUBFORM CONTROLS

    In your tables what data type are the fields "Connector ID" and "Pin ID"?
  2. mike60smart

    Solved New detail records being added despite disabled button in master form

    OK Don't know if the following would help, would changing this line of Code:- If Me.cboCustomerStatusID = 1 Then 'Normal Status to If Me.cboCustomerStatusID.Column(0) = 1 Then 'Normal Status
  3. mike60smart

    Solved New detail records being added despite disabled button in master form

    Are you able to upload a copy of the database with no Confidential data?
  4. mike60smart

    Solved Afterupdate with no update.

    Hi John Can you upload the database?
  5. mike60smart

    Data model for recruitment database with reserve list

    Hi John Have you tried changing the form layout to Candidate - Vacancies?
  6. mike60smart

    Data model for recruitment database with reserve list

    Would it not be easier to have your Main Form based on Candidate_tbl with the subform based on vacancyCandidate_tble?
  7. mike60smart

    Data model for recruitment database with reserve list

    Sorry John but you would never allow duplicate records in Candidates_Tbl
  8. mike60smart

    Data model for recruitment database with reserve list

    John I would suggest that you add the Application date & Determination date to the Subform.
  9. mike60smart

    Table fields

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

    Data model for recruitment database with reserve list

    Hi You do not need Vacancy_tbl_1 or Candidate_tbl_1
  11. 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.
  12. mike60smart

    Output data from tables into a directory or phonebook

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

    Solved Duplicating values

    Can you upload a copy of the database?
  14. 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
  15. mike60smart

    Solved Code running report despite default set to not

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

    Data model for recruitment database with reserve list

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

    Solved conditional formatting

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

    Solved conditional formatting

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

    Solved conditional formatting

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

    Solved conditional formatting

    Can you upload a zipped copy of the database?
Back
Top Bottom