|
-
Mar 17th, 2008, 02:07 AM
#1
Thread Starter
New Member
I find difficulties in managing data report in vb 6.0
i have to design a data report in vb 6.0 that will display all the employee and also their corresponding time comsume in time tracking system.
how can i handle the time of employee so that the display in the data report will be arrange and using only the "app.path" for the data base. i use MSAccess only.
how can i combine the 2 related tables from the same access database.
hope you will help me solve my problem...
i find it hard for me... plsss help me...
-
Mar 17th, 2008, 02:53 AM
#2
Re: I find difficulties in managing data report in vb 6.0
Research on ADO and SQL, then on data report sections and controls. It will be hard to explain what you need to do unless you understand the terminologies and concepts involved. There are no shortcuts... unless you intend someone else to do it for you.
-
Mar 17th, 2008, 06:20 AM
#3
Re: I find difficulties in managing data report in vb 6.0
-
Mar 17th, 2008, 01:30 PM
#4
Re: I find difficulties in managing data report in vb 6.0
Here are two ways,
1. Creatre a DataEnvironment as the reports datasource with a Command and a Child Command using the Employee ID to relate the to tables.
2. Use an ADO recordset as the reports datasource. The SQL would use a "join" that creates a recordset that has the data from both tables.
I would not use the "1" method if this a multiuser system.
-
Mar 17th, 2008, 07:56 PM
#5
Re: I find difficulties in managing data report in vb 6.0
 Originally Posted by wes4dbt
I would not use the "1" method if this a multiuser system.
Don't use it period. It's a nightmare to maintain when queries need to change or underlying schema changes. Hence post #2.
-
Mar 19th, 2008, 11:17 AM
#6
Re: I find difficulties in managing data report in vb 6.0
how can i combine the 2 related tables from the same access database
You can use the inner join sql command..
Greg
-
Jun 2nd, 2009, 02:03 AM
#7
New Member
Re: I find difficulties in managing data report in vb 6.0
   
 Originally Posted by sicnarf
i have to design a data report in vb 6.0 that will display all the employee and also their corresponding time comsume in time tracking system.
how can i handle the time of employee so that the display in the data report will be arrange and using only the "app.path" for the data base. i use MSAccess only.
how can i combine the 2 related tables from the same access database.
hope you will help me solve my problem...
i find it hard for me... plsss help me... 
-
Jun 2nd, 2009, 10:45 AM
#8
Re: I find difficulties in managing data report in vb 6.0
The question has been answered in posts 2 - 6. Do you have additional questions? If so, what?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|