上一页 1 2 3 4 5 6 7 ··· 18 下一页

2022年6月15日

springboot 集成poi导出word(一)

摘要: 使用ruoyi-前后端分离版本,根据word模板导出,包含表格和图片。 一、创建模板 列表使用{{}},文本使用[] 二、引入依赖 <!-- excel工具 --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxm 阅读全文

posted @ 2022-06-15 17:29 七七2020 阅读(1902) 评论(0) 推荐(1) 编辑

2021年10月27日

c# winform调用osk系统自带软键盘

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Runtime.InteropServic 阅读全文

posted @ 2021-10-27 14:21 七七2020 阅读(1256) 评论(0) 推荐(0) 编辑

2021年9月16日

vue使用websoket

摘要: 参考链接:https://www.cnblogs.com/qisi007/p/10213886.html export default { name: "realdetail", components: {}, data() { return { wsuri: null, websock: null 阅读全文

posted @ 2021-09-16 10:23 七七2020 阅读(149) 评论(0) 推荐(0) 编辑

2021年8月9日

java post格式发送application/x-www-form-urlencoded

摘要: import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org.apache.http.*; import org.apache.http.client.config.RequestConfig 阅读全文

posted @ 2021-08-09 14:15 七七2020 阅读(4619) 评论(0) 推荐(0) 编辑

2021年7月22日

c# 获取本机ip

摘要: /// <summary> /// 取本机主机ip /// </summary> /// <returns></returns> public static string GetLocalIP() { try { string AddressIP = ""; IPAddress[] ips = Dn 阅读全文

posted @ 2021-07-22 10:09 七七2020 阅读(52) 评论(0) 推荐(0) 编辑

2021年7月14日

Winform学习(八)——使用setup打包程序

摘要: 参考网址:https://zhuanlan.zhihu.com/p/183677490 http://blog.sina.com.cn/s/blog_49f485700100m1bo.html ☆ https://blog.csdn.net/u011981242/article/details/51 阅读全文

posted @ 2021-07-14 17:39 七七2020 阅读(401) 评论(0) 推荐(0) 编辑

2021年6月8日

Winform学习(七)--长时间不操作则退出登陆

摘要: 1、定义无操作时间 static int iOperCount = 0;//无操作秒数 static int logoutSecond = 10;//退出倒计时 2、动作后无操作描述归零 //用于记录用户无操作时间 internal class MyMessager : IMessageFilter 阅读全文

posted @ 2021-06-08 17:18 七七2020 阅读(1043) 评论(0) 推荐(1) 编辑

Winfrom学习(六)--dataGridView中增加时间控件

摘要: 参考链接:https://blog.csdn.net/qiume/article/details/6646506 1、添加类 //日期列 public class CalendarColumn : DataGridViewColumn { public CalendarColumn() : base 阅读全文

posted @ 2021-06-08 17:04 七七2020 阅读(422) 评论(0) 推荐(0) 编辑

Winform学习(五)--长时间操作加载提示,采用异步调用任务

摘要: 学习链接: a、https://www.cnblogs.com/txw1958/archive/2012/09/05/csharp-BackgroundWorker.html b、https://www.cnblogs.com/zhaoshujie/p/9634136.html 1、定义异步任务 p 阅读全文

posted @ 2021-06-08 16:48 七七2020 阅读(141) 评论(0) 推荐(0) 编辑

Winform学习(四)--消息在不同页面间传递

摘要: 学习链接:https://blog.csdn.net/winterye12/article/details/77370453 1、新建Msg类 class Msg { [DllImport("user32.dll")] //发送消息 public static extern void PostMes 阅读全文

posted @ 2021-06-08 16:36 七七2020 阅读(114) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 18 下一页

导航