上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 118 下一页
摘要: 1、lpop(leftpop) 返回和移除列表的第一个元素 2、rpop(rightpop) 返回和移除列表的第一个元素 3、lrange 获取某一个下标区间的元素 4、llen 获取列表元素个数 5、lset 替换某一个位置元素 6、lindex 获取某一个位置的元素 7、lrem 删除重复元素 阅读全文
posted @ 2021-08-16 10:27 与f 阅读(163) 评论(0) 推荐(0) 编辑
摘要: redis 客户端 界面管理工具 地址 :http://www.pc6.com/softview/SoftView_834784.html https://github.com/qishibo/AnotherRedisDesktopManager/ 阅读全文
posted @ 2021-08-16 09:18 与f 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1.安装think-queue composer require topthink/think-queue 2.配置消息队列,将config/queue.php将’default’ => ‘sync’改为’default’ => ‘redis’,使用Redis驱动 如选择database,需创建表 阅读全文
posted @ 2021-08-15 22:48 与f 阅读(607) 评论(0) 推荐(0) 编辑
摘要: 最开始以为access 修改字段信息,用 ALTER TABLE 语句就可以了, 打开access 文件执行了 ALTER TABLE user ALTER COLUMN address TEXT(10) 发现可以运行,于是乎,就用C#链接 数据库 OleDbConnection,OleDbComm 阅读全文
posted @ 2021-08-05 14:14 与f 阅读(1586) 评论(0) 推荐(0) 编辑
摘要: 打印示例:(前提是测试打印机被设置成默认打印机) StringBuilder builder = new StringBuilder(); builder.AppendLine(" 打印测试 "); string PrintName = PrinterHelper.GetDeaultPrinterN 阅读全文
posted @ 2021-08-05 09:18 与f 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 输出彩色的控制台文字 #include <iostream> #include <Windows.h> #include <stdio.h> #include <stdarg.h> using namespace std; void cprintf(const char* str, WORD col 阅读全文
posted @ 2021-07-30 09:43 与f 阅读(232) 评论(0) 推荐(0) 编辑
摘要: using SoftRGB.Controls; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 阅读全文
posted @ 2021-07-14 15:47 与f 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 以下代码是可以把DataGridView的任意一行设置为CurrentRow, 在VS2010运行通过 //假设dgv是一个DataGridView, 我要把第三行设置为当前行。 //index是有0开始的。 //这里只是把那行highlight。可有可没 dgv.Rows[2].Selected 阅读全文
posted @ 2021-07-14 15:46 与f 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 最近在公司使用票据打印机编程手册指令对成品进行测试检测,对打印命令需要深入理解,才能更好掌握它的原理和使用。一、票据打印编程手册相关打印机的打印指令/编程手册可以在网络上找到茫茫多的资源。 像类似LF ESC开头的,并不是代表字符串,他们都是ASCII码表里排名靠前的控制字符,通过套接字传送的数据是 阅读全文
posted @ 2021-07-13 15:48 与f 阅读(871) 评论(0) 推荐(0) 编辑
摘要: this.BeginInvoke(new Action(() => {//这种方式可以让弹框是ShowDialog方式,主窗体不能点击 DialogResult dr = MessageBox.Show("需要更新!确定下载", "系统提示", MessageBoxButtons.OKCancel) 阅读全文
posted @ 2021-07-03 23:09 与f 阅读(297) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 118 下一页