上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 26 下一页
摘要: 'Execl打开执行 Private Sub Workbook_Open() Dim selectStr As String Dim selectCellNum As Integer '获取Sheet2的A列有效行数 selectCellNum = Sheets("Sheet2").[A65536] 阅读全文
posted @ 2021-01-18 16:40 蜗牛的礼物 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 情景:发布到IIS上出现 执行 项目.exe出现 参照:https://blog.csdn.net/jackbon8/article/details/82702563 直接下载了IISCrypto.exe执行,之后正常运行(这个执行完立即自动重启) 思考: 1.碰到这类部署问题先查询一下本地和服务器 阅读全文
posted @ 2021-01-15 16:11 蜗牛的礼物 阅读(2944) 评论(0) 推荐(0) 编辑
摘要: 使用AdminLTE-3.0.5框架中用到的一个翻页控件 官网地址:http://datatables.club/ 引用: <link rel="stylesheet" href="/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css"> 阅读全文
posted @ 2021-01-12 15:44 蜗牛的礼物 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 在此记录下: 正常情况下我们的data:$('#form').serialize(),但是这个只是序列化了表单的数据,不带上file文件,并且,我们需要使用原生的JS获取form( document.getElementById),这和JQ的$('#form') 获取到的对象的节点不一样 var f 阅读全文
posted @ 2021-01-06 11:27 蜗牛的礼物 阅读(963) 评论(0) 推荐(0) 编辑
摘要: 场景:在modal里头的日期控件初始化异常 思考:应该是初始加载被隐藏了,打开的时候再次加载看看 显示后执行: $('#editModal').on('shown.bs.modal', function () {//出生日期 $('#birthDay').datepicker({ language: 阅读全文
posted @ 2020-12-29 13:54 蜗牛的礼物 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Private Sub Worksheet_Change(ByVal Target As Range) Dim str As String str = Cells(1, Target.Column).Value If (str = "订单编号") Then Application.EnableEve 阅读全文
posted @ 2020-12-22 14:29 蜗牛的礼物 阅读(657) 评论(0) 推荐(0) 编辑
摘要: 1.For Each Sub TestHellow() Dim r As Range, i As Integer i = 1 For Each r In Range("A1:A100") r.Value = i i = i + 1 Next r MsgBox "完成!" End Sub 结果: 2. 阅读全文
posted @ 2020-12-20 22:15 蜗牛的礼物 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 碰到有需要侦听生成的文件 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading; using Syst 阅读全文
posted @ 2020-11-30 10:08 蜗牛的礼物 阅读(130) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>简繁体转换带cookie</title> <script src='jf.js'></script> </head> 阅读全文
posted @ 2020-11-26 11:04 蜗牛的礼物 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 前情提要: 碰到ICO注入,不想在StartUp.cs内的ConfigureServices写注入,因为这样子开发的话,每次添加一个IService就要再次去写注入一次 网上找了老多,碰到好几个是.NetCore2.1的版本,写完之后报错(这点上感觉.NetCore的版本更新好快,好像还没稳定下的样 阅读全文
posted @ 2020-11-24 15:52 蜗牛的礼物 阅读(398) 评论(3) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 26 下一页