Search results

  1. B

    Dcount gets value from combobox

    I have a txtbox with the control source as the following: =DCount("location","domainfacts","location = '" & [me].[ccfind] & "'") This is so that a user can select a country from the combobox "ccfind" and then the amount of times that country appears in the field location will be displayed in...
  2. B

    delete button

    I have a delete button to delete a selected record. In order to stop accidental deletions I have set the property of the delete button to: Enabled = No Then once a user unlocks the record, the button becomes enabled. My question is how can I get the button to revert back to Enabled = No...
  3. B

    Sort Dates

    In a query, how can I sort a date field, so that the records that come back are in order 15 June 21 August 6 September E.t.c. Thanks
  4. B

    WildCard not accepted

    I have a query that that uses a datefield from a txtbox to bring back records. If I give the query the exact criteria like 14-Aug-01 I get the results. But since I want to get all the records in Aug-01, I have the following criteria: Like "*" & [Forms]![renewalform]![date] & "*" Where...
Back
Top Bottom