计划任务 : 个人理解, 就是后台控制程序要求在一定的时间执行相应的任务. 直接上代码: 之前,因为工作需要. 要求每天在凌晨2:00,执行要做的数据 1.1 声明一个接口 Ijob 方法: 执行 public interface IJob { //执行...
分类:
其他好文 时间:
2014-07-07 00:23:55
阅读次数:
277
Windows多文档窗口编程中,需要注意的以下几点:1、主窗口与文档窗口之间还有一个Client Window。2、创建文档窗口。通常认为创建子窗口就用CreateWindow,但是MDI中创建文档窗口时,用的是发送消息的方式。具体的CreateWindow的工作由Client Window来完成。...
??
PAC成本更新事务处理
DECLARE
l_itfs_rec mtl_transactions_interface% ROWTYPE;
BEGIN
--插入接口表
SELECT mtl_material_transactions_s.nextval
INTO l_txn_header_id
FROM dual;
v_date ...
分类:
其他好文 时间:
2014-07-04 09:28:03
阅读次数:
791
??
新增和更新价目表行
--目的:在已有的价目表头基础上,增加行信息
--限制:该api有些问题,如果强制增加头信息,会有很多问题,所以该例子只是在已有头信息基础上,增加行信息
--需要手动传参的部分:见注释
--注意事项:无需模拟登陆
DECLARE
p_list_header_id NUMBER(10 );
p_inventory_i...
分类:
其他好文 时间:
2014-07-04 08:28:21
阅读次数:
322
#import "MainViewController.h"
@interface MainViewController ()
@end
@implementation MainViewController
- (void)viewDidLoad
{
[super viewDidLoad];
//下载文件
[self download];
}
-(void)dow...
分类:
移动开发 时间:
2014-07-04 07:36:55
阅读次数:
347
方法Application.AddMessageFilternamespace System.Windows.Forms{ // 摘要: // 定义消息筛选器接口。 public interface IMessageFilter { // 摘要: ...
分类:
其他好文 时间:
2014-07-04 00:05:06
阅读次数:
254
使用原生态的api上传文件的实现:
#import "MainViewController.h"
@interface MainViewController ()
@property (weak, nonatomic) UIImageView *imageView;
@end
@implementation MainViewController
- (void)viewDidLoad
{...
分类:
移动开发 时间:
2014-07-03 17:11:43
阅读次数:
279
Java层的Binder对象模型:
IBinder
IBinder是Binder通信机制中的核心部分(Base interface for a remotable object, the core part of a lightweight remote procedure call mechanism designed for high performance when pe...
分类:
其他好文 时间:
2014-07-03 16:46:20
阅读次数:
204
IOS提供了叫做MPMoviePlayerController MPMoviePlayerViewController两个类,可以轻松用来实现视频播放。MPMoviePlayerViewController只能全屏播放视频。
#import "MainViewController.h"
#import
@interface MainViewController ()
//视频播放器
@pr...
分类:
移动开发 时间:
2014-07-03 16:39:10
阅读次数:
195
一、安装1、master安装yuminstallsalt-master
vi/etc/salt/master
interface:192.168.55.1
/etc/init.d/salt-masterstart2、minion安装yuminstallsalt-minion
vi/etc/salt/minion
master:192.168.55.1
id:192.168.5.31
/etc/init.d/salt-minionstart配置文件interface、master..
分类:
其他好文 时间:
2014-07-03 14:59:29
阅读次数:
312