上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 26 下一页
摘要: 一、安装MySql 1.查看Centos系统版本 cat /etc/centos-release 2.查看当前目录路径 pwd 3.安装wget yum install -y wget 4.下载MySQL的RPM安装包 wget https://repo.mysql.com//mysql80-com 阅读全文
posted @ 2021-06-12 10:43 蜗牛的礼物 阅读(208) 评论(0) 推荐(0) 编辑
摘要: <html> <head> <title>测试</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> </head> <body> <div id='t'></div> </body> <script> 阅读全文
posted @ 2021-06-07 11:40 蜗牛的礼物 阅读(851) 评论(0) 推荐(0) 编辑
摘要: <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 蜗牛的礼物 阅读(131) 评论(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 蜗牛的礼物 阅读(523) 评论(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 蜗牛的礼物 阅读(579) 评论(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 蜗牛的礼物 阅读(729) 评论(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 蜗牛的礼物 阅读(233) 评论(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 蜗牛的礼物 阅读(135) 评论(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 蜗牛的礼物 阅读(462) 评论(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 蜗牛的礼物 阅读(375) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 26 下一页