|
-
Mar 1st, 2006, 09:15 AM
#1
Thread Starter
Hyperactive Member
Report
What program can be use to edit and read a .rpt file?
-
Mar 1st, 2006, 09:16 AM
#2
Re: Report
.rpt files are typically associated with Crystal Reports.
From windows explorer, if you right click on the file and click properties, does it give you a file type?
-
Mar 1st, 2006, 09:22 AM
#3
Re: Report
FYI: if u ever want to know what an extension is associated with
http://filext.com/
it has the largest list ive seen... with all the possibilities...
RPT:
Crystal Report
MicroSim PCBoard Reports Reflecting Autorouting Progress and Statistics
Sierra Mastercook Cookbook File
TeamQuest View Report Syntax
Visual Basic Crystal Reports File
JPnyc rocks!! (Just ask him!)
If u have your answer please go to the thread tools and click "Mark Thread Resolved"
-
Mar 1st, 2006, 09:28 AM
#4
Re: Report
 Originally Posted by Static
FYI: if u ever want to know what an extension is associated with
http://filext.com/
it has the largest list ive seen... with all the possibilities...
RPT:
Crystal Report
MicroSim PCBoard Reports Reflecting Autorouting Progress and Statistics
Sierra Mastercook Cookbook File
TeamQuest View Report Syntax
Visual Basic Crystal Reports File
Cool link
-
Mar 2nd, 2006, 09:30 PM
#5
Thread Starter
Hyperactive Member
Re: Report
I have used a datareport, how do I adjust the size of the page so when the user wants to print it will be just the same size?
Last edited by weisi; Mar 2nd, 2006 at 09:35 PM.
-
Mar 2nd, 2006, 09:35 PM
#6
Frenzied Member
Re: Report
as far as i know, datareport only allows you to view a single page at a time. i dont know with other reports but thats how datareport work
On error goto Trap
Trap:
in case of emergency, drop the case...
****************************************
If this post has been resolved. Please mark it as "Resolved" by going through the "Thread Tools" above and clicking on the "Mark Thread Resolved " option. if a post is helpful to you, Please Rate it by clicking on the Rate link right below the avatar
-
Mar 2nd, 2006, 10:03 PM
#7
Thread Starter
Hyperactive Member
Re: Report
What if I want to selected a report to be generated?
eg. the field in my report has index, name and age, then the user can either choose from maybe index 1 to index 5 to be shown only, or in another case, user may want to choose age = 15 to 20 to be shown.
How can I be able to do this? I will need to create a combobox right?
-
Mar 2nd, 2006, 10:08 PM
#8
Frenzied Member
Re: Report
data report displays data from the database and in doing that, i suggest you use ado.
you can filter those things before they get shown in the report with your recordset. you can query it up to display only those things that meet the condition you specify
On error goto Trap
Trap:
in case of emergency, drop the case...
****************************************
If this post has been resolved. Please mark it as "Resolved" by going through the "Thread Tools" above and clicking on the "Mark Thread Resolved " option. if a post is helpful to you, Please Rate it by clicking on the Rate link right below the avatar
-
Mar 2nd, 2006, 10:20 PM
#9
Thread Starter
Hyperactive Member
Re: Report
 Originally Posted by d3gerald
data report displays data from the database and in doing that, i suggest you use ado.
you can filter those things before they get shown in the report with your recordset. you can query it up to display only those things that meet the condition you specify
Thanks! Any examples of the code?
-
Mar 2nd, 2006, 10:28 PM
#10
Frenzied Member
Re: Report
supposing you have a table named info containing the fields you want to display and one of those fields is Age. your SQL Statement should be like this
select * from info where age between 15 and 20;
that displays all fields with age ranging from 15 to 20
you can replace the * sign with the list of fields in your table if you want your query to be specific
On error goto Trap
Trap:
in case of emergency, drop the case...
****************************************
If this post has been resolved. Please mark it as "Resolved" by going through the "Thread Tools" above and clicking on the "Mark Thread Resolved " option. if a post is helpful to you, Please Rate it by clicking on the Rate link right below the avatar
-
Mar 2nd, 2006, 10:51 PM
#11
Thread Starter
Hyperactive Member
Re: Report
I have created a form which contains a combobox1 which the user can select the age and combobox2 which the user can select the index and a button to show report. Any codes to be written in here?
-
Mar 3rd, 2006, 07:45 AM
#12
Re: Report
Moved to reporting section
-
Mar 5th, 2006, 12:19 AM
#13
Thread Starter
Hyperactive Member
Re: Report
How can I made the directory of the database of the datareport fix, so I do not have to change the directory of the database everytime I copied the entire project into another new computer under a new directory. The problem now is that when I copied to a new folder, and when I click on the report, it will prompt me a "Please Enter MS JET OLE DB Initialization Information" asking me for the datasource. Is there any way which I can solve this problem?
-
Mar 8th, 2006, 03:26 AM
#14
Thread Starter
Hyperactive Member
Re: Report
 Originally Posted by weisi
How can I made the directory of the database of the datareport fix, so I do not have to change the directory of the database everytime I copied the entire project into another new computer under a new directory. The problem now is that when I copied to a new folder, and when I click on the report, it will prompt me a "Please Enter MS JET OLE DB Initialization Information" asking me for the datasource. Is there any way which I can solve this problem?
Please advice... Thank you!
-
Mar 8th, 2006, 09:37 PM
#15
Thread Starter
Hyperactive Member
Re: Report
VB Code:
Private Sub report_Click()
Unload DataEnvironment1
DataEnvironment1.Connection1.ConnectionString
report.Show
End Sub
I have problem with this. Im still trying to solve the path of the database as mention above. Please advice...
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
|