frmpersonelprint.cs
来自「中小企业人力资源管理系统」· CS 代码 · 共 26 行
CS
26 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace HRP.Personnel
{
public partial class frmPersonelPrint : Form
{
public frmPersonelPrint()
{
InitializeComponent();
}
public DataSet ds;
private void frmPersonelPrint_Load(object sender, EventArgs e)
{
crtPersonel crtpersonel = new crtPersonel();
crtpersonel.SetDataSource(ds.Tables["tb_Personnel"]);
crvPersonel.ReportSource = crtpersonel;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?