• 大小: 0.52M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-06-17
  • 语言: C#
  • 标签: 系统  C#  考勤  

资源简介

一个用于C#开发 sql server 作为数据的考勤系统  可以通过码枪扫描条形码或者指纹识别记录考勤信息

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.xml;
using System.Reflection;
using System.Data.SqlClient;

namespace 考勤系统
{
    public partial class frm_dataset : Form
    {
        public frm_dataset()
        {
            InitializeComponent();
        }
        protected String ConnectionString;
        private void bt_yes_Click(object sender EventArgs e)
        {
            try
            {
                StreamWriter writer = new StreamWriter(“Database.config“ false System.Text.Encoding.Default);


               

                string conStr = ““;
                conStr += ““ + this.tb_servername.Text.ToString() + ““;
                conStr += ““ + this.tb_dataname.Text.ToString() + ““;
                conStr += ““ + this.tb_loginname.Text.ToString() + ““;
                conStr += ““ + this.tb_pwd.Text.ToString() + ““;
                conStr += “
“;
                writer.WriteLine(conStr);

               
                writer.Close();
                MessageBox.Show(“设置完成,可以点击测试““提示“);

               // DataConfig dc = new DataConfig();
               // dc.Open();
            }
            catch
            {
                return;
            }
        }

        private void frm_dataset_Load(object sender EventArgs e)
        {
            xmlDocument xdc = new xmlDocument();
            try
            {
                string configFile = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName);
                configFile += “\\Database.config“;
                xdc.Load(configFile);
                this.tb_servername.Text = xdc.ChildNodes[0].ChildNodes[0].InnerText.ToString();
                this.tb_dataname.Text = xdc.ChildNodes[0].ChildNodes[1].InnerText.ToString();
                this.tb_loginname.Text = xdc.ChildNodes[0].ChildNodes[2].InnerText.ToString();
                this.tb_pwd.Text = xdc.ChildNodes[0].ChildNodes[3].InnerText.ToString();
            }
            catch 
            {
                return;
            }
        }

        private void bt_test_Click(object sender EventArgs e)
        {
             xmlDocument xdc = new xmlDocument();
             try
             {

                 string configFile = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName);
                 configFile += “\\Database.config“;
                 xdc.Load(configFile);
                 this.ConnectionString = “Server=“ + xdc.ChildNodes[0].ChildNodes[0].InnerText.ToString() + “;Database=“ + xdc.ChildNodes[0].ChildNodes[1].InnerText.ToString() + “;UID=“ + xdc.ChildNodes[0].ChildNodes[2].InnerText.ToStrin

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        147  2010-03-01 09:32  考勤系统\bin\Debug\Database.config

     文件      78902  2009-05-05 18:13  考勤系统\bin\Debug\Finger.bmp

     文件      78902  2009-05-05 18:13  考勤系统\bin\Debug\FingerTemp.bmp

     文件     126976  2008-01-02 10:39  考勤系统\bin\Debug\MXOTDLL.dll

     文件      12178  2008-01-02 10:39  考勤系统\bin\Debug\MXOTDLL.lib

     文件      86016  2008-01-02 10:39  考勤系统\bin\Debug\OSL_DLL_Dlink.dll

     文件      31232  2021-04-12 18:31  考勤系统\bin\Debug\考勤系统.exe

     文件      52736  2021-04-12 18:31  考勤系统\bin\Debug\考勤系统.pdb

     文件       5632  2010-04-12 21:33  考勤系统\bin\Debug\考勤系统.vshost.exe

     文件       4043  2009-05-01 18:12  考勤系统\frm_dataset.cs

     文件       8182  2008-10-23 17:13  考勤系统\frm_dataset.Designer.cs

     文件       5814  2008-10-23 17:12  考勤系统\frm_dataset.resx

     文件       2131  2008-06-05 13:06  考勤系统\image\0033.gif

     文件       3068  2008-06-05 10:48  考勤系统\image\0033_1.gif

     文件      64625  2008-06-05 21:42  考勤系统\image\bei.jpg

     文件      65428  2008-06-05 11:00  考勤系统\image\bei_1.jpg

     文件      68347  2008-06-05 21:06  考勤系统\image\bei_2.jpg

     文件      21352  2007-03-14 13:23  考勤系统\image\best_road_big.jpg

     文件      17777  2007-03-14 13:23  考勤系统\image\best_secure_big.jpg

     文件      14433  2007-03-14 13:23  考勤系统\image\connected_data_big.jpg

     文件      17059  2007-03-14 13:23  考勤系统\image\connected_multiple_big.jpg

     文件      18137  2007-03-14 13:23  考勤系统\image\connected_networks_big.jpg

     文件        718  2009-05-03 16:32  考勤系统\InexistFinger.cs

     文件       2785  2009-05-03 16:32  考勤系统\InexistFinger.Designer.cs

     文件       6008  2009-05-03 16:32  考勤系统\InexistFinger.resx

     文件       1037  2009-05-05 18:09  考勤系统\InputFinger.cs

     文件       3043  2009-05-05 17:56  考勤系统\InputFinger.Designer.cs

     文件       6008  2009-05-05 17:56  考勤系统\InputFinger.resx

     文件       1739  2009-05-05 18:08  考勤系统\MXOTDLL.cs

     文件        208  2021-04-12 18:17  考勤系统\obj\Debug\.NETframeworkVersion=v4.0.AssemblyAttributes.cs

............此处省略37个文件信息

评论

共有 条评论