Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Tonto44

    Converting numbers to spelled words for checks (still)

    How are you trying to use the function? Where in your report did you put the =English(checks) code? What is "checks"? It should be a data field from a table or query. If not, it won't work in a report unless there's a way for the English() function to get the currency value of...
  2. Tonto44

    Delete All Records

    Sure.. piece of cake. First, create a macro that will delete all the records in the table. The macro's Action will be to RunSQL. It's SQL statement will look something like: "Delete * From yourtable;" Next, on your form, create a command button that runs the macro. Job done.
  3. Tonto44

    SubForm Question

    A form doesn't have a RowSource property. You should be using the RecordSource property of the form. Change the code to: Forms!frmMainForm!frmSubForm.Form.RecordSource = strSQL That should do it for you

Part and Inventory Search

Back
Top