Search results

  1. M

    Pics in Reports

    I have a simple soloution...Try this: create a form and from the tool box choose the "image" control to insert in your form. A dialogue box will open to select an image. Select an image from where you stored your images. If you notice, in the picture property the path of the image u selected is...
  2. M

    Replace parameter values in control source property

    The easiest way is to select the controls that you wish change the control source proporty and type the values that u want in the properties window. They will all change at once..But I still wonder why u have those so many controls that u need to fill...any way, that's the easiest in my opinion.
  3. M

    Total per page

    Place a text box in the page footer and call it txtPagesum In the print event of the Page header write the following: Private Sub PageHeaderSection_Print(Cancel As Integer, PrintCount As Integer) txtPageSum = 0 End Sub In the print event of the Detail section type the following: Private...
Back
Top Bottom