上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 69 下一页
摘要: /Applications/xcode451/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate/Applications/xcode451/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automa 阅读全文
posted @ 2013-01-19 01:21 zyip 阅读(330) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/vowei/archive/2012/08/10/2631949.htmlAutomating UI Testing Instruments User Guidehttps://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/UsingtheAutomationInstrument/UsingtheAutomationInstrument.htmlTesting, Debugging, and Performa 阅读全文
posted @ 2013-01-18 22:52 zyip 阅读(556) 评论(0) 推荐(0)
摘要: 工具->选项- > 项目解决方案中,有个在“解决方案资源管理器中跟踪活动项” 阅读全文
posted @ 2013-01-18 09:38 zyip 阅读(261) 评论(0) 推荐(0)
摘要: http://msdn.microsoft.com/zh-cn/library/cc159450.aspx安装用于 SharePoint 2013 的 Reporting Services SharePoint 模式http://msdn.microsoft.com/zh-cn/library/jj219068.aspx#bkmk_prereq 阅读全文
posted @ 2013-01-10 21:27 zyip 阅读(146) 评论(0) 推荐(0)
摘要: http://www.raywenderlich.com/tutorials 阅读全文
posted @ 2013-01-08 22:49 zyip 阅读(127) 评论(0) 推荐(0)
摘要: http://sv1/_layouts/15/SharePointProject2/ApplicationPage1.aspxC:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\ 阅读全文
posted @ 2013-01-03 12:23 zyip 阅读(141) 评论(0) 推荐(0)
摘要: Install-SPRSServiceInstall-SPRSServiceProxyget-spserviceinstance -all |where {$_.TypeName -like "SQL Server Reporting*"} | Start-SPServiceInstancehttp://msdn.microsoft.com/zh-cn/library/jj219068.aspx 阅读全文
posted @ 2013-01-02 13:19 zyip 阅读(156) 评论(0) 推荐(0)
摘要: 在after delete触发器中执行update语句,更新另外一个表单数据ALTER TRIGGER [dbo].[UpdateBookOfStudentFlag]on [dbo].[tblBookInvoiceDetail] AFTER DELETEAS BEGIN update BookOfStudent set flag_orderUsed=0 where BookOfStudent.id = 52812--(select Book_ofStudent_Id from deleted)END表错,提示受影响的行数多于1The row value(s) updated or dele.. 阅读全文
posted @ 2012-12-21 11:20 zyip 阅读(781) 评论(0) 推荐(0)
摘要: public static string path = "LDAP://192.168.8.1"; public static string admin = "administrator"; public static string pwd = ""; public static DirectoryEntry createDirectoryEntry(string admin, string pwd) { DirectoryEntry ldapConnection = new DirectoryEntry(... 阅读全文
posted @ 2012-12-21 09:48 zyip 阅读(213) 评论(0) 推荐(0)
摘要: textbox.maxlength可以限定输入内容的长度,但是如果想更精细地实现限定ansi字符串的长度该如何实现呢?ansi编码下,中文占2字节,英文1字节,textbox.maxlength无法限定混有中英文的ansi字符串。考虑一般情况下限定输入长度的方法:1.maxlength2.在KeyPress事件中处理3.在TextChanged中处理Dim oldTxt = "" Private Sub txtSingleTxt_TextChanged(sender As System.Object, e As System.EventArgs) Handles txtSi 阅读全文
posted @ 2012-12-13 12:53 zyip 阅读(348) 评论(0) 推荐(0)
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 69 下一页