Remark
// create by kim 20140805
public void Remark_insertChangeHeader(Editor e)
{
userinfo userInfo;
;
e.unmark();
e.gotoLine(1);
e.gotoCol(1);
select name from userInfo where userInfo.id == curUserId();
e.insertLines('// '+ strUpr(enum2Value(currentAOLayer())) +' Changed on ' + date2str(today(),123,2,1,3,1,4, DateFlags::FormatAll ) + ' at ' + time2str(timenow(), 1, 1) + ' by ' + curuserid() + ' ' + userInfo.name + '\n'); }
// create by kim 20140805
void Remark_BeginOrigAndEnd(Editor e)
{
userinfo userInfo;
int startLine = e.selectionStartLine();
int endLine = e.selectionEndLine();
; select name from userInfo where userInfo.id == curUserId(); e.gotoCol(1);
e.unmark();
e.gotoLine(startline);
e.insertLines('\t// '+strUpr(enum2str(currentAOLayer()))+ ' on ' + date2str(today(),321,2,3,2,3,4 ) + ' at ' + time2str(timeNow(), 1, 1) + ' Changed by ' +curUserId()+ ' ' + userInfo.name + ' -Begin\n');
e.insertLines('\t/*' +' Original\n');
e.gotoLine(endline+3);
e.insertLines('\t*/' + '\n');
e.insertLines('\t// '+strUpr(enum2str(currentAOLayer()))+' on ' + date2str(today(),321,2,3,2,3,4 ) + ' at ' + time2str(timeNow(), 1, 1) + ' Changed by ' +curUserId()+ ' ' + userInfo.name + ' -End\n'); }
// create by kim 20140805
public void Remark_insertCreateHeader(Editor e)
{
userinfo userInfo;
;
e.unmark();
e.gotoLine(1);
e.gotoCol(1);
select name from userInfo where userInfo.id == curUserId(); e.insertLines('// '+ strUpr(enum2Value(currentAOLayer())) +' Created on ' + date2str(today(),123,2,1,3,1,4, DateFlags::FormatAll ) + ' at ' + time2str(timenow(), 1, 1) + ' by ' + curuserid() + ' ' + userInfo.name + '\n');
}
// create by kim 20140805
void Remark_BeginAndEnd(Editor e)
{
userinfo userInfo;
int startLine = e.selectionStartLine();
int endLine = e.selectionEndLine();
; select name from userInfo where userInfo.id == curUserId(); e.gotoCol(1);
e.unmark();
e.gotoLine(startline);
e.insertLines('\t// '+strUpr(enum2str(currentAOLayer()))+ ' on ' + date2str(today(),321,2,3,2,3,4 ) + ' at ' + time2str(timeNow(), 1, 1) + ' Changed by ' +curUserId()+ ' ' + userInfo.name + ' -Begin\n');
e.gotoLine(endline+2);
e.insertLines('\t// '+strUpr(enum2str(currentAOLayer()))+' on ' + date2str(today(),321,2,3,2,3,4 ) + ' at ' + time2str(timeNow(), 1, 1) + ' Changed by ' +curUserId()+ ' ' + userInfo.name + ' -End\n'); }
Remark的更多相关文章
- SELECT [Code] ,[AlarmID] ,[ItemName] ,[isDeleted] ,[Remark] FROM [LjlData].[dbo].[T_BaseDetail] union select 0--
SELECT [id] ,[AlarmID] ,[ItemName] ,[isDeleted] ,[Remark] FROM [LjlData]. ...
- git commit -am "remark" 提交
一.前言 假如你昨晚把本地文件a.html提交到远程库,今早发现还有补充的内容,于是添加了新的内容到a.html,并且还在本地还多添加了“几个文件”,那么怎么使用git来把这些文件一并提交到远程库呢? ...
- Remark of BLENDFUNCTION from MSDN
Remarks When the AlphaFormat member is AC_SRC_ALPHA, the source bitmap must be 32 bpp. If it is not, ...
- 恋爱虽易,相处不易:当EntityFramework爱上AutoMapper
剧情开始 为何相爱? 相处的问题? 女人的伟大? 剧情收尾? 有时候相识即是一种缘分,相爱也不需要太多的理由,一个眼神足矣,当EntityFramework遇上AutoMapper,就是如此,恋爱虽易 ...
- ExtJS 4.2 业务开发(二)数据展示和查询
本篇开始模拟一个船舶管理系统,提供查询.添加.修改船舶的功能,这里介绍其中的数据展示和查询功能. 目录 1. 数据展示 2. 数据查询 3. 在线演示 1. 数据展示 在这里我们将模拟一个船舶管理系统 ...
- JdbcTemplate+PageImpl实现多表分页查询
一.基础实体 @MappedSuperclass public abstract class AbsIdEntity implements Serializable { private static ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统(75)-微信公众平台开发-用户管理
系列目录 前言 本节主要是关注者(即用户)和用户组的管理,微信公众号提供了用户和用户组的管理,我们可以在微信公众号官方里面进行操作,添加备注和标签,以及移动用户组别,同时,微信公众号也提供了相应的接口 ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统(73)-微信公众平台开发-消息管理
系列目录 前言 回顾上一节,我们熟悉的了解了消息的请求和响应,这一节我们来建立数据库的表,表的设计蛮复杂 你也可以按自己所分析的情形结构来建表 必须非常熟悉表的结果才能运用这张表,这表表的情形涵盖比较 ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统(71)-微信公众平台开发-公众号管理
系列目录 思维导图 下面我们来看一个思维导图,这样就可以更快了解所需要的功能: 上一节我们利用了一个简单的代码例子,完成了与微信公众号的对话(给公众号发一条信息,并得到回复) 这一节将讲解公众号如何设 ...
随机推荐
- jQuery.ajax() 函数详解
jQuery.ajax()函数用于通过后台HTTP请求加载远程数据. jQuery.ajax()函数是jQuery封装的AJAX技术实现,通过该函数,我们无需刷新当前页面即可获取远程服务器上的数据. ...
- 2014年5月份第3周51Aspx源码发布详情
HGM简单连连看游戏源码 2014-5-19 [VS2010]源码描述:这是一款基于WinForm窗体程序的简单水果连连看的小游戏.界面比较美观, 功能如下:该游戏可以显示当前关卡,还有剩余时间.重 ...
- Android Studio Tips and Tricks
Android Studio Delete Module 1.选中Module右击,选择 Open Module Settings,打开Project Structure 窗空.(或者选中Module ...
- LeetCode 笔记系列 20 Interleaving String [动态规划的抽象]
题目: Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. For example,Given: ...
- Windows Server 2008(R2)配置apache+php+mysql环境问题事项
服务器环境:Windows 2008 R2 64位.apache,mysql,php都是32位. 1. 80端口的外网访问问题 表现:80端口本地可以访问,外网不能访问,换了8080端口也是一样,检查 ...
- 数组第K小数问题 及其对于 快排和堆排 的相关优化比较
题目描述 给定一个整数数组a[0,...,n-1],求数组中第k小数 输入描述 首先输入数组长度n和k,其中1<=n<=5000, 1<=k<=n 然后输出n个整形元素,每个数 ...
- Objective C运行时(runtime)技术的几个要点总结
前言: Objective C的runtime技术功能非常强大,能够在运行时获取并修改类的各种信息,包括获取方法列表.属性列表.变量列表,修改方法.属性,增加方法,属性等等,本文对相 ...
- 关于EEG参考电极
今天搞ADS1299,里面的BIAS偏置运放原来是设置参考电极的. The input multiplexer has EEG-specific functions for the bias driv ...
- Equal
package com; public class StringEquals { public static void main(String[] args) { String s1=new Stri ...
- 配置vim环境
<1> 一般不建议更改/etc/vimrc这个文件,因为此文件更改对所有用户生效, 故一般只更改当前用户 即更改文件 vim ~/.vimrc (.表示隐藏文件) <2> 该文 ...