摘要:
The following example creates a tab control that positions the tabs on the left side. <TabControl TabStripPlacement="Bottom" Margin="0, 0, 0, 10"> <TabItem Name="fontweight" Header="FontWeight"> <TabItem.Content> <TextBlock TextWrapping=&q 阅读全文
摘要:
要固定为自动适应宽度,通过菜单 Edit » Preferences 打开设置窗口,切换 Categories 到 Page Display 标签页。如图,设置 Default Page Zoom 为 Fit Width,再勾选 Forbid the change of the current Zoom factor during execution of ‘Go to Destination’ actions (these actions can be launched from bookmarks, hyperlinks, java-scripts).原文:http://www. 阅读全文
摘要:
C# Tip: Monitoring Clipboard Activity in C#Welcome to this week's installment of .NET Tips & Techniques! Each week, award-winning Architect and Lead Programmer Tom Archer demonstrates how to perform a practical .NET programming task using either C# or Managed C++ Extensions.My MFC book Visua 阅读全文
摘要:
from:http://msdn.microsoft.com/zh-cn/beginner/bb308767(en-us).aspxThe Visual Studio Express product line provides users with most of the same customization options that are found in the full-featured versions of Visual Studio 2005. You can take the default development environment and change colors, 阅读全文
摘要:
摘自:http://www.cnblogs.com/zfz15011/archive/2010/05/30/1747478.html一.写作前提之前在苏州的一家知名软件企业工作时,使用了他们提供的框架和类库,切实的感受到它们所带来的便利,它不仅提高了软件的开发速度,减少了代码的冗余,更重要的是提高了企业产品的开发效率及质量。而今换了工作环境(一家国外小软件公司),在缺少了这些有利的工具之后,发现公司之前的几乎所有项目都在重复的Copy代码,这不仅仅是延长项目的开发周期,最麻烦的莫过于对项目的管理借来及大的困难,看了让我心里有些不是滋味。之后,我就开始尝试着写些高效、集成的代码(已经写了一部分了 阅读全文
摘要:
1.什么是 Osql? osql 工具是一个 Microsoft Windows 32 命令提示符工具,您可以使用它运行 Transact-SQL 语句和脚本文件。osql 工具使用 ODBC 数据库应用程序编程接口 (API) 与服务器通讯。 在开始->运行 中键入cmd,使用 "OSQL -?"命令,就可以显示osql命令行的帮助。 注意:osql 工具的选项列表是区分大小的,在使用时注意。2.使用osql 一般情况下,可以这样使用 osql 工具: a.用户通过使用命令提示符时相似的方式交互输入 Transact-SQL 语句。 b.用户提交 osql 作业,方 阅读全文
摘要:
之前可能有个补丁要装,用于 Windows Server 2003 的 Windows PowerShell 1.0 本地化安装程序包 (KB926140) WindowsServer2003-KB926140-v5-x86-CHS.EXE我的sql server 2008 express是visual studio 2010自带的,所以当然它没有management studio ,自己下了一个安装,不过无法安装SQL Server 2008 Management Studio Express。提示未选择功能。刚从网上找到解决方案,本人测试通过,再次分享:VS2010自带的SQL Serve 阅读全文
摘要:
protected void Button1_Click(object sender, EventArgs e) { string path = ""; string physicsPath = Server.MapPath(Request.ApplicationPath); //将当前虚拟根路径转为实际物理路径 string toFindDirectoryName = "ss"; //要查找的文件夹名 FindDirectory(physicsPath + "\\", toFindDirectoryName, out path);. 阅读全文
摘要:
The lock keyword marks a statement block as a critical section by obtaining the mutual-exclusion lock for a given object, executing a statement, and then releasing the lock. The following example includes a lock statement. class Account { decimal balance; private Object thisLock = new Object(); publ 阅读全文
摘要:
Summary:如何入门使用Data Access Application Block,可以参考Enterprise Library 3.1中文帮助:数据访问应用程序块。这篇文章侧重在DAAB工作原理、代码结构上的一些注解。DAAB中抽象类Database提供了针对数据库操作的接口,从它派生出来的各个数据库类使用工厂方式创建。我们可以基于这个机制进行扩展,实现对其它数据库的支持,例如:Ent Lib 2.0 DAAB添加MySql扩展 MySql5.0.27+MySql .Net Connector 5.0.2beta。DAAB 希望使用通用接口对不同的数据库进行操作。DAAB的创建机制封装了 阅读全文