freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

畢業(yè)設計---進銷存管理系統(tǒng)設計與實現(xiàn)(編輯修改稿)

2025-01-06 20:14 本頁面
 

【文章內容簡介】 re tb cursor for select spid=cast(spid as varchar(20)) from master..sysprocesses where dbid=db_id(@dbname) open tb fetch next from tb into @spid while @@fetch_status=0 begin exec(39。kill 39。+@spid) fetch next from tb into @spid end close tb deallocate tb go 2.用途:備份數(shù)據(jù)庫。 Create proc rstsky @pl1 int as if @pl1 = 1 begin RESTORE DATABASE [sky] FROM DISK = N39。C:\backUp\39。 end else if @pl1 =2 begin RESTORE DATABASE [sky] FROM DISK = N39。D:\backUp\39。 end else if @pl1 =3 begin RESTORE DATABASE [sky] FROM DISK = N39。E:\backUp\39。 end else RESTORE DATABASE [sky] FROM DISK = N39。F:\backUp\39。 畢業(yè)設計(論文) 第 15 頁 4 系統(tǒng)的實現(xiàn) 經(jīng)過前面的精心準備,現(xiàn)在我們終于可以進行系統(tǒng)的實現(xiàn)階段了,本節(jié)我們將首先進行系統(tǒng)的界面設計,下面就將這些頁面分別進行介紹。 系統(tǒng)的登錄界面 1) 用戶登錄界面 圖 系統(tǒng)登錄主頁面 代碼如下: public static DataTable Description。 int i =0。 //用于記載登陸的次數(shù) private void button1_Click(object sender, EventArgs e) { if (i2) { = new SqlConnection(Data Source=.。 Initial Catalog=Sky。 Integrated Security=True)。 ()。 = new SqlCommand(select * from 用戶清單 where 用戶名 =39。 + + 39。 and 密碼 =39。 + + 39。,)。 SqlDataReader myread =()。 ()。 if () { = 。 = 。 //記載當前用戶名和密碼 Description = (select 說明 from 用戶清單 where 用戶名 =39。 畢業(yè)設計(論文) 第 16 頁 + + 39。, 用戶清單 )。 = [0][0].ToString()。 //用于記載是否是超級用戶 Mainform a = new Mainform()。 ()。 ()。 } else { 、 i+=1。 (用戶名或密碼錯誤 ,還有 +(3i)+ 次機會 , 信息提示 , , )。 }...... 系統(tǒng)主界面 圖 系統(tǒng)主頁面 代碼如下: private void Mainform_Load(object sender, EventArgs e) { try { 畢業(yè)設計(論文) 第 17 頁 string week = 。 DateTime Date = 。 week = (Co(Date).DayOfWeek)。 (2, HM 進 銷 存 管 理 系 統(tǒng) , 今天是 : + (D) + + week + 歡 迎 您 的 使 用 , )。 string txt = select * from 用戶權限表 where 用戶名 =39。 + + 39。 //判斷用戶的權限 string table = 用戶權限表 。 myTable = (txt, table)。 }...... 貨物信息界面 圖 貨物信息主頁面 代碼如下: public Goods() { InitializeComponent()。 } private void Fill1() { (Text, , 貨號 )。 (Text, , 拼音編碼 )。 (Text, , 品名 )。 (Text, , 單位 )。 (Text, , 產(chǎn)地 )。 畢業(yè)設計(論文) 第 18 頁 (Text, , 類別 )。 (Text, , 進貨價 )。 (Text, , 銷售價 )。 (Text, , 最低售價 )。 (Text, , 稅額 )。 } private void Goods_Load(object sender, EventArgs e) { = (select * from 商品清單 , 商品清單 )。 = bindingSource1。 = bindingSource1。 Fill1()。 } private void toolStripButton2_Click(object sender, EventArgs e) { = null。 string txt = 。 if (() ==) { txt = select * from 商品清單 。 } else { txt = select * from 商品清單 where 拼音編碼 like 39。 + () + %39。 } = (txt, 供貨商清單 )。 = bindingSource1。 = bindingSource1。 } private void toolStripButton1_Click(object sender, EventArgs e) { = null。 ()。 ()。 ()。 if (()!=null) { ()。 (數(shù)據(jù)保存成功! , 提示 , , 畢業(yè)設計(論文) 第 19 頁 )。 } else { return。 } } private void toolStripButton3_Click(object sender, EventArgs e) { 商品信息 report goods = new 商品信息 report()。 ()。 } 供應商信息維護界面 圖 供應商信息主界面 代碼如下: private void Provider_Load(object sender, EventArgs e) { =(Select * from 供貨商清單 ,供貨商清單 )。 = bindingSource1。 = bindingSource1。 ...... 畢業(yè)設計(論文) 第 20 頁 } private void toolStripButton1_Click(object sender, EventArgs e) { = null。 string txt = 。 if (() == ) { txt = select * from 供貨商清單 。 } else { txt = select * from 供貨商清單 where 供貨商號 like 39。 + () + %39。 } = (txt, 供貨商清單 )。 = bindingSource1。 = bindingSource1。 } private void toolStripButton2_Click(object sender, EventArgs e) { = null。 ()。 ()。 。 ()。 if (() != null) { ()。 (數(shù)據(jù)保存成功! , 提示 , , )。 } else { return。 } } private void toolStripButton3_Click(object sender, EventArgs e) { ProviderInfoReport p = new ProviderInfoReport()。 ()。 } 畢業(yè)設計(論文) 第 21 頁 客戶信息維
點擊復制文檔內容
公司管理相關推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1