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. CDerosier

    How to get items from a form into a report and retain code

    I need to create a report based on a form. what I need to do is copy labels and lines and rectangles from the form to the report. There is coding behind the next record button that needs to follow the labels and lines. How can I do this? Cindy
  2. CDerosier

    Input mask...??

    there is a date function in Access that allows you to select records using today's date. if you are using a form you wod have to go into the VB code and type the following: if me.expiry_date.text < Date() then msgbox (&quot;his card has expired.&quot;, vbokonly) end if Try this it should...
  3. CDerosier

    I am getting a too few parameters, expected 1 error message HELP?

    i just took out the spaces and the (inches) from the table and the code worked Thanks for the help!
  4. CDerosier

    I am getting a too few parameters, expected 1 error message HELP?

    I double checked the spelling and it is exactly the same as in the table. If I take out the (inches) it gives me a type mismatch error but no parameters error. Could it be because I imported the table from excel?
  5. CDerosier

    I am getting a too few parameters, expected 1 error message HELP?

    I am currently writing a program in VBA and when I execute the following SQL code I get a too few parameters expected 1. What is wrong with this code and why am I getting the error message? dim Dbs As database Set Dbs = CurrentDb Me.STATE.SetFocus tempgroup = Me.STATE.Text sSQL = &quot;Select...
  6. CDerosier

    What's Wrong with this Code - Getting error message

    I tried what you suggested, however I am still getting the same error message when I step through the code it stop on this line: Set MyRS = MyDb.OpenRecordset([sSQL], [adReadOnly]) is there something I am leaving out?
  7. CDerosier

    What's Wrong with this Code - Getting error message

    I am trying to get my program to select records from a table using a field on a form as criteria, so that I can perform calculations on that data and return a value to another field on the form. I keep getting (Run-Time error 2465 Microsoft Access can't find the field '|' referred to in your...
  8. CDerosier

    Creating a boxplot in Access

    Well I have the formulas for the box to move. This is my first application in Access, Now my issue is finding a procedure to call the record number of the percentile. I have a formula that finds the record number of the dataset that would be the 75th percentile but it doesn't return the value...
  9. CDerosier

    Creating a boxplot in Access

    It is a statistical graph that shows how much of the data falls between the 25th and 75th percentile. the box is drawn between the numbers on a graph and everything inside the box is inbetween those two percentiles. I am not even sure it can be done in VBA but my boss doesn't want me to import...
  10. CDerosier

    Creating a boxplot in Access

    I have a project at work that requires me to design a boxplot graph in Access - I have the form designed however the movement of the box isn't working the way I need it to. Does anyone have suggestions?

Part and Inventory Search

Back
Top