上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 44 下一页
摘要: http://help.teamprise.com/3.2/index.jsp?topic=/com.teamprise.help/plugindoc/ba_shelveset.htmlShelving and Unshelving Pending ChangesShelving and Unshelving Pending ChangesThe Shelve/Unshelve task allows you to set aside pending changes in your TFS workspace if you want to work on something else for 阅读全文
posted @ 2011-05-30 13:39 higirle 阅读(585) 评论(0) 推荐(0) 编辑
摘要: Create a realizes relationship between two elements using VisioIn a static structure (static structure diagram: A diagram that shows the static structure of a model; that is, the elements that exist (such as classes and types), the internal structure of the elements, and their relationships to one . 阅读全文
posted @ 2011-05-24 10:44 higirle 阅读(269) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/laosu/archive/2011/05/23/2054491.html10章 异步编程模式【摘要】:异步编程充分利用多线程技术带来的好处,而不需要程序员了解多线程开发中的复杂细节。本章讲述了基于IAsyncResult的异步模式、基于事件的异步模式。 第1节 程序的同步执行和异步执行1、同步概念:若在代码中调用了一个方法,需要等待此方法所有的代码执行完毕之后,才能回到原来的地方执行下一行代码,这种程序运行方式称为同步。2、异步概念: 在调用方法之后,不用等待方法执行完成就马上执行下一条语句,这种程序运行方式称为异步。3、异步调用的本质:不在主. 阅读全文
posted @ 2011-05-23 18:24 higirle 阅读(512) 评论(0) 推荐(0) 编辑
摘要: Visio Stencil and Template for UML 2.0http://hi.baidu.com/dongyuejiang/blog/item/43559fef49a104eace1b3ed5.htmlThe UML stencil for Microsoft Visio supports symbols of the UML 2.0, specified in OMG UML Superstructure Specification, formal/05-07-04, as well previous UML versions 1.5, 1.4, 1.3 and 1.1.. 阅读全文
posted @ 2011-05-23 17:28 higirle 阅读(893) 评论(0) 推荐(0) 编辑
摘要: http://hi.baidu.com/snacksky/blog/item/9e99f4f1cbf330de0a46e08d.html--摘要:Microsoft Visio 2000 Professional Edition 和 Enterprise Edition 包含通过逆向工程将 Microsoft Visual C++、Microsoft Visual Basic 和 Microsoft Visual J++ 代码转换为统一建模语言 (UML) 类图表模型的技术。本文将讨论从每种语言实施逆向工程的步骤。目录简介概述步骤 1:自定义开发环境步骤 2:打开代码项目以实施逆向工程步骤 . 阅读全文
posted @ 2011-05-23 17:26 higirle 阅读(1686) 评论(0) 推荐(0) 编辑
摘要: UML描述模型的内容有三种 分别是 事物、关系和图事物有:类,接口,用例,组件,结点,交互,包,注释等类: 类分为三部分,顶部为 类名,中间为 属性,下层为 方法在属性或方法前面有三种符号分别是:+,-,#;代表属性或方法的可见性级别;+ public - private # protected类名:如果是抽象类,类名用斜体表示。非抽象类用正体显示属性: 可见性(+-#)属性名[:类型][=默认值] 如: +eye:int=2方法: 可见性(+-#) 方法名([参数名:类型][,参数名:类型])接口用例:UML的关系关联关系,泛化关系,依赖关系,实现关系关联关系:关联关系是有方向的 分为 双. 阅读全文
posted @ 2011-05-23 17:25 higirle 阅读(764) 评论(0) 推荐(0) 编辑
摘要: Visio如何添加枚举类型 1. 新建DataType2. 选择DataType -> Property -> Stereotype ->enumeration3. 添加其他的Attribute,作为Enumeration值。本文和大家重点讨论一下用Visio画UML图基本操作,画UML图有好多种工具,VISIO只是其中一种,VISIO的动作非常轻快.很多人都在用。下面就让我们一起来看一下具体介绍吧。用Visio画UML图基本操作目的画UML图有好多种工具,VISIO只是其中一种.VISIO的动作非常轻快.很多人都在用.但是对众多的C++程序员来讲,存在着一个问题,那就是VI 阅读全文
posted @ 2011-05-23 17:24 higirle 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: 问题描述:有一个查询如下,去掉TOP 1的时候,很快就出来结果了,但加上TOP 1的时候,一般要2~3秒才出数据,何解?SELECT TOP 1 A.INVNO FROM A, BWHERE A.Item = B.ItemNumber AND B.OwnerCompanyCode IS NOT NULL问题原因分析:在使用TOP 1的时候,SQL Server会尽力先找出这条TOP 1的记录,这就导致它采用了与不加TOP时不一致的扫描算法,SQL Server查询优化器始终认为,应该可以比较快的找到匹配的第1条记录,所以一般是使用嵌套循环的联接,则不加TOP 1时,SQL Server会根据结 阅读全文
posted @ 2011-05-19 13:05 higirle 阅读(323) 评论(0) 推荐(0) 编辑
摘要: DataGrid VirtualMode View Code usingSystem;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Drawing;usingSystem.Windows.Forms;namespaceWindowsFormsApplication8{publicpartialclassVirtualJustInTimeDemo:System.Windows.Forms.Form{privateDataGridViewdataGridView1=newDataGridView();privateCachememo 阅读全文
posted @ 2011-05-17 18:12 higirle 阅读(583) 评论(0) 推荐(0) 编辑
摘要: http://www.fgcu.edu/support/office2007/word/changes.aspTrack Changes is a great feature of Word that allows you to see what changes have been made to a document. The tools for track changes are found on the Reviewing tab of the Ribbon.Begin Track ChangesTo keep track of the changes you’ll be making 阅读全文
posted @ 2011-05-17 14:24 higirle 阅读(547) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 44 下一页