SQL: Structured Query Language一、Objectives in this chapter:invoke the SQL procedureselect columnsdefine new columnsspecify the table(s) to readspecify...
分类:
数据库 时间:
2014-08-07 03:03:38
阅读次数:
478
我创建了一个打开文件的函数。代码内容:functionOpenfile{
Add-Type-AssemblyNameSystem.Windows.Forms
$openfile=New-ObjectSystem.Windows.Forms.OpenFileDialog
$openfile.Filter=‘图片|*.jpg|AllFiles|*.*‘
$openfile.InitialDirectory="C:\ManageOperate\StaffPhoto"
[vo..
分类:
其他好文 时间:
2014-08-05 23:00:10
阅读次数:
371
Expression> expre = expression; var q = db.order_info; IQueryable query = q; if (expre != null) { ...
分类:
其他好文 时间:
2014-08-02 01:36:02
阅读次数:
350
今天在工作中用到了并行,于是就总结了一下关于并行的方法使用,也为自己做个备忘。命名空间:System.Threading.Tasks;重要的类:Parallel;重要的方法:3个;[其他都是重载]一.Invoke方法:任务已生成;用法一:注意:1.都是指单独的任务或活动;【不要相互调用】 2.需要事...
分类:
其他好文 时间:
2014-08-01 18:59:02
阅读次数:
210
今天在写一个修改语句的时候,竟然报了:SourcenotfoundforTsOrderErrorDaoImpl$$FastClassByCGLIB$$99fffb3.invoke(int,Object,Object[])line:notavailable这么一个错,上网查了资料,有的说是SQL语句的问题,但是我把语句放到数据库运行没问题,还有说tomcat的问题,这些都排..
分类:
其他好文 时间:
2014-07-30 12:31:04
阅读次数:
1091
直接上例子: void updateUI() { if (dateTimePicker1.InvokeRequired) { dateTimePicker1.Invoke((MethodInvoker)delegate {...
分类:
其他好文 时间:
2014-07-30 11:26:43
阅读次数:
203
打开sharepoint powershell 2013,使用管理员方式打开
逐行输入以下命令:
$Admin = new-object Microsoft.SharePoint.Administration.SPSiteAdministration('http://10.0.0.52:2014’)
$Admin.ClearMaintenanceMode()
$site.Maintena...
分类:
Web程序 时间:
2014-07-28 00:02:59
阅读次数:
246
Invoker
Problem Description
On of Vance's favourite hero is Invoker, Kael. As many people knows Kael can control the elements and combine them to invoke a powerful skill. Vance like Kael v...
分类:
其他好文 时间:
2014-07-26 02:16:36
阅读次数:
312
在Invoke或者BeginInvoke的使用中无一例外地使用了委托Delegate,至于委托的本质请参考我的另一随笔:对.net事件的看法。一、为什么Control类提供了Invoke和BeginInvoke机制?关于这个问题的最主要的原因已经是dotnet程序员众所周知的,我在此费点笔墨再次记录...
分类:
其他好文 时间:
2014-07-26 00:52:56
阅读次数:
175
一个block其实是一个对象,有他自己的属性,结构如下isa指针,所有对象都有该指针,用于实现消息传递等功能(ias一般指向父类、元类)flags,用于按bit位表示一些block的附加信息reserved,保留变量。invoke,函数指针,指向具体的block实现的函数调用地址。descripto...
分类:
其他好文 时间:
2014-07-25 16:41:12
阅读次数:
413