Results 1 to 2 of 2

Thread: Displaying Data Reports

  1. #1
    PORRASTAR
    Guest

    Displaying Data Reports

    Hi
    I have a database of clients and their information. I use a VB app to insert ,edit & delete the data. I then use a Data Report to display the data.
    The problem theat I'm having is that I want to show each client os a seperate report so I can print out their details seperatelly. Does anyone know how I can do this?
    Thanking you oin advance
    PORRASTAR

  2. #2
    Lively Member
    Join Date
    May 2002
    Location
    Nigeria
    Posts
    66

    Cool Data Report

    Let Me start by sking U some question about your data.
    1. Did your clients record has any identification No that is unique
    if yes you can do something.

    You can either use the command in your dataenvironment. In the general tab you go to sql builder and write a script like
    select * from client where clientid = ? move to prameter tab and give a name to the ? like clent ID

    You will now reference this in your form.


    Another way. You will have a temporary table where you will select the records you want in to and bind the table to the datareport. Before you select into this table you will need to be deleting all the records in the temp table first.

    These are the ways you can to it.

    select * into temp from client where clientid = 1 for example.
    This will copy the records toa new table and you acn now report from it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width