自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 Excel文本取首字母(包括繁体)VBA开发工具

Excel文本取首字母(包括繁体)VBA环境VBA代码Excel调用vba函数VBA环境excel的VBA环境很简单,网上很多资料注意:保存为.xlsm格式(启用宏的xls文档)VBA代码Function pinyin(p As String) As Stringpinyin = pinyin1(p) If pinyin = p Then pinyin = pinyin2(p) If pinyin = p Then pinyin = pinyin3(p) If pinyi

2020-09-10 11:53:11 25898

原创 Kettle右键转换出现卡死

Kettel右键转换出现卡死Kettel右键、切换JDK版本jdk8安装正常安装效果Kettel右键、切换JDK版本安装kettel后,无法正常使用。我在网上查阅了相关问题,终于在重新安装jdk版本后正常使用。本人安装了最新版jdk14.0,无法正常使用也尝试修改了内存大小,但是没有效果,依旧卡死。最终下载jdk8后,重新打开kettel,正常。jdk8安装Oracle官网下载jdk8,本人网上找的压缩包。不需要单独配置环境。直接记事本修改Spoon.bat。正常安装效果...

2020-08-12 16:45:21 2150

原创 EXTJS中下拉框Combox(鼠标、上下键)移动背景色

EXTJS中下拉框Combox(鼠标、上下键)移动背景色下拉框列表背景色修改Ext.form.ComboBox修改selectedClass用于selectedClass的CSS样式记在最后下拉框列表背景色修改设置下拉框各行颜色后,默认的移动样式背景色Class被设置的颜色Style覆盖,移动鼠标或者上下键时,存在bug,并且显示的样式不是很好区分。Ext.form.ComboBox修改se...

2020-04-15 14:13:17 409

原创 单链表复现魔术师发牌表演

#include <corecrt_malloc.h>#include <stdio.h>constexpr auto OK = 1;constexpr auto Error = 0;typedef int Status;typedef int ElemType;//定义双链表结构体typedef struct Temp{ ElemType Sequen...

2019-11-15 17:14:37 134

原创 c语言实现约瑟夫环

函数可能处理不够完美,代改善//初始化循环链表Status InitLinkedList(CircularLinkedList *&list){ list = (CircularLinkedList*)malloc(sizeof(Temp)); if (!list) { return Error; } list->data = NULL; list->Ne...

2019-11-14 23:13:58 156

原创 双向链表的代码实现

#include <corecrt_malloc.h>constexpr auto OK = 1;constexpr auto Error = 0;constexpr auto True = 1;constexpr auto False = 0;typedef int Status;typedef int ElemType;//定义双链表结构体typedef stru...

2019-11-14 15:44:20 694

原创 创建单链表

#include <corecrt_malloc.h>#include <stdio.h>#include <stdlib.h>constexpr auto OK = 1;constexpr auto Error = 0;typedef int ElemType;#ifndef Nodetypedef struct Node{ ElemTy...

2019-11-13 17:06:18 195

原创 Caché Language Elements For Error Processing

Language element Explanation$ECode$ECode Is empty ("") or set with a standard error code. $ECodecan be set to initiate an error and to check the errorprocessing logic.$ETrap$ETrap Contains the (a...

2019-04-28 17:45:13 91

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除