比如页面上有一个date and time picker控件,符号为main_AN20.新建一个citectVBA程序段 Sub SetDate()main_AN20.value=cdate(now())End Sub 页面的进入页面事件写下面的代码 VbCallRun(VbCallOpen("se ...
分类:
其他好文 时间:
2021-03-16 11:45:27
阅读次数:
0
Challenge 0 给一个长为 \(n\) 的数列,有 \(M\) 次操作 \((1\le n, m \le 10^5)\),每次操作是以下两种之一: 修改数列中的一个数 求数列中某位置的值 解答:数组模拟即可。 #include <iostream> #include <cstdio> #in ...
分类:
其他好文 时间:
2021-03-16 11:41:02
阅读次数:
0
问题一 在这个程序下: //d=a+b //out=d+c always @(posedge Clk or negedge Rst_n) begin if(!Rst_n) out = 2'b0; else begin d <= a + b; out <= d + c; end end 问题:出现了o ...
分类:
其他好文 时间:
2021-03-15 11:35:38
阅读次数:
0
#home { margin: 0 auto; width: 65%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.5); padding: 30px; margin-top: 50px; ...
分类:
其他好文 时间:
2021-03-15 11:21:43
阅读次数:
0
select * from pub_query_condition where pk_templet in (select id from pub_query_templet where node_code like'HTK103%')把consult_code 设置成bd_refinfo的参照名字 ...
分类:
其他好文 时间:
2021-03-15 10:59:36
阅读次数:
0
使用EasyExcel操作excel https://www.yuque.com/easyexcel/doc/easyexcel 返回指定json格式数据 1)添加课程分类 获取上传过来的excel文件,读取里面的内容,存入数据库 当不需要spring管理的类(如Listern等)调用注入到spri ...
分类:
其他好文 时间:
2021-03-15 10:56:22
阅读次数:
0
文件备份与重命名 # 2种方式打开文件、备份文件、 import os # 打开文件 class FileOpen: @staticmethod def file_open1(file): fp = open(file, "w+", encoding="utf-8") # 无需flush,因为clo ...
分类:
其他好文 时间:
2021-03-15 10:54:22
阅读次数:
0
##1.基本数据类型的包装类 Java提倡的万物皆对象,但是数据类型的划分出现了基本数据类型和引用数据类型,那么我们怎么能把基本数据类型称为对象呢? 除了Integer和Character定义的名称和对应的基本类型差异大,其他六种都是将首字母大写就可以了。 Integer,Byte,Float,Do ...
分类:
编程语言 时间:
2021-03-15 10:38:35
阅读次数:
0
SELECT s.id, s.name, max(case when g.kemu='语文' then score else 0 end) as 语文,max(case when g.kemu='数学' then score else 0 end) as 数学,max(case when g.kem ...
分类:
数据库 时间:
2021-03-15 10:37:49
阅读次数:
0
linux/sdk/out/system/tdGUI/output/rules.mk %.d: %.c $(CONFIG_H_FILE) - @$(CC) -MM $(EXECFLAGS) $(LIBCFLAGS) $(CFLAGS) $(EXTRACFLAGS) $< | sed -e 's,^[ ...
分类:
其他好文 时间:
2021-03-12 12:40:52
阅读次数:
0