Crystal Report with visual basic 6.0

Asked By 7060 points N/A Posted on -
qa-featured

Hey, How to identify ole object name in Crystal report. then how to change picture in crystal report during runtime by using ShowCRViewer function in VB and also how to invoke section_format event in Module.

SHARE
Best Answer by sibabu
Best Answer
Best Answer
Answered By 5 points N/A #79383

Crystal Report with visual basic 6.0

qa-featured

Here find some requirement:

Creating Reports Using Crystal Reports with Visual Basic 6.0

SAP Crystal Reports 2008

Hope you will be happy to see that…. thanks.

 

Answered By 590495 points N/A #79384

Crystal Report with visual basic 6.0

qa-featured

Crystal Report is a reporting application that can generate reports from various Data Sources.

Using it you can create reports, print, and print preview and is compatible with most popular development environments like VB.NET, and SQL Server.

Here is how you can create a simple Crystal Report using VB.NET.

Open Visual Studio .NET then select a new project.

Click Project, Add New Item, then select Crystal Report. This will create a Crystal Report for Product table.

It has 3 fields: Product_id, Product_name, and Product_price.

From the Crystal Reports Gallery, select the report type. Then accept the default settings then click OK.

Select OLE DB (ADO) from Create New Connection. This is to select the correct connection to your database and here we are going to choose OLEDB connection for SQL Server.

Select Microsoft OLE DB Provider for SQL Server.

Select your SQL Server Name then enter your user ID and password. Select your Database Name, click Next and then Finish. You will then get your server name under OLEDB Connection. From the tables list select Product table to the right side list then click Next.

Select all fields from Product table to the right side list then click Finish.

For the rest of the instructions, visit Net-Informations VB.NET Crystal Reports for Beginners.

See also Net-Informations VB.NET CRYSTAL REPORTS to learn other tutorials.

Related Questions