摘要: 1.了解和下载Ubuntu目前Ubuntu的最新稳定版本是7.04,最新稳定的LTS版本(Ubuntu 的 “LTS” 版本拥有长期支持,桌面版本为3年,服务器版本为5年)是6.06,最新测试版本是7.10 Tribe 4,开发代号是Gutsy Gibbon,意思是“勇敢的长臂猿”,汗另外说一下有关Ubuntu各个版本的区别,帮助您确定您要下载哪一个——A、 按支持的时间划分普通版:提供18个月的在线更新支持;LTS版:上面说了,桌面版本提供3年,服务器版本提供5年的在线更新支持。B、 按应用划分桌面版:应用于台式机、笔记本等私人、家用、办公商务等用途;服务器版:用于服务器,据说没有图形界面。 阅读全文
posted @ 2012-07-14 23:06 simplefrog 阅读(11975) 评论(0) 推荐(0) 编辑
摘要: 网页上可拖动的透明窗体其实现参考了 阅读全文
posted @ 2012-07-14 22:26 simplefrog 阅读(167) 评论(0) 推荐(0) 编辑
摘要: ".*"="application/octet-stream"".001"="application/x-001"".301"="application/x-301"".323"="text/h323"".906"="application/x-906"".907"="drawing/907"".a11"="applicatio 阅读全文
posted @ 2012-07-14 22:15 simplefrog 阅读(660) 评论(0) 推荐(0) 编辑
摘要: In this month's column I will focus on some data management techniques commonly required in enterprise applications. These include saving parent-child data in a multitier application using ADO.NET, ADO.NET transactions, merge techniques, and a number of other ADO.NET features. I'll also disc 阅读全文
posted @ 2012-07-14 22:12 simplefrog 阅读(207) 评论(0) 推荐(0) 编辑
摘要: One of the key features of the ADO.NET DataSet is that it can be a self-contained and disconnected data store. It can contain the schema and data from several rowsets in DataTable objects as well as information about how to relate the DataTable objects—all in memory. The DataSet neither knows nor c. 阅读全文
posted @ 2012-07-14 22:08 simplefrog 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Hal Berenson, Phil Bernstein, Jim Gray, Jim Melton, Elizabeth O'Neil, and Patrick O'Neil June 1995ANSI SQL-92 [MS, ANSI] defines Isolation Levels in terms of phenomena: Dirty Reads, Non-Repeatable Reads, and Phantoms. This paper shows that these phenomena and the ANSI SQL definitions fail to 阅读全文
posted @ 2012-07-14 21:56 simplefrog 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 在开发智能监控系统时需要不同的监控器可播放不同的声音,如果多个监控器同时报警,声音需同时播放在解决该问题时,使用了NET框架提供的声音播放类,效果都不理想,当多个监控器同时报警时,声音会出现延迟或听起来很混乱最终找到了解决方法,直接调用操作系统的Win32 API,自己实现声音播放功能参考codeprojecthttp://www.codeproject.com/Articles/3352/A-low-level-audio-player-in-C 阅读全文
posted @ 2012-07-14 21:42 simplefrog 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 下图是智能监控系统自定义的WinForm窗体实现方法参见codeprojecthttp://www.codeproject.com/Articles/6048/Creating-Bitmap-Regions-for-Forms-and-Buttons 阅读全文
posted @ 2012-07-14 20:49 simplefrog 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 在做智能监控系统时,需要用红外遥控器来操作系统功能,而红外遥控器的SDK提供了将遥控器按键信号转换成电脑键盘按键的功能。下面的文章就实现了应用程序中的键盘处理功能 This article shows several different techniques for handling .NET keyboard events in an application Whenever a new tool comes out, if it has something to do with building user interfaces, one of the very first question 阅读全文
posted @ 2012-07-14 20:34 simplefrog 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 如果觉得Visual studio提供的按钮控件不好看,试试下面文章的控件参考:codeprojecthttp://www.codeproject.com/Articles/18000/Enhanced-GlassButton-using-GDI 阅读全文
posted @ 2012-07-14 20:27 simplefrog 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 在高校排课模块中有这样一个需求:一条教学班记录有多列信息,满屏显示也无法显示完所有列,在DataGrid中出现水平滚动条其中教学班代码、课程名称、星期一到星期五这七列的信息需要同时在窗口中全部显示,如下图所示而从课程代码到授课教师22列是参考信息,不必全部列同时显示在窗口中,如下面的三幅图片所示在这不必全部列同时显示的22列中,如需要参考某列信息可使用调整列显示顺序功能拖动靠左的位置为了解决拖动水平滚动条查看不必同时显示的22列教学班信息时需要同时在窗口中全部显示的教学班代码、课程名称、星期一到星期五这七列信息不被隐藏这个问题笔者使用了两个DataGrid,同时全部显示的七列放在左边的Data 阅读全文
posted @ 2012-07-14 19:08 simplefrog 阅读(2499) 评论(1) 推荐(0) 编辑
摘要: 应用遗传算法很有趣的一个示例参见MSDNhttp://msdn.microsoft.com/en-us/magazine/cc163934.aspx 阅读全文
posted @ 2012-07-14 16:44 simplefrog 阅读(358) 评论(0) 推荐(0) 编辑
摘要: Genetic programming is a branch of genetic algorithms. The main difference between genetic programming and genetic algorithms is the representation of the solution. Genetic programming creates computer programs in the lisp or scheme computer languages as the solution. Genetic algorithms create a st. 阅读全文
posted @ 2012-07-14 16:37 simplefrog 阅读(870) 评论(0) 推荐(0) 编辑
摘要: One of the most enduring challenges in writing user interfaces is figuring out how to display large amounts of data efficiently and intuitively without bewildering the user. The problem becomes particularly thorny when the interface must reflect hierarchical relationships within the data that the us 阅读全文
posted @ 2012-07-14 15:51 simplefrog 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 详细讲解了如何自定义DataGrid控件,将多种控件(如:进度条、按钮、下拉框)绑定到数据列中参考MSDNPart 1:http://msdn.microsoft.com/en-us/library/ms996449Part 2:http://msdn.microsoft.com/en-us/library/ms996453.aspx 阅读全文
posted @ 2012-07-14 15:38 simplefrog 阅读(166) 评论(0) 推荐(0) 编辑
摘要: This sample contains the code and demonstrates the use of a Grid control that is modelled after the Microsoft Money transaction register view. It provides an editable grid that can bind to fields and/or properties of a the row type object that can layout those fields in multiple lines per row. It al 阅读全文
posted @ 2012-07-14 15:28 simplefrog 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 在管理信息系统(MIS)的数据维护的界面中,一些数据字段往往包含多重信息,如性别编码01代表男、02代码女,此时Multi-Column ComboBox就派上用场了NET框架默认提供的ComboBox只能显示一列的信息,Multi-Column ComboBox可以同时显示多列,如上图中显示了代码和代码描述两列的信息 实现代码:因涉及到实际应用中的项目,暂不提供下载,请谅解 阅读全文
posted @ 2012-07-14 15:20 simplefrog 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 下图是高校排课模块中使用Dragging and Dropping DataGrid的效果其实现思路和代码参见MSDN http://msdn.microsoft.com/en-us/library/ms996459.aspx 阅读全文
posted @ 2012-07-14 14:33 simplefrog 阅读(214) 评论(0) 推荐(0) 编辑
摘要: Northwoods GoDiagram控件库用于开发图形应用Northwoods GoDiagram控件库是付费软件,其官方网址为http://www.nwoods.com/Northwoods为开发人员提供了开发文档和示例程序(InteractiveForce示例程序演示了force-directed autolayout;OrgCharter示例程序演示Zoom In、Zoom Out和鹰眼功能;SubGraphApp演示了组合图形的功能;UpdateDemo演示了图形对象撤销和重做功能)在配网单线图排版中使用了GoDiagram控件库提供的强大的图形功能,使开发工作可以集中在业务方面 阅读全文
posted @ 2012-07-14 11:50 simplefrog 阅读(3659) 评论(1) 推荐(0) 编辑
摘要: Crownwood公司专注于提供用户界面控件以改善您应用程序的外观。使用这些控件将节省开发人员的时间和提供效率,同时为项目节省费用Magic UI Library 1.7.4.0是Crownwood公司开放源代码、免费的控件库下图是Magic UI Library 1.7.4.0的源代码截图在高校排课模块中使用了Crownwood Magic UI Library 1.7.4.0中的Dock控件使排课模块具有了Visual Studio IDE一样的Docking功能除了Dock控件Magic UI Library 1.7.4.0还提供了其他功能非常强大的控件 阅读全文
posted @ 2012-07-14 11:16 simplefrog 阅读(1243) 评论(0) 推荐(0) 编辑