posts - 21, comments - 31, trackbacks - 0, articles - 0

2007年1月23日

摘要: Microsoft ProClarity 6.3(Microsoft ProClarity Analytics Server 6.3 English and Microsoft ProClarity Desktop Professional 6.3 English) has been released tomanufacturingThis is the first release by the ...阅读全文

posted @ 2007-01-23 13:21 经霄 阅读(1018) 评论(3) 编辑

2006年9月19日

摘要: Microsoft Build Engine (MSBuild)是Microsoft和Visual Studio的新的生成平台。它使得开发人员能够在没有安装Visual Studio 的环境下进行编译。Windows Service应用程序是一种需要长期运行的应用程序,它没有用户界面,并且也不会产生任何可视化的输出(任何用户消息都会被写入Windows事件日志或者其它自定义的日志中)。因此,它特别...阅读全文

posted @ 2006-09-19 14:38 经霄 阅读(325) 评论(0) 编辑

2006年9月6日

posted @ 2006-09-06 13:24 经霄 阅读(246) 评论(0) 编辑

2006年5月10日

摘要: Google Ad Sensehttps://www.google.com/adsense/ Google AdWordshttps://adwords.google.com/select Google分析http://google.com/analytics/ Google问答http://answers.google.com/ GoogleBasehttp://base.google....阅读全文

posted @ 2006-05-10 17:09 经霄 阅读(291) 评论(0) 编辑

摘要: publicinterfaceIWriter{voidWrite();}publicclassLogWriter:IWriter{publicstaticinttypeID;IWriterMembers#regionIWriterMemberspublicvoidWrite(){//thrownewException("Themethodoroperationisnotimplemented.")...阅读全文

posted @ 2006-05-10 16:55 经霄 阅读(486) 评论(0) 编辑

2006年1月12日

摘要: Introduction to Dimension Security in Analysis Services 2005IntroductionAnalysis Services 2005 has two security models for securing data: dimension security and cell security. Dimension security is us...阅读全文

posted @ 2006-01-12 14:53 经霄 阅读(474) 评论(0) 编辑

摘要: 1 添加FlexGrid控件 在vs 2005的ToolBox中单击鼠标右键,在弹出的快捷菜单中选择Choose Items 在弹出的【Choose ToolBox Items】对话框中,选中【Com Components】选项卡,在列表框中选择【Microsoft Flex Grid Control version 6.0】 单击【OK】,Microsoft FlexGrid控件则会添加到To...阅读全文

posted @ 2006-01-12 09:53 经霄 阅读(3250) 评论(7) 编辑

2005年12月31日

摘要: 刚刚通过了学校的学位英语考试,终于可以轻松过新年了。在此,衷心祝愿那些仍在变态考试边缘挣扎的才子们考试顺利。阅读全文

posted @ 2005-12-31 09:58 经霄 阅读(287) 评论(0) 编辑

2005年12月9日

摘要: Visual Studio 2005 为我们带来了新的编程体验,提供了从需求分析到最终测试整个软件生命开发周期的解决方案。 但是,我们也可以看到一直以来围绕着Visual Studio有许多各种功能的插件,或是为Visual Studio 增加了新的功能或者对原有功能进行了优化,已经成为开发者不可缺少的工具。Visual Studio 2005 刚刚发布不久,所以本期我们精心挑选了在 Visual Stuio2003 中经典的同时已经升级到对Visual Studio 2005 支持的插件。
阅读全文

posted @ 2005-12-09 15:19 经霄 阅读(1215) 评论(1) 编辑

2005年12月8日

摘要: 连接Analysis Services 创建和处理Analysis Services对象,必须先要连接到Analysis Services 服务器Private Shared objServer As New ServerPrivate sub ConnectAnalysisServices() Dim strASConn As String = "Data Source=LocalHost;P...阅读全文

posted @ 2005-12-08 09:37 经霄 阅读(1531) 评论(0) 编辑

2005年12月7日

摘要: 在SQL Server 2005中,Analysis Management Object(AMO)是一种全新的编程对象模型。开发人员可以使用AMO创建维度,立方体,分区等Analysis Services对象。本文主要介绍AMO的对象模型,对象模型中的类,以及类中的属性和方法。[Quick Tips] 当你使用AMO对象进行编程的时候,如果需要处理数据库中的所有的对象,可以调用Database对象...阅读全文

posted @ 2005-12-07 15:59 经霄 阅读(812) 评论(5) 编辑

2005年12月1日

摘要: 1、市场系统。按地域先分为国内和海外,国内又分为深圳总部和各省市办事处,海外也分为国内深圳总部和各大洲地区部。按工作分工又可基本分为客户系统和产品系统。        深圳总部:包含国内、海外客户和产品系统的总部机关。国内包括各目标运营商(电信、网通、移动、联通等)系统部的总部和各产品(交换、光网络、移动、智能网等)国内系统部的总部。海外包括国际营销(客户)和产品国际(产品)的总部。还有负责客户接...阅读全文

posted @ 2005-12-01 08:29 经霄 阅读(672) 评论(0) 编辑

2005年11月28日

摘要: VS2003中对于应用程序配置文件(app.config或者web.config)只提供了读取的功能。而在VS2005中,对于配置文件的功能有了很大的加强。在VS2005中,对于应用程序配置文件的读写一般使用Configuration,ConfigurationManager两个类。ConfigurationManager类为客户应用程序提供了一个访问的功能。使用ConfigurationMana...阅读全文

posted @ 2005-11-28 10:00 经霄 阅读(3545) 评论(0) 编辑

2005年11月14日

摘要: Please examine the following code carefully.List any possible bugs in this code and correct the bugs.#define mkupper(c) ((c)-'a'+'A')void StringToUpper(char *pStr){ while(pStr) { *pStr = mkupper(*pStr...阅读全文

posted @ 2005-11-14 11:11 经霄 阅读(1048) 评论(0) 编辑

2005年11月1日

摘要: To specify a dataset, a Multidimensional Expressions (MDX) query must contain the following information: The number of axes (up to 128) The members from each dimension to include on each axis The name...阅读全文

posted @ 2005-11-01 09:13 经霄 阅读(704) 评论(0) 编辑