码迷,mamicode.com
首页 >  
搜索关键字:Active Directory    ( 10384个结果
小程序自定义tabbar
微信小程序自定义tabbar 1.介绍:微信自带的tabbar已经无法满足我们的需求了,往往我们需要自定义tabbar,请看代码 <!-- 首先在page下面创建home首页页面,只用来存放我们的tabbar --> <van-tabbar active="{{ active }}" bind:ch ...
分类:微信   时间:2020-05-18 14:27:46    阅读次数:115
Hadoop伪分布搭建
第一步:配置网络(静态IP) (网卡名称可能不同) 1. 修改: 将该配置文件中的ONBOOT=no修改为yes(网络开机自启) 将BOOTPROTO=dhcp修改为static(将ip设置为静态ip) 2. 为了能够通过外部访问到虚拟机,增加: IPADDR=192.168.154.110(110 ...
分类:其他好文   时间:2020-05-17 20:35:34    阅读次数:76
在 DBGrid 中如何让回车变为光标右移动
在Form.OnKeyPress事件中写如下代码: if Key = #13 then if ActiveControl = DBGrid1 then begin TDBGrid(ActiveControl).SelectedIndex := TDBGrid(ActiveControl).Selec ...
分类:移动开发   时间:2020-05-16 17:19:05    阅读次数:85
在DBGrid中用代码实现按回车键跳到下一格的方法
示例: if Key = 13 then //回車後跳到下一格 with TDbgrideh(ActiveControl) do begin if Selectedindex < (FieldCount - 1) then Selectedindex := Selectedindex + 1 els ...
分类:数据库   时间:2020-05-16 16:54:03    阅读次数:64
安装allure时遇到的坑:JAVA_HOME is set to an invalid directory: D:\Java\jdk1.8.0_66 Please set the JAVA_HOME variable in your environment to match the location of your Java installation.
1、官网上下载allure压缩包,解压到本地文件夹(文件夹尽量为英文并且路径简单) 2、添加PATH环境变量 进入allure文件夹的bin目录下,会看到allure.bat文件,将此路径设置为系统环境变量path下 3、校验是否安装成功 在cmd中运行 allure命令,如下图所示即为安装成功 与 ...
分类:编程语言   时间:2020-05-16 14:03:16    阅读次数:309
解决Unable to lock directory /var/lib/apt/lists/
在Ubuntu执行命令时,会出现无法对目录 “/var/lib/apt/lists/ 加 锁”的错误。 使用sudo apt-get update命令时出现如下错误: E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource ...
分类:其他好文   时间:2020-05-16 10:40:06    阅读次数:211
js模拟select下拉菜单
js模拟select下拉菜单 ...
分类:Web程序   时间:2020-05-16 00:59:06    阅读次数:78
vue+element ui实现左侧导航栏动态路由跳转
<el-col> <el-menu default-active="1" class="el-menu-vertical-demo" @open="handleOpen" @close="handleClose" background-color="rgb(255,255,255,0)" text- ...
分类:其他好文   时间:2020-05-15 16:10:12    阅读次数:165
nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
nginx安装lua模块 出现LIBLUAJIT 5.1.SO.2错误的解决方法 云栖社区 阿里云 https://yq.aliyun.com/articles/604301 nginx lua 启动nginx报错找不到libluajit 5.1.so.2 会当凌绝顶的个人空间 OSCHINA ht ...
分类:其他好文   时间:2020-05-15 11:33:04    阅读次数:181
文件目录的操作DirectoryInfo类
Directory是位于System.IO的,所以为了方便使用,建议先引用System.IO在代码开头添加: using System.IO;Directory,静态类,不可实例化 //删除此目录 Directory.Delete(@"C:\Users\Administrator\Desktop\新 ...
分类:其他好文   时间:2020-05-15 09:56:20    阅读次数:73
10384条   上一页 1 ... 56 57 58 59 60 ... 1039 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!