SAP在 2013年1月14日 released SAP Crystal Reportsdeveloper version for Microsoft Visual Studio - 2012
你可以从下面链接下载:
http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_5.exe

下载并安装入你的电脑。安装 完毕,可以看到那些曾经熟悉的工具。
Visual Studio 2012使用水晶报表Crystal Report


练习练习,算是重温一下使用Crystal report 创建报表的网页。在SQL Server 2012中创建一个表:

CREATE TABLE [dbo].[CustomerOrders]
(
    [CO] INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
    [Item] NVARCHAR(40) NOT NULL,
    [Description] NVARCHAR(100) NULL,
    [Unit] NVARCHAR(10),
    [Quantity] INT NOT NULL,
    [Price] DECIMAL(18,4) NOT NULL    
)
GO
CustomerOrders

相关文章:

  • 2021-07-15
  • 2021-08-12
  • 2022-12-23
  • 2021-12-23
  • 2021-09-15
  • 2021-07-24
  • 2022-12-23
猜你喜欢
  • 2021-12-19
  • 2022-12-23
  • 2021-09-16
  • 2021-05-31
  • 2022-12-23
  • 2021-09-20
  • 2022-12-23
相关资源
相似解决方案