91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 283KB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2021-05-19
  • 語言: C#
  • 標(biāo)簽:

資源簡介

員工管理信息系統(tǒng) 使用說明 _________________________________________________________________ 系統(tǒng)運行環(huán)境: 1.硬件配置 CPU: Pentium III 600以上; 內(nèi)存:128M以上。 2.軟件環(huán)境 Windows 98以上操作系統(tǒng); Viual Studio.Net 2003及以上; MS Access 2000及以上。 _________________________________________________________________ 系統(tǒng)配置環(huán)境: 1.運行Viual Studio.Net。 2.依次單擊【文件】|【新建】|【空白解決方案】,打開新建項目對話框, 在【項目類型】中選擇【Visual Studio解決方案】,填寫合適的名稱和位置, 單擊確定按鈕,建立一個空白解決方案。 3.在【解決方案資源管理器】中,右擊建立的解決方案,單擊【添加】 |【新建項目】,打開添加新項目對話框,在左側(cè)的【項目類型】中選擇 【Visual C#項目】,在右側(cè)的【模板】中選擇【W(wǎng)indows應(yīng)用程序】,填寫合 適的名稱,單擊確定按鈕,就建立了一個新的項目。 _________________________________________________________________ 數(shù)據(jù)庫配置環(huán)境: 本書中數(shù)據(jù)庫分為 MS Access。 1.Access數(shù)據(jù)庫操作方便,配置簡單,只需要把數(shù)據(jù)庫文件放置到bin 目錄下的Debug文件夾下即可。 2.以Access數(shù)據(jù)庫的連接為例。首先在VS.net的工具箱的【數(shù)據(jù)】項中選擇 OleDbConnection,選擇所建立的數(shù)據(jù)庫連接oleDbConnection1,在他的屬性中 選擇ConnectionString的新建連接,在數(shù)據(jù)庫鏈接屬性對話框的【提供程序】 選擇項中選擇【Microsoft OLE DB Provider for ODBC Drivers】,然后單擊 【下一步】,在【連接】選擇項中的【選擇或輸入服務(wù)器名稱】下拉框中選擇 【MS Access Database】,在【輸入要使用的初始目錄中】填寫你所創(chuàng)建的數(shù) 據(jù)庫所在的目錄。最后單擊【確定】按鈕。

資源截圖

代碼片段和文件信息

using?System;
using?System.Drawing;
using?System.Collections;
using?System.ComponentModel;
using?System.Windows.Forms;

namespace?personMIS
{
///?
///?about?的摘要說明。
///?

public?class?about?:?System.Windows.Forms.Form
{
private?System.Windows.Forms.Label?label1;
private?System.Windows.Forms.Label?label2;
///?
///?必需的設(shè)計器變量。
///?

private?System.ComponentModel.Container?components?=?null;

public?about()
{
//
//?Windows?窗體設(shè)計器支持所必需的
//
InitializeComponent();

//
//?TODO:?在?InitializeComponent?調(diào)用后添加任何構(gòu)造函數(shù)代碼
//
}

///?
///?清理所有正在使用的資源。
///?

protected?override?void?Dispose(?bool?disposing?)
{
if(?disposing?)
{
if(components?!=?null)
{
components.Dispose();
}
}
base.Dispose(?disposing?);
}

#region?Windows?窗體設(shè)計器生成的代碼
///?
///?設(shè)計器支持所需的方法?-?不要使用代碼編輯器修改
///?此方法的內(nèi)容。
///?

private?void?InitializeComponent()
{
this.label1?=?new?System.Windows.Forms.Label();
this.label2?=?new?System.Windows.Forms.Label();
this.SuspendLayout();
//?
//?label1
//?
this.label1.Font?=?new?System.Drawing.Font(“宋體“?15.75F?System.Drawing.Fontstyle.Bold?System.Drawing.GraphicsUnit.Point?((System.Byte)(134)));
this.label1.Location?=?new?System.Drawing.Point(80?176);
this.label1.Name?=?“l(fā)abel1“;
this.label1.Size?=?new?System.Drawing.Size(136?56);
this.label1.TabIndex?=?0;
this.label1.Text?=?“版權(quán)所有!侵權(quán)必究!“;
//?
//?label2
//?
this.label2.Font?=?new?System.Drawing.Font(“隸書“?21.75F?System.Drawing.Fontstyle.Bold?System.Drawing.GraphicsUnit.Point?((System.Byte)(134)));
this.label2.ForeColor?=?System.Drawing.Color.Red;
this.label2.Location?=?new?System.Drawing.Point(24?40);
this.label2.Name?=?“l(fā)abel2“;
this.label2.Size?=?new?System.Drawing.Size(264?56);
this.label2.TabIndex?=?1;
this.label2.Text?=?“員工管理信息系統(tǒng)“;
//?
//?about
//?
this.AutoScalebaseSize?=?new?System.Drawing.Size(6?14);
this.ClientSize?=?new?System.Drawing.Size(292?266);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name?=?“about“;
this.Text?=?“about“;
this.ResumeLayout(false);

}
#endregion
}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件???????2452??2007-06-29?07:34??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\about.cs

?????文件???????7546??2007-06-29?07:34??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\about.resx

?????文件???????7162??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\AddDepart.cs

?????文件??????12075??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\AddDepart.resx

?????文件???????7891??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\AddIncome.cs

?????文件??????13198??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\AddIncome.resx

?????文件???????7406??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\Addjob.cs

?????文件??????10952??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\Addjob.resx

?????文件??????19414??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\Addperson.cs

?????文件??????19936??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\Addperson.resx

?????文件???????1078??2007-06-28?08:45??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\App.ico

?????文件???????1859??2007-06-28?08:45??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\AssemblyInfo.cs

?????文件???????7954??2007-09-20?11:01??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowseDepart.cs

?????文件???????9287??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowseDepart.resx

?????文件???????9483??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowseIncome.cs

?????文件??????10970??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowseIncome.resx

?????文件???????7821??2007-09-20?11:00??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowseJob.cs

?????文件???????9284??2007-09-20?11:00??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowseJob.resx

?????文件??????10613??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowsePerson.cs

?????文件??????10970??2007-09-20?10:48??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\BrowsePerson.resx

?????文件???????4558??2007-09-20?11:02??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\Main.cs

?????文件???????6997??2007-09-20?10:47??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\Main.resx

?????文件???????9300??2007-09-20?10:00??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\MainForm.cs

?????文件??????12137??2007-09-11?09:09??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\MainForm.resx

?????文件???????6456??2007-09-11?09:30??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\ModifyDepart.cs

?????文件??????11473??2007-09-11?09:30??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\ModifyDepart.resx

?????文件???????8361??2007-09-11?09:30??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\ModifyIncome.cs

?????文件??????13753??2007-09-11?09:30??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\ModifyIncome.resx

?????文件???????8425??2007-09-11?09:30??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\ModifyJob.cs

?????文件??????11465??2007-09-11?09:30??員工管理信息系統(tǒng)\personMIS\Backup\personMIS\ModifyJob.resx

............此處省略90個文件信息

評論

共有 條評論