FastReport 3.X var PageLine: integer; //在現在頁列印到第幾行 PageMaxRow: integer=15; //設定每頁列數 procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin P ...
分类:
其他好文 时间:
2021-06-22 18:27:26
阅读次数:
0
常用 Git 命令清单 我每天使用 Git ,但是很多命令记不住。 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60~100个命令。 下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。 Workspace:工作区 Index / Stage:暂存区 Repo ...
分类:
其他好文 时间:
2021-06-20 17:47:39
阅读次数:
0
#region 无边框窗体拖动 //获取当前鼠标坐标 private Point mPoint; private void lbl_Title_MouseDown(object sender,MouseEventArgs e) { mPoint=e.Location; } private void ...
看着是readyonly,尝试js移除readonly属性,然后直接send_keys # 输入元素 下拉框方法封装 #直接sendkeys不行,不会往下走def base_send_keys(self, loc, value): # 先找到元素 el = self.base_find(loc) s ...
分类:
Web程序 时间:
2021-06-19 19:09:02
阅读次数:
0
create table student ( ID int primary key identity(1,1), studentNo varchar(20) not null, name varchar(20) not null, address varchar(20) not null, year ...
分类:
其他好文 时间:
2021-06-18 19:42:42
阅读次数:
0
error 1: Unable to open 'raise.c': Unable to read file '/build/glibc-S9d2JN/glibc-2.27/sysdeps/unix/sysv/linux/raise.c' (Error: Unable to resolve non- ...
分类:
其他好文 时间:
2021-06-18 18:49:18
阅读次数:
0
报错信息: java.lang.RuntimeException: Mismatched address stored in ZK for NameNode at /172.23.6.96:9000: Stored protobuf was nameserviceId: "mycluster" na ...
分类:
其他好文 时间:
2021-06-16 18:06:59
阅读次数:
0
private void txtMaxCount_TextChanged(object sender, EventArgs e) { //替换非数字 this.txtMaxCount.Text = Regex.Replace(this.txtMaxCount.Text, @"[^\d]*", "") ...
<template> <el-table :data="tableData2" style="width: 100%"> <el-table-column prop="address" label="地址" :render-header="renderHeader"> <!--渲染render事件 ...
分类:
其他好文 时间:
2021-06-04 19:42:04
阅读次数:
0
namespace TestQuestionaire { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void bt_ok_Click(object sender, Eve ...