Search results

  1. R

    Conditional formatting not working for subreports

    Once the subreport is opened independently, conditional formatting works great. Correct data lights up in green and false in red. However, when the whole report is opened, subreport included, conditional formatting works only for controls in the main report. In subreport controls, the numbers...
  2. R

    Overflow error

    The error is caused by a function which displays the value in a text box. I have tried to change data types, CLng() and Round(..,1) with no success. Also, the error occurs only in some records (displayed as reports). The code of the function: Public Function...
  3. R

    Pulling arrays of data, that match a certain criteria, from a query.

    My query "ArrheniusPlot" looks like Report_number...Temperature...Time 1.....................130...............600 1.....................120...............2000 1.....................110...............3200 1.....................100...............4600 2.....................150...............1100...
  4. R

    Nesting Subreports Causes Access 2003 To Crash

    The problem only occurs with reports. Nested subforms, using information from the same tables work fine. Other people have reported identical problems online, but no solutions were found. The only resource with some information was: However the suggestion doesn't help. I still receive the...
  5. R

    Display text boxes, based on tests selected

    My report needs to display test results. Different reports have different tests conducted. Initially I was thinking of using text boxes with visibility based on/off test selected. XXXXXXXXXXXXXX (test 1 selected) XXXXXXXXXXXXXX (test 2 selected) XXXXXXXXXXXXXX (test 3 selected)...
  6. R

    Making tabs visible based on toggle buttons

    I have a form f_select_tests, where I select tests to be conducted using toggle buttons. Each test has a corresponding tab in a form called f_manage_tests. All tabs are default hidden. Depending on the tests selected I want corresponding tabs to become visible. Currently this code for...
  7. R

    What is the VBA code to create a new entry in the table, e.g. doCmd..........?

    DoCmd.GoToRecord , , acNewRec does not seem to work. I want to specify a particular table where that new record is created.
Back
Top Bottom