王焜棟琦
这个作者很懒,什么都没留下…
展开
-
ApexSQL Log读取sqlserver日志并恢复已删除记录
ApexSQL Log 2016绿色破解版,下载地址:http://www.xue51.com/soft/3442.html执行这个ApexSQLLog.exe按照图示操作找回删除的记录连接本地需要恢复的数据库选择日志文件:这个画面需要等十秒大概查看日志结果默认时间筛选日志显示那些操作记录,这里选择删除的记录查看表:然后去点击下面的Finish点击Operation全选所有删除记录,然后菜单栏选择Redo,会生成删除的记录插入sql保存sql语句到本地磁盘把sq原创 2020-10-25 12:41:24 · 2266 阅读 · 1 评论 -
C#调用TSC打印机打印数据
打印测试:using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Runtime.CompilerServices;using System.Text;using System.Threading;using System.Threading.Tasks;namespace TSCLIB_DLL_IN_C_Sharp{ pu原创 2020-09-03 17:29:53 · 3787 阅读 · 1 评论 -
TSC打印bmp图片命令
相关资料//开发文档,官网 https://www.chinatsc.cn/SC/support/support_download/TTP-244_Pro/Datasheet//驱动下载,客户端测试工具下载,开发文档/DLL下载 https://www.chinatsc.cn/SC/support/support_download/TTP-244_Pro//驱动下载,说明书,开发文档/DLL/参考代码下载 http://www.tsc-china.com/info/46592.html//打印二原创 2020-09-16 16:35:09 · 4517 阅读 · 0 评论 -
css选中盒子(框框)加2px边框,选中瞬间不会出现盒子(框框)抖动
<!-- 领导人物多选,开始 --><style type="text/css"> .leader_sel { margin:10px;} .leader_sel label { display: inline-block; border: 1px dashed #cccccc; padding: 5px 10px; margin: 5px; cursor: pointer; } .leader_sel .selected { border.原创 2021-01-14 15:14:11 · 391 阅读 · 0 评论 -
C#调用Process执行ffmpeg视频转码七分钟后就假死了
解决关键代码:主要是要把ffmpeg的输出消息接收到,这样就可以保证转码视频纵然转码耗时三个小时,也是稳定输出正常视频的//程序异常输出消息process.ErrorDataReceived += (o, e) =>{ if (string.IsNullOrWhiteSpace(e?.Data)) { return; } Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "程序异常消息:" + e.Da原创 2021-04-26 09:23:56 · 1848 阅读 · 3 评论 -
A second operation was started on this context before a previous operation completed
解决异常情况,并发情况会导致异常,每次创建一个新上下文就解决了InvalidOperationException: A second operation was started on this context before a previous operation completed. This is usually caused by different threads concurrently using the same instance of DbContext. For more informa原创 2021-11-18 10:25:06 · 5431 阅读 · 0 评论 -
netcore在Linux后台运行at Interop.ThrowExceptionForIoErrno
netcore在linux后台运行。at Interop.ThrowExceptionForIoErrno(ErrorInfo errorInfo, String path, Boolean isDirectory, Func`2 errorRewriter)原创 2022-09-01 13:12:37 · 430 阅读 · 0 评论 -
asp.net core让video标签支持大于2G视频拖动播放,视频文件流支持拖动播放,不保露视频真实地址PhysicalFile,enableRangeProcessing
视频文件流支持拖动播放,video标签设置视频不可以直接下载,视频范围播放原创 2022-09-06 17:47:09 · 611 阅读 · 0 评论 -
vue后台导出文件提示,根据后台返回的Content-Type类型导出文件或提示消息
vue.js原创 2022-08-12 17:17:37 · 737 阅读 · 0 评论 -
Aspose.Words.FileCorruptedException: The document appears to be corrupted and cannot be loaded
Unhandled exception. Aspose.Words.FileCorruptedException: The document appears to be corrupted and cannot be loaded原创 2022-09-22 15:12:07 · 3009 阅读 · 0 评论