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

资源简介

含数据库

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

using DevComponents.DotNetBar;
namespace AppCash
{
    public partial class frmLogin : Form
    {
        public frmLogin()
        {
            InitializeComponent();
        }

        private void btnLogin_Click(object sender EventArgs e)
        {
            //登录
            if (tbPwd.Text == ““ || cbUserid.Text == ““)
            {
                MessageBoxEx.Show(“请输入登录口令!“ “错误“ MessageBoxButtons.OK MessageBoxIcon.Error);
                return;
            }
            Dong.BLL.OperInfo bOper = new Dong.BLL.OperInfo();
            if (bOper.CheckUser(cbUserid.Text tbPwd.Text))
            {
                Dong.Model.GlobalsInfo.UserName = cbUserid.Text;
                frmMain frm = new frmMain();

                frm.Show();
                this.Visible = false;
            }
            else
            {
                MessageBoxEx.Show(“您输入的口令不正确!“ “错误“ MessageBoxButtons.OK MessageBoxIcon.Error);
            }
        }

        private void frmLogin_Load(object sender EventArgs e)
        {

            //初始化界面信息
            //提取用户列表
            DataSet ds = new DataSet();
            Dong.BLL.OperInfo mOper = new Dong.BLL.OperInfo();
            ds = mOper.GetAllList();
            cbUserid.ValueMember = “Code“;
            cbUserid.DisplayMember = “Code“;
            cbUserid.DataSource = ds.Tables[0];

            //提取配置信息
            Dong.BLL.ShopInfo bShop = new Dong.BLL.ShopInfo();
            Dong.Model.ShopInfo mShop = new Dong.Model.ShopInfo();
            mShop = bShop.GetModel(1);
            Dong.Model.GlobalsInfo.shopName = mShop.Name;
            this.Text = this.Text + “ --【“ + mShop.Name + “】“;

            Dong.Model.GlobalsInfo.shopAddr = mShop.Addr;
        }

        private void btnExit_Click(object sender EventArgs e)
        {
            Application.Exit();
        }

        protected override bool ProcessCmdKey(ref Message msg Keys keyData)
        {
            switch (keyData)
            {
                case Keys.Escape:
                    Application.Exit();
                    return true;
                case Keys.Enter:
                    btnLogin_Click(null null);
                    return true;
                default:
                    return base.ProcessCmdKey(ref msg keyData);
            }
        }
    }
}

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

     文件      22016  2014-08-30 21:19  BLL\bin\Debug\BLL.dll

     文件      81408  2014-08-30 21:19  BLL\bin\Debug\BLL.pdb

     文件      41984  2014-08-30 21:19  BLL\bin\Debug\DAL.dll

     文件      91648  2014-08-30 21:19  BLL\bin\Debug\DAL.pdb

     文件      57344  2009-06-23 10:10  BLL\bin\Debug\Maticsoft.DBUtility.dll

     文件      13312  2014-08-30 21:19  BLL\bin\Debug\Model.dll

     文件      79360  2014-08-30 21:19  BLL\bin\Debug\Model.pdb

     文件       2922  2013-11-14 06:29  BLL\BLL.csproj

     文件       3899  2013-11-13 10:02  BLL\Category.cs

     文件       5210  2013-11-29 14:13  BLL\GoodsInfo.cs

     文件       4895  2013-11-27 11:39  BLL\InGoods.cs

     文件       6021  2013-12-02 15:51  BLL\MemberInfo.cs

     文件       1666  2013-12-22 08:30  BLL\obj\Debug\BLL.csproj.FileListAbsolute.txt

     文件      14492  2014-08-30 21:19  BLL\obj\Debug\BLL.csprojResolveAssemblyReference.cache

     文件      22016  2014-08-30 21:19  BLL\obj\Debug\BLL.dll

     文件      81408  2014-08-30 21:19  BLL\obj\Debug\BLL.pdb

     文件       5386  2014-09-11 10:31  BLL\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       6494  2013-11-21 22:54  BLL\OperInfo.cs

     文件       1338  2013-11-13 09:45  BLL\Properties\AssemblyInfo.cs

     文件       7553  2013-12-23 16:56  BLL\SaleInfo.cs

     文件       3897  2013-11-13 10:01  BLL\ShopInfo.cs

     文件       4729  2013-11-22 10:58  BLL\Supplier.cs

     文件       3837  2013-11-13 10:01  BLL\Unit.cs

     文件       1144  2011-10-27 14:41  Common\Assistant.cs

     文件      15360  2011-03-02 12:25  Common\bin\Debug\COM.Excel.dll

     文件    1089536  2011-03-02 12:25  Common\bin\Debug\Excel.dll

     文件      57344  2014-08-30 21:19  Common\bin\Debug\Maticsoft.Common.dll

     文件     169472  2014-08-30 21:19  Common\bin\Debug\Maticsoft.Common.pdb

     文件      45056  2011-03-02 12:25  Common\bin\Debug\OpenSmtp.dll

     文件      20480  2011-03-02 12:25  Common\bin\Debug\OWC10Chart.dll

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

评论

共有 条评论