上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 27 下一页
摘要: <html> <head> <title>ajaxTest</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> </head> <body> <div id='tData'></div> <input 阅读全文
posted @ 2021-06-07 10:47 蜗牛的礼物 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 上代码: private void button1_Click(object sender, EventArgs e) { // 创建新的PDF文档 PdfDocument document = new PdfDocument(); // 创建空页 PdfPage page = document.A 阅读全文
posted @ 2021-05-18 15:35 蜗牛的礼物 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 前提概要,需要调用金蝶EAS的Service,发现不是WebApi,伤脑筋 找到了《金蝶EAS_V8.1_WebService开发指南.doc》 开搞,大致就是 1.鼠标右键你需要的接口(wsdl) 2.链接另存为 XXX.wsdl(原来默认xml的,搞成wsdl) 3.使用VS自带编译转换器,问题 阅读全文
posted @ 2021-03-26 10:55 蜗牛的礼物 阅读(614) 评论(0) 推荐(0) 编辑
摘要: 1.以往C#基础自带的 string connString = "User ID=TEST;Password=TEST;Data Source=(DESCRIPTION = (ADDRESS_LIST= (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.90.20 阅读全文
posted @ 2021-03-08 11:33 蜗牛的礼物 阅读(785) 评论(0) 推荐(0) 编辑
摘要: 场景,准备使用Core3.1制作SwaggerApi接口 1.项目结构: 2.创建好空项目后,NuGet程序集安装Swashbuckle.AspNetCore 3.StartUp.cs代码(红色部分为配置SwaggerApi的配置代码) public class Startup { public I 阅读全文
posted @ 2021-02-26 14:39 蜗牛的礼物 阅读(234) 评论(0) 推荐(0) 编辑
摘要: '验证数据是否有效性 Function IsValidationData(ByVal Target As Range, columnNuber As Integer) On Error GoTo Line If Sheets("Sheet1").Cells(Target.Row, columnNub 阅读全文
posted @ 2021-01-26 15:09 蜗牛的礼物 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 使用Byte存储后转成string输出 '二分之一 Dim towSecondByte(1) As Byte, towSecondStr As String towSecondByte(0) = 189 towSecondByte(1) = 0 towSecondStr = towSecondByt 阅读全文
posted @ 2021-01-20 11:47 蜗牛的礼物 阅读(466) 评论(0) 推荐(0) 编辑
摘要: Dim BrandStr As String '获取品牌名称 BrandStr = Sheets("Sheet1").Cells(Target.Row, 2).Value '根据产品名称条件设置行 Select Case BrandStr Case "Time and Tru 普楦" If Shee 阅读全文
posted @ 2021-01-19 15:00 蜗牛的礼物 阅读(378) 评论(0) 推荐(0) 编辑
摘要: '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 蜗牛的礼物 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 情景:发布到IIS上出现 执行 项目.exe出现 参照:https://blog.csdn.net/jackbon8/article/details/82702563 直接下载了IISCrypto.exe执行,之后正常运行(这个执行完立即自动重启) 思考: 1.碰到这类部署问题先查询一下本地和服务器 阅读全文
posted @ 2021-01-15 16:11 蜗牛的礼物 阅读(3031) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 27 下一页