Hi!
Please help me .. urgent
How do i using a Query in crystal report?... I tried using the select expert but I dont know how to go abt it...
from
srao
Hi!
Please help me .. urgent
How do i using a Query in crystal report?... I tried using the select expert but I dont know how to go abt it...
from
srao
A concise practical checklist for using a SQL query with Crystal Reports and automating the Select Expert from VB6 — expands on s suggestion and answers s question for .
First, three reliable ways to base a report on a query:
Programmatically controlling the Select Expert from VB6:
With CrystalReport1
.ReportFileName = App.Path & "\MyReport.rpt"
.SelectionFormula = "{Table.Field} = 'SomeValue'"
.Action = 1
End With Dim appCR As New CRAXDRT.Application
Dim rpt As CRAXDRT.Report
Set rpt = appCR.OpenReport("C:\MyReport.rpt")
rpt.RecordSelectionFormula = "{Table.Field} = 'SomeValue'"
rpt.ReadRecords
rpt.PrintOut False Troubleshooting and tips:
These points extend s high-level advice and directly address s ask about VB6 automation.
Jump to Post— QVeen72 104Hi,
U want to design a Report Based on the Result of a Query of Filter out Records for a Condition?
For First Case, Use Stored Procedures For(Oracle/SQL SErver)
Or QueryCommand(Access)Use "Select Records Expert" for Second Condition.
It will Filter the Records and show, Eg for …
Hi,
U want to design a Report Based on the Result of a Query of Filter out Records for a Condition?
For First Case, Use Stored Procedures For(Oracle/SQL SErver)
Or QueryCommand(Access)
Use "Select Records Expert" for Second Condition.
It will Filter the Records and show, Eg for a period or Particular Customer.
Regards
Veena
is there any way the Select Expert in CR can be programmed in VB 6.0?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.