上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 33 下一页
  2009年3月10日
摘要: 1.新建一个用户控件 2.向资源文件是添加一张图片,图片格式为bmp 3.选中用户控件图标,单击“右键->属性”把 “生成操作 的属性值改为:嵌入的资源(Action Resource) 4. Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->... 阅读全文
posted @ 2009-03-10 17:12 一路前行 阅读(431) 评论(0) 推荐(0) 编辑
  2009年2月27日
摘要: Update Table_1 Set UserName=Table_2.UserName From Table_2,Table_1 Where Table_2.UserCode=Table_1.UserCode 条件:UserCode 为主键 阅读全文
posted @ 2009-02-27 20:28 一路前行 阅读(1530) 评论(0) 推荐(0) 编辑
  2009年2月19日
摘要: 一、带一个参数Thread thrd = new Thread (new ParameterizedThreadStart(StartWriteToText));thrd.Start (strParameter);static void StartWriteToText(object objParameter){// ....} private static void StartThreadWri... 阅读全文
posted @ 2009-02-19 20:44 一路前行 阅读(934) 评论(0) 推荐(1) 编辑
  2009年2月18日
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> Author: sunfishlu Description: --%> /**//** * @author sunfish */ var storeMain = new Ext.... 阅读全文
posted @ 2009-02-18 13:36 一路前行 阅读(869) 评论(0) 推荐(0) 编辑
  2008年12月21日
摘要: 短连接是面向需要是才建立,完成了即断开,下次再需要时再连接。而长连接是客户端即使目前没有需要收发数据也连接着。 阅读全文
posted @ 2008-12-21 14:14 一路前行 阅读(2570) 评论(0) 推荐(0) 编辑
  2008年12月18日
摘要: SQL Server 2005相对于SQL Server 2000来说,无论是性能还是功能都有一个相当大的提高,甚至可以用“革命”来形容这一次升级。SQL Server 2005使 SQL Server 跻身于企业级数据库行列。在数据高可用性方面,SQL Server 2005为用户提供了数据镜像、复制、故障转移群集、日志传送功能。本文向读者简单介绍SQL Server 2005复制功能。 一、复... 阅读全文
posted @ 2008-12-18 00:45 一路前行 阅读(1377) 评论(0) 推荐(0) 编辑
  2008年12月10日
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--//SingleMdf为数据库名称 --①设置数据库为可更新状态 use master go sp_configure 'allow updates',1 go reconfigure with ov... 阅读全文
posted @ 2008-12-10 18:09 一路前行 阅读(825) 评论(0) 推荐(0) 编辑
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 阅读全文
posted @ 2008-12-10 16:43 一路前行 阅读(226) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->//1.文件夹创建、移动、删除--------- //创建文件夹 Directory.CreateDirectory(Server.MapPath("a")); Directory.Create... 阅读全文
posted @ 2008-12-10 00:17 一路前行 阅读(2284) 评论(2) 推荐(0) 编辑
  2008年12月7日
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> Div Content 阅读全文
posted @ 2008-12-07 23:12 一路前行 阅读(622) 评论(0) 推荐(0) 编辑
  2008年12月1日
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Windows.Forms; using System.Diagnost... 阅读全文
posted @ 2008-12-01 18:18 一路前行 阅读(2403) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Xml; namespace D... 阅读全文
posted @ 2008-12-01 16:55 一路前行 阅读(533) 评论(0) 推荐(0) 编辑
摘要: foreach (Control ctrlSingle in this.Controls) { if (ctrlSingle is RadioButton) { if (ctrlSingle.Text == strDeviceType) { (ctrlSingle as RadioButton).Checked = true;... 阅读全文
posted @ 2008-12-01 16:14 一路前行 阅读(463) 评论(0) 推荐(0) 编辑
  2008年11月29日
摘要: “new”是C++的一个关键字,同时也是操作符. 当我们使用关键字new在堆上动态创建一个对象时,它实际上做了三件事:1、获得一块内存空间2、调用构造函数3、返回正确的指针 阅读全文
posted @ 2008-11-29 00:02 一路前行 阅读(887) 评论(0) 推荐(0) 编辑
  2008年11月27日
摘要: WEB开发工具的使用已经非常普及,如果想要更方便于开发的话,不妨看看本文介绍的15款基于浏览器扩展的WEB开发工具。 1.Firebug Firebug是一款基于Firefox的浏览器扩展组件,它集成了网页CSS ,文档对象模型( DOM )和JavaScript调试技术于一身。并且Firebug特别对JavaScript调试部分做了重点规划,如果你侧重于JavaScript调试... 阅读全文
posted @ 2008-11-27 12:47 一路前行 阅读(881) 评论(0) 推荐(0) 编辑
摘要: VC++.NET是指在托管CLR(公共语言运行库)上建立的VC++程序才叫VC++.NET 阅读全文
posted @ 2008-11-27 00:28 一路前行 阅读(1066) 评论(0) 推荐(0) 编辑
  2008年11月25日
摘要: 电驴资源,也可以将他复制到迅雷中: ed2k://|file|[Visual.Studio.2008.Team.Suite.%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%E6%AD%A3%E5%BC%8F%E7%89%88].zh-Hans_visual_studio_team_system_2008_team_suite_x86_x64wow_dvd_X14-2645... 阅读全文
posted @ 2008-11-25 18:22 一路前行 阅读(420) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--建表存储过程 Create Proc [dbo].[PN_CreateHistoryDataTable] AS Begin Declare @Count int Declare @CollCo... 阅读全文
posted @ 2008-11-25 17:49 一路前行 阅读(1255) 评论(0) 推荐(0) 编辑
摘要: 1、报表格式 .打开pdm, 右键选择"new"->"report" .删除右面的已经选择item .双击左面的“Available items” ->"List of tables" .双击左面的“Available items” ->"table" -> "List of tables cloumns" .右键右面已选择的"table" -> "List of tables clou... 阅读全文
posted @ 2008-11-25 00:24 一路前行 阅读(423) 评论(0) 推荐(0) 编辑
  2008年11月16日
摘要: 判断你的TreeNode的Level,根据Level的不同设置不同的右键菜单,通常触发的是鼠标点击事件 myTreeView.MouseClick += new MouseEventHandler(myTreeView_MouseClick); void myTreeView_MouseClick(object sender, MouseEventArgs e) { myTreeView.... 阅读全文
posted @ 2008-11-16 02:24 一路前行 阅读(2683) 评论(2) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 33 下一页