资源简介
z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片).rar
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;
namespace PrintStuResume
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
#region 定义全局变量及对象
string strCon = “Data Source=(local);Database=db_04;Uid=sa;Pwd=;“;
public static string strName = ““;
public static string strSex = ““;
public static string strBirthday = ““;
public static string strNPlace = ““;
public static string strAddress = ““;
public static string strNation = ““;
public static string strSGao = ““;
public static string strTZhong = ““;
public static string strHunYin = ““;
public static Image imgPhoto = null;
public static string strGZJL = ““;
public static string strBYYX = ““;
public static string strXUELLI = ““;
public static string strBYSJ = ““;
public static string strZHUANYE = ““;
public static string strWAIYU = ““;
public static string strYPZW = ““;
public static string strGZNX = ““;
public static string strQZLX = ““;
public static string strSalary = ““;
public static string strGZDQ = ““;
public static string strTECHANG = ““;
public static string strTel = ““;
public static string strEmail = ““;
SqlConnection sqlcon;
SqlCommand sqlcmd;
SqlDataAdapter sqlda;
DataSet myds;
#endregion
//窗体初始化时,自动编号并显示所有学生信息
private void Form1_Load(object sender EventArgs e)
{
sqlcon = getCon();
SqlCommand sqlcmd = new SqlCommand(“proc_AutoID“ sqlcon);
sqlcmd.CommandType = CommandType.StoredProcedure;
SqlParameter outValue = sqlcmd.Parameters.Add(“@newID“ SqlDbType.VarChar 20);
outValue.Direction = ParameterDirection.Output;
sqlcmd.ExecuteNonQuery();
sqlcon.Close();
txtID.Text = outValue.Value.ToString();
dgvInfo.DataSource = SelectStuInfo(““ ““).Tables[0];
cboxHunYin.SelectedIndex = cboxNation.SelectedIndex = cboxQZLX.SelectedIndex = cboxSex.SelectedIndex = cboxXueLi.SelectedIndex = 0;
}
//选择学生头像
private void button1_Click(object sender EventArgs e)
{
//定义可选择的头像类型
openFileDialog1.Filter = “*.jpg*jpeg*.bmp*.ico*.png*.tif*.wmf|*.jpg;*jpeg;*.bmp;*.ico;*.png;*.tif;*.wmf“;
openFileDialog1.title = “选择头像“;
//判断是否选择了头像
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
//显示选择的学生头像
pictureBox1.Image = Image.FromFile(openFileDialog1.FileName);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 17282 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\frmMain.cs
文件 38439 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\frmMain.Designer.cs
文件 6021 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\frmMain.resx
文件 3179 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\frmPrint.cs
文件 23215 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\frmPrint.Designer.cs
文件 205540 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\frmPrint.resx
文件 4138 2008-12-09 10:13 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\PrintStuResume.csproj
文件 499 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\Program.cs
文件 1378 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\Properties\AssemblyInfo.cs
文件 2880 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\Properties\Resources.Designer.cs
文件 5614 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\Properties\Resources.resx
文件 1101 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\Properties\Settings.Designer.cs
文件 249 2008-12-08 10:36 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume\Properties\Settings.settings
文件 932 2008-12-08 10:36 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume.sln
..A..H. 18944 2008-12-25 10:55 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\Backup\PrintStuResume.suo
文件 1638400 2010-08-18 17:50 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\db\db_04_Data.MDF
文件 1048576 2010-08-18 17:50 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\db\db_04_Log.LDF
文件 174080 2019-02-22 12:51 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\bin\Debug\PrintStuResume.exe
文件 52736 2019-02-22 12:51 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\bin\Debug\PrintStuResume.pdb
文件 11608 2019-02-22 12:51 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\bin\Debug\PrintStuResume.vshost.exe
文件 88697 2008-12-09 14:57 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\bin\Debug\resume.jpg
文件 17277 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\frmMain.cs
文件 39887 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\frmMain.Designer.cs
文件 6021 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\frmMain.resx
文件 3179 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\frmPrint.cs
文件 23974 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\frmPrint.Designer.cs
文件 205510 2019-10-17 10:14 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\frmPrint.resx
文件 789 2019-02-22 12:48 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6101 2019-02-22 12:51 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 1552 2019-02-22 12:51 z1_C#打印操作实例--使用GDI绘图打印学生信息源码(包括文字、控件、图片)\PrintStuResume\obj\Debug\PrintStuResume.csproj.FileListAbsolute.txt
............此处省略40个文件信息
相关资源
- u5-TW-C#打印操作--使用GDI绘图打印学生
- C#打印操作--使用GDI绘图打印学生信息
- asp.net网上教学系统全站程序.zip
- C#管理学生考勤及作业登记系统
- 2321363LearnWPFMVVM-XAMLCandtheMVVMpattern.pdf
- 商品销售管理系统C#源码
- 松下PLC与C#上位机通讯库含程序.rar
- C#图书管理系统.rar
- C#基于BouncyCastle.Crypto的SM2_3实现导入即
- zw_WPF_开发教程(_中文版).zip
- asp.net进销存系统源码.rar
- 网上商城源码(asp.netmvc开发).rar
- 0027ASP.NET公司员工管理系统的设计与实
- asp.net捐赠慈善公益管理系统.rar
- 176ASP.NETweb图纸管理系统.zip
- 010ASP.NET人才招聘网站.rar
- 非常酷的wpf控件库包括一套实现得很
- .NETWinForm和WPF的UI界面库,收集整合多
- asp.net电子商务平台数据库源码.zip
- 020asp.net火车票预定系统.rar
- C#通讯调试工具v3.0源码20130827.zip
- C#编程词典(个人版)专为编程人员准
- 零基础学ASP.NET源码.rar
- MoreEffectiveC#中文高清.pdf
- CLRviaC#第4版_PDF电子书带书签目录高清
- VisualC#2008控件使用范例详解--PDF+源码
- ASP.net基于百度AI的在线人脸登陆,人
- ASP.net网上销售系统.zip
- ASP.NETMVC5kjjm_jb51.rar
- bigTaxi_0.csv
评论
共有 条评论