码迷,mamicode.com
首页 >  
搜索关键字:word excel 快捷键    ( 41137个结果
JetBrains IDEA 常用快捷键
![](https://img2020.cnblogs.com/blog/2287326/202104/2287326-20210403214947935-1196994930.png) ![](https://img2020.cnblogs.com/blog/2287326/202104/2287... ...
分类:其他好文   时间:2021-04-06 14:08:18    阅读次数:0
python开发基础(三)集合
s = set('hello,word') print(s) #set 方法 s = {'xiaoming', 'xiaoming', 'xiaoming1'} print(s) s.add('s') # 添加元素 s.clear(s) # 清空集合 s1 = s.copy(s) # 复制集合 s. ...
分类:编程语言   时间:2021-04-05 12:51:32    阅读次数:0
idea使用
1.main函数快捷键 psvm 2.system.out.printLn sout(相当于eclipse syso) 3.ctrl + alt + t == try catch,意识是surround with try catch, 但是如果要直接写可以"".try直接会提示 4.alt+inse ...
分类:其他好文   时间:2021-04-05 12:43:06    阅读次数:0
学习Typora来写博客
Typora学习 标题分级 知识详解 标题分级可使用快捷键Ctry+数字键(1、2、3、4、5、6、0) 例如Ctry+1为一级标题,Ctry+2为二级标题,以此类推,总共可分为六个级别的标题,Ctry+0为普通段落内容。还可以利用Ctry + =提升段落等级或者Ctry + -降低段落等级 总结精 ...
分类:其他好文   时间:2021-04-05 12:39:01    阅读次数:0
Leetcode 524. Longest Word in Dictionary through Deleting
Description: Given a string s and a string array dictionary, return the longest string in the dictionary that can be formed by deleting some of the gi ...
分类:其他好文   时间:2021-04-05 12:21:20    阅读次数:0
函数柯里化
柯里化(Currying)是把接受多个参数的函数变换成接受一个单一参数(最初函数的第一个参数)的函数,并且返回接受余下的参数且返回结果的新函数的技术。 通过一个例子再解释理解一下 // 普通的add函数 function add(x, y) { return x + y } // Currying后 ...
分类:其他好文   时间:2021-04-05 12:20:34    阅读次数:0
powerdesigner通过导入excel方式创建物理表详解
一、创建excel表 本示例中创建了三张sheet表分别是t_user、t_role、t_user_role三张表(sheet表可以建多个,表中数据的格式其实是可以自定义的,此处不做阐述)。如图所示: 二、创建新的物理数据模型 1、打开PowerDesigner,点击【File】==》【New Mo ...
分类:其他好文   时间:2021-04-05 12:09:34    阅读次数:0
idea 快捷键
debug调试快捷键F9 resume programe 恢复程序Alt+F10 show execution point 显示执行断点F8 Step Over 相当于eclipse的f6 跳到下一步F7 Step Into 相当于eclipse的f5就是 进入到代码Alt+shift+F7 For ...
分类:其他好文   时间:2021-04-05 12:05:32    阅读次数:0
table 导出简单的excel
注意table 标签的id test0() { let exportFileContent = document.getElementById('mtable').outerHTML; let blob = new Blob([exportFileContent], { type: 'text/pl ...
分类:其他好文   时间:2021-04-05 11:50:59    阅读次数:0
win32 API编程之常用控件
一、按钮控件 二、美化按钮 三、windows资源文件.rc 一、按钮控件 1)注意事项 创建按钮一般在WM_CREATE消息中; 系统注册的按钮类名是“button”,不区分大小写。 WS_CHILD:控件是放在我们的窗口上的,自然要作为窗口的子窗口 WS_CHILDWINDOW也一样,为了节约几 ...
分类:Windows程序   时间:2021-04-05 11:43:39    阅读次数:0
41137条   上一页 1 ... 32 33 34 35 36 ... 4114 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!