Showing posts with label crystal. Show all posts
Showing posts with label crystal. Show all posts

Monday, March 26, 2012

how to save expression

Hi,
I am new to RS. in Crystal Report, i can create a formula then save it. So
it can be used later. In RS, how can I save an expression and use it later?
Thx.You can create an embedded VB.NET function which will be visible in the
report it is saved (see Report Properties - > Code tab) or you can create an
external .NET assembly which can be shared by all reports.
--
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"Mia" <Mia@.discussions.microsoft.com> wrote in message
news:F4516C1C-0F54-42CD-BEF8-5115097DBFB1@.microsoft.com...
> Hi,
> I am new to RS. in Crystal Report, i can create a formula then save it. So
> it can be used later. In RS, how can I save an expression and use it
> later?
> Thx.

Friday, March 23, 2012

How to run the crystal report

Hi !
i am new to the crystal report.
can u help me?
how to run the crystal report?
tell me the procedure detail
rgds
anitaHi!

1) Insert the Crystal Report Runtime Control Properties from Project Properties.

2) Add the New Crystal Report using Project Explorer. when u click right button it will be displayed.

3) Choose the Report type in Crystal Report Gallery

4)Click the Project Button and Select the ODBC or OLEDB for your database.

5) And follow the continued.

6) then run your project.

Dim Report As New CrystalReport1
Private Sub Form_Load()
Screen.MousePointer = vbHourglass
CRViewer1.ReportSource = Report
CRViewer1.ViewReport
Screen.MousePointer = vbDefault

End Sub

Private Sub Form_Resize()
CRViewer1.Top = 0
CRViewer1.Left = 0
CRViewer1.Height = ScaleHeight
CRViewer1.Width = ScaleWidth

End Sub|||I have example code in my signature - "VB6/Crystal Report Ex."