随笔 - 657  文章 - 4  评论 - 213  阅读 - 432万
11 2008 档案
VC++ New 操作符
摘要:“new”是C++的一个关键字,同时也是操作符. 当我们使用关键字new在堆上动态创建一个对象时,它实际上做了三件事:1、获得一块内存空间2、调用构造函数3、返回正确的指针 阅读全文
posted @ 2008-11-29 00:02 一路前行 阅读(889) 评论(0) 推荐(0) 编辑
几款浏览器JavaScript调试工具
摘要:WEB开发工具的使用已经非常普及,如果想要更方便于开发的话,不妨看看本文介绍的15款基于浏览器扩展的WEB开发工具。 1.Firebug Firebug是一款基于Firefox的浏览器扩展组件,它集成了网页CSS ,文档对象模型( DOM )和JavaScript调试技术于一身。并且Firebug特别对JavaScript调试部分做了重点规划,如果你侧重于JavaScript调试... 阅读全文
posted @ 2008-11-27 12:47 一路前行 阅读(884) 评论(0) 推荐(0) 编辑
VC++.Net与VC++的区别
摘要:VC++.NET是指在托管CLR(公共语言运行库)上建立的VC++程序才叫VC++.NET 阅读全文
posted @ 2008-11-27 00:28 一路前行 阅读(1072) 评论(0) 推荐(0) 编辑
Visual Studio 2008简体中文正式版下载地址
摘要:电驴资源,也可以将他复制到迅雷中: 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 一路前行 阅读(426) 评论(0) 推荐(0) 编辑
SQLServer自动建表存储过程
摘要: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 一路前行 阅读(1261) 评论(0) 推荐(0) 编辑
PowerDesign报表操作
摘要: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 一路前行 阅读(429) 评论(0) 推荐(0) 编辑
WinForm TreeView 右键菜单
摘要:判断你的TreeNode的Level,根据Level的不同设置不同的右键菜单,通常触发的是鼠标点击事件 myTreeView.MouseClick += new MouseEventHandler(myTreeView_MouseClick); void myTreeView_MouseClick(object sender, MouseEventArgs e) { myTreeView.... 阅读全文
posted @ 2008-11-16 02:24 一路前行 阅读(2687) 评论(2) 推荐(0) 编辑
SQLServer中获取当前数据库名称
摘要:(1):Select Name From Master..SysDataBases Where DbId=(Select Dbid From Master..SysProcesses Where Spid = @@spid) (2):--NoteMessage 为数据库名称 if db_id('NoteMessage')=(Select Dbid From Master..SysProcesse... 阅读全文
posted @ 2008-11-16 01:53 一路前行 阅读(3524) 评论(3) 推荐(0) 编辑
获取某表所有列名和字段类型
摘要:Select sc.[name],st.[name] From SysColumns sc Left Join SysTypes st On sc.XUserType=st.XUserType Where id=object_id('T_User') 阅读全文
posted @ 2008-11-16 01:25 一路前行 阅读(517) 评论(0) 推荐(0) 编辑
MsComm控件注册失败
摘要:首先在VB安装目录下找到下列三个文件: Mscomm.srg, Mscomm32.ocx,Mscomm32.dep , 把这三个文件拷贝到Windows的system目录下(注意WinXP下是System32)。然后用Windows下的注册工具regsvr32注册该OCX控件,例如: Regsvr32 … system32"Mscomm32.ocx . 注册成功后用记事本打开Mscomm... 阅读全文
posted @ 2008-11-15 16:43 一路前行 阅读(778) 评论(0) 推荐(0) 编辑
C#ToString格式大全
摘要:C 货币 2.5.ToString("C") ¥2.50 D 十进制数 25.ToString("D5") 00025 E 科学型 25000.ToString("E") 2.500000E+005 F 固定点 25.ToString("F2") 25.00 G 常规 2.5.ToString("G") 2.5 N 数字 2500000.ToString("N") 2,500,000.00 X 十... 阅读全文
posted @ 2008-11-11 17:24 一路前行 阅读(2694) 评论(1) 推荐(0) 编辑
不错的UML建模工具StarUML
摘要:开源项目 http://nchc.dl.sourceforge.net/sourceforge/staruml/staruml-5.0-with-cm.exe 阅读全文
posted @ 2008-11-10 09:28 一路前行 阅读(688) 评论(1) 推荐(1) 编辑
WinForm DataGridView 显示行号
摘要:private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { Rectangle rectangle = new Rectangle(e.RowBounds.Location.X, e.... 阅读全文
posted @ 2008-11-09 17:28 一路前行 阅读(1836) 评论(0) 推荐(0) 编辑
SQLServer 导数据语句
摘要:Select 'Insert Into T_Functions (SysCode,FunCode,FunRight,ParentCode,FunIndex,FunFile,FunType,PicturePath,Remark) Values (', ''''+ SysCode+''',',''''+FunCode +''',',''''+FunCode +''',',''& 阅读全文
posted @ 2008-11-05 12:30 一路前行 阅读(268) 评论(0) 推荐(0) 编辑
微软发布Microsoft图表控件
摘要:支持的操作系统: Windows Server 2003 Service Pack 2; Windows Server 2008; Windows Vista; Windows XP Service Pack 3 .NET Framework:.NET Framework 3.5 SP1 也就是说该控件只考虑支持.Net Framework 3.5 SP1... 阅读全文
posted @ 2008-11-05 11:59 一路前行 阅读(502) 评论(0) 推荐(0) 编辑
Firefox隐藏菜单栏
摘要:Hide Menubar Compact Menu 2 Personal Menu 阅读全文
posted @ 2008-11-03 20:20 一路前行 阅读(1475) 评论(0) 推荐(2) 编辑
C# WinForm 控件光标
摘要:1 private void MoveCmdToLast(TextBox txtCmdInput, String selCmd)//把所选中的命令移动到最下一行然后显示在文本框中 2 { 3 String txtStr = txtCmdInput.Text; 4 int start = txtStr.IndexOf(selC... 阅读全文
posted @ 2008-11-01 12:41 一路前行 阅读(1965) 评论(1) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示