Crystal Report CSC Rapid Application Development

Slides:



Advertisements
Similar presentations
Data Base. Objective Become familiar with database terminology. Create a project to display data for a single database table. Use a DataGrid control.
Advertisements

Presentation Heading – font Arial
Arfansyah, M.Kom. MEMBUAT LAPORAN : 1. Tambahkan File Crystal Report: Klik Menu Project  Add Windows Form Pilih Tab Reporting Pilih Crystal report Beri.
Chapter 10 Database Applications Copyright © 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved. McGraw-Hill.
1 Web-Enabled Decision Support Systems Crystal Reports Prof. Name Position (123) University Name.
ProjectWise 101 Chapter 1 - Installation
EGR 141 Computer Problem Solving in Engineering and Computer Science Interfacing with a Database in Visual Basic.NET 2005.
©2012 Microsoft Corporation. All rights reserved..
RADIUS Server (Brocade Controller)
Microsoft Visual Basic 2005 CHAPTER 12 Cell Phone Applications and Web Services.
Some Basic Database Terminology
Chapter 3 Files/Folders needed: \Chapter3\Samples \Chapter3\Labs.
Programming with Visual Basic.NET An Object-Oriented Approach  Chapter 8 Introduction to Database Processing.
Microsoft SQL Server 2008 Installation Guide Omer Alrwais.
ADO Connect Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Chapter 7 PHP Interacts with Ms. Access (Open DataBase Connectivity (ODBC))
ODBC : What is it and how does it work with MDS ?.
10-1 aslkjdhfalskhjfgalsdkfhalskdhjfglaskdhjflaskdhjfglaksjdhflakshflaksdhjfglaksjhflaksjhf.
Chapter 1 Getting Started with VB.NET and Crystal Reports Debbie St. George Wonder Ranch Publishing DBA/Programmer Covington Visual Studio.Net User Group.
In this activity, we are going to create a query for a computer company. The query will calculate the total and average expenses of the salesmen for each.
RPC Over HTTPS - Mailbox Access Note – OS & Outlook (2007/2010) should be fully patched with latest service pack and patches.
Course ILT Access basics Unit objectives Define database and database-related terminology, and plan a database Start Access and open, create, view, and.
SQL Schemas DATA SCIENCE BOOTCAMP. Schema The structure of the database (relationships between tables)
Faculty of Electronic Engineering 1 Database Access API’s Aleksandar Stanimirović Leonid Stoimenov Aleksandar Milosavljević.
Copyright 2008 Judith A Copeland - Accessing The Database By Judi Copeland.
1 Database Systems Introduction to Microsoft Access Part 2.
Databases with LINQ. LINQ to SQL LINQ to SQL uses LINQ syntax to query databases. LINQ to SQL classes are automatically generated by the IDE’s LINQ to.
AVCE ICT – Unit 7 - Programming Session 16 – Database and VB.
1 Database Design and Development: A Visual Approach © 2006 Prentice Hall Chapter 12 DATABASE DESIGN AND DEVELOPMENT: A VISUAL APPROACH Chapter 12 Accessing.
1 Database Programming with ADO.NET Kashef Mughal.
1 Connecting to a Database Server. 2 We all have accounts, with a single database each, on a Microsoft SQL Server on the USF network: allman.forest.usf.edu.
CSCI 3327 Visual Basic Chapter 13: Databases and LINQ UTPA – Fall 2011.
DATABASE SYSTEM VB LINK TO MS-SQL. 2 Visual ProgrammingChapter 6 Select Project -> Component.
VB.NET and Databases. ADO.NET VB.Net allows you many ways to connect to a database. The technology used to interact with a database or data source is.
CIS 338: VB.NET Printing Dr. Ralph D. Westfall May, 2011.
Creating SQL Database file And Displaying a Database Table in a DataGridView.
How To Start a SQL server Connecting to SQL Server.
DB Programming – Basic analysis
Web-based Software Development - An introduction
ASP.NET Programming with C# and SQL Server First Edition
MEMBUAT LAPORAN : 1. Tambahkan File Crystal Report:
Creating Data Base & Sql Data Source
VB 2010 Pertemuan 10.
Basic Database Concepts
Multiplication table. x
Part 1 of 2 Creating SQL Database and Binding to GridView
MEMBUAT LAPORAN : 1. Tambahkan File Crystal Report:
ADO.NET Accessing Databases in VS.NET
VB.NET Using Database.
Brief description on how to navigate within this presentation (ppt)
Chapter 10 ADO.
Database Applications
Accessing Databases with ADO.NET, Handling Exceptions, and Printing
Creating Data Base & Sql Data Source
Double click Microsoft Visual Studio 2010 on the Computer Desktop
5 × 7 = × 7 = 70 9 × 7 = CONNECTIONS IN 7 × TABLE
5 × 8 = 40 4 × 8 = 32 9 × 8 = CONNECTIONS IN 8 × TABLE
Click on Save All to save everything and choose a location etc
4 × 6 = 24 8 × 6 = 48 7 × 6 = CONNECTIONS IN 6 × TABLE
5 × 6 = 30 2 × 6 = 12 7 × 6 = CONNECTIONS IN 6 × TABLE
Chapter 10 Accessing Database Files
10 × 8 = 80 5 × 8 = 40 6 × 8 = CONNECTIONS IN 8 × TABLE MULTIPLICATION.
3 × 12 = 36 6 × 12 = 72 7 × 12 = CONNECTIONS IN 12 × TABLE
Views for Excel and Reporting
5 × 12 = × 12 = × 12 = CONNECTIONS IN 12 × TABLE MULTIPLICATION.
5 × 9 = 45 6 × 9 = 54 7 × 9 = CONNECTIONS IN 9 × TABLE
3 × 7 = 21 6 × 7 = 42 7 × 7 = CONNECTIONS IN 7 × TABLE
Database 2.
Data Base.
Presentation transcript:

Crystal Report CSC 204 2.0 Rapid Application Development Department of Statistics and Computer Science Faculty of Applied Sciences University of Sri Jayewardanepura

How to Start Project  Add New Item  Crystal Reports  Add  Using the Report wizard  Standard  OK  Create New Connection  OLE DB (ADO)  Next  Microsoft OLE DB Provider for SQL Server  Next  Select Sql Server name , Database Name enter userid , password.  next  Select all fields Finish Kasun@sjp.ac.lk

Design See Reference for more Kasun@sjp.ac.lk

Call the Crystal Reports in VB Call the Crystal Reports in VB.NET through Crystal Reports Viewer control Add CrystalReportViewer Controller Imports CrystalDecisions.CrystalReports.Engine Dim cryRpt As New ReportDocument cryRpt.Load(“Path\CrystalReport1.rpt") CrystalReportViewer1.ReportSource = cryRpt CrystalReportViewer1.Refresh() Kasun@sjp.ac.lk

App.config <?xml version="1.0"?> <configuration > <startup useLegacyV2RuntimeActivationPolicy = "true"> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/> </startup> </configuration> Kasun@sjp.ac.lk

Dim m_Report As New CrystalReport3 Form1.CrystalReportViewer1.ReportSource = m_Report m_Report.VerifyDatabase() m_Report.SetDataSource(ds.Tables(“csc”)) Kasun@sjp.ac.lk

Multiple Tables Select all table from the table list make relation between these selected tables (drag to the related field of the other table) Kasun@sjp.ac.lk

Reference Mastering VB.NET 2010 eBook www http://vb.net-informations.com/crystal-report/vb.net_crystal_report_sample_database.htm Kasun@sjp.ac.lk