上一页 1 ··· 7 8 9 10 11
摘要: 阅读全文
posted @ 2021-07-24 03:24 zq爱生活爱代码 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 转载 https://www.cnblogs.com/dotnetHui/p/8342398.html 微软在VisualTreeHelper类中,提供了一些实用工具方法,用于执行涉及可视化树中的节点的常规任务,VisualTreeHelper 类中的一些方法可以接受表示任意一种可视对象类型的 De 阅读全文
posted @ 2021-07-24 02:40 zq爱生活爱代码 阅读(162) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="WpfDemo.XPASEDemo" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006 阅读全文
posted @ 2021-07-24 02:18 zq爱生活爱代码 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 前台 encodeURIComponent(newVal) 后台 Request.QueryString["MACHINECODE"]; 可以正常显示+ 号 阅读全文
posted @ 2021-06-30 15:35 zq爱生活爱代码 阅读(350) 评论(0) 推荐(0) 编辑
摘要: unpivot列转行函数 select 字段 from 数据集 unpivot(自定义列名/*列的值*/ for 自定义列名/*列名的别名,自己定义*/ in(列名)) 注意 後面的是列名 create table Fruit(id int,name varchar(20), Q1 int, Q2 阅读全文
posted @ 2021-05-13 22:11 zq爱生活爱代码 阅读(190) 评论(0) 推荐(0) 编辑
摘要: -- A表B表 都有的數據,把B表的數據更新到A表-- A表沒有數據,B表有的,則插入到A表merge into ZQ_A A using ZQ_B b on (a.name=b.name) when matched then update set a.age=b.age when not matc 阅读全文
posted @ 2021-05-13 22:10 zq爱生活爱代码 阅读(41) 评论(0) 推荐(0) 编辑
摘要: declare type type_array is varray(5) of varchar2(20); var_array type_array := type_array(); --var_array type_array := type_array('2','2','3','4'); -- 阅读全文
posted @ 2021-04-25 16:23 zq爱生活爱代码 阅读(108) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Drawing; usi 阅读全文
posted @ 2021-04-20 20:21 zq爱生活爱代码 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 無法將類型 'System.Drawing.Bitmap' 的物件轉換為類型 'System.Drawing.Icon'。 选择项目属性,打开资源文件,将ico 当做 图标导入即可 this.notifyIcon1.Icon = ((System.Drawing.Icon)(Resources.Re 阅读全文
posted @ 2021-03-06 23:22 zq爱生活爱代码 阅读(199) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// WebClient上传文件至服务器 /// </summary> /// <param name="localFilePath">文件名,全路径格式</param> /// <param name="serverFolder">服务器文件夹路径</param> / 阅读全文
posted @ 2021-02-26 19:33 zq爱生活爱代码 阅读(50) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11