上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: with open("./data.txt", "w",encoding='utf-8')as f: f.write(','.join(columns)) f.close() 阅读全文
posted @ 2022-12-19 17:06 212的s 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 执行后等待exe完成再继续 import subprocess login_info = [r'D:\xxx\a.exe', '参数1=22'] subprocess.check_call(login_info) 阅读全文
posted @ 2022-12-19 17:06 212的s 阅读(360) 评论(0) 推荐(0) 编辑
摘要: import random r=random.randint(20,40) print(r) 阅读全文
posted @ 2022-12-19 17:04 212的s 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import time #延时1秒 time.sleep(1) 阅读全文
posted @ 2022-12-19 17:04 212的s 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1 import time 2 import datetime 3 4 5 #函数定义 6 def getTimeNow(): 7 return datetime.datetime.now() 8 def getYesterDay(): 9 return getTimeNow() + datetim 阅读全文
posted @ 2022-12-19 17:02 212的s 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 实现了自动生成和插槽两个方式,主要把 el-table 和 el-pagination 封装在一起 效果图: 使用组件,启用自动生成 :auto="true" 自动生成-编辑 (包括请求已经实现了)新增和删除也是一样 ps:如有额外的按钮可以用插槽实现 查询的时候,只需要多返回下面数据,就可以自动生 阅读全文
posted @ 2022-08-31 10:58 212的s 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 实现方式: 1.读取剪切板内容 2.处理string,拼接sql 3.把结果写入剪切板 阅读全文
posted @ 2022-04-26 09:44 212的s 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 界面 2023年5月29日 最新版支持图片粘贴显示(使用RichTextBox,粘贴板,RichTextBox.Rtf 来实现 sql server 创建表 USE [test] GO /****** Object: Table [dbo].[tb_data] Script Date: 2022/4 阅读全文
posted @ 2022-04-06 15:16 212的s 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 控制台程序 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CA.动态编译 { using Mi 阅读全文
posted @ 2022-02-12 11:11 212的s 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 效果图 public class MyCheckedListBox : CheckedListBox { //普通字体 static Font Font1 = new Font(new FontFamily("宋体"), 12, FontStyle.Regular); //中间有横线 static 阅读全文
posted @ 2022-02-08 16:19 212的s 阅读(584) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页