上一页 1 2 3 4 5 6 7 8 ··· 57 下一页
摘要: mysql trigger 触发器的使用 注意前后加加 delimiter $$ .................... $$ delimiter ; #修改a.dealer 表信息时,更新b.dealer delimiter $$ CREATE TRIGGER syncInfoByUpdateA 阅读全文
posted @ 2022-03-30 01:47 iDEAAM 阅读(62) 评论(0) 推荐(0) 编辑
摘要: webapi 中,如果接参是一个实体 model。需要参数前面加一个特性 [FromUri] 。根据您前端传参情况定 public JsonModelHelper.JsonModel Get([FromUri] addresstemplate at) 阅读全文
posted @ 2022-03-27 11:43 iDEAAM 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 平时有一些重复性的工作,然后利用t4模板写了以下代码,希望对大家有用。1. 生成dal helper 增删改查 <#@ template language="C#" debug="false" hostspecific="true"#> <#@ include file="EF6.Utility.C 阅读全文
posted @ 2022-03-25 18:20 iDEAAM 阅读(154) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2022-03-23 11:50 iDEAAM 阅读(277) 评论(0) 推荐(0) 编辑
摘要: Sub test() '获取所有ppt页面 For Each currentSlide In ActivePresentation.Slides '每个页面加一个文本框 Set Sh = currentSlide.Shapes.AddLabel(msoTextOrientationHorizonta 阅读全文
posted @ 2022-03-22 12:18 iDEAAM 阅读(1671) 评论(1) 推荐(0) 编辑
摘要: 解决方案:win7系统需要安装补丁。Windows6.1-KB3033929-x64 https://download.microsoft.com/download/C/8/7/C87AE67E-A228-48FB-8F02-B2A9A1238099/Windows6.1-KB3033929-x64 阅读全文
posted @ 2022-03-16 00:00 iDEAAM 阅读(4306) 评论(0) 推荐(0) 编辑
摘要: //server端 public class HelloClass { public string GetHello() { return "Hello!"; } } public interface IHelloClass { string GetHello(); } var tcpserver 阅读全文
posted @ 2022-03-02 11:18 iDEAAM 阅读(126) 评论(0) 推荐(0) 编辑
摘要: php 阅读全文
posted @ 2022-02-25 16:34 iDEAAM 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Sub insertImg() ' ' 宏3 宏 ' ' Dim i As Integer For i = 15 To 87 Rows(i & ":" & i).RowHeight = 159.75 imgUrl = Range("D" & i).Value Range("E" & i).Selec 阅读全文
posted @ 2021-06-02 17:31 iDEAAM 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 例: A2列的数据如下: 宁夏回族自治区 吴忠市 利通区 古城镇吴灵路三中西全民健身中心在excel中如何拆分省市区1. 拆分省=MID(A2,1,FIND(" ",A2,1))拆分结果:宁夏回族自治区2. 拆分市=MID(MID(A2,FIND(" ",A2,1),100),1,FIND(" ", 阅读全文
posted @ 2020-08-19 14:55 iDEAAM 阅读(2747) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 57 下一页