摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Xml.Serialization; using System.Xml; namespace ConsoleApplication1 { /// ... 阅读全文
摘要:
自从 2011 年 Mark Otto 和 Jacob Thornton 开发了 Bootstrap,我们第一次接触并熟知了 Bootstrap 。这些都归功于 Twitter!从那以后,它就非常流行并且成为了最好的响应式框架之一。Bootstrap 帮助开发者快速高效的开启大量新的 web 项目,... 阅读全文
摘要:
NuGet学习笔记(1)——初识NuGet及快速安装使用http://kb.cnblogs.com/page/143190/1. NuGet是什么?NuGet is a Visual Studio 2010 extension that makes it easy to add, remove, ... 阅读全文
摘要:
ALTER FUNCTION [dbo].[f_SysGetLunar]( @solarDay DATETIME) RETURNS varchar(200)AS BEGIN --转自CSDN 挖土 DECLARE @solData int DECLARE @offset int DECLARE @iLunar int DECLARE @i INT DECLARE @j INT DECLARE @yDays int DECLARE @mDays int DECLARE @mLeap int DECLARE @mLeapNum int DECLARE @bLeap smalli... 阅读全文
摘要:
VMWare从6.0升级到9.0,打开以前的虚拟机报错如下: “this virtual machine’s policies are too old to be run by this version of vmware workstation” 解决方法:办法如下:删除文件: Host.vmpl和Windows XP Professional.vmpl 打开文件:Windows XP Professional.vmx,删除里面的以下三行: policy.vm.mvmtid ="xx" policy.vm.managedVMTemplate = "TRUE&qu 阅读全文
摘要:
WebCakeDesktop.Updater.exe 是广告程序,卸载步骤参考http://malwaretips.com/blogs/webcake-desktop-updater-exe-removal/WebCakeDesktop.Updater.exe - Virus Removal GuideThis page is a comprehensive guide, which will remove WebCakeDesktop.Updater.exe from Internet Explorer, Firefox and Google Chrome. Please perform a 阅读全文
摘要:
SQLSERVER 删除重复记录 1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select * from peoplewhere peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1) 2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录delete from peoplewhere peopleId in (select peopleId from people gr... 阅读全文
摘要:
转自:http://www.cnblogs.com/bird/archive/2007/03/13/673470.htmlInserting images into a RichTextBox control (the OLE way)在RichText控件中插入OLE对象A Windows Forms based text editor with HTML output文本编辑器, 可以直接输出... 阅读全文