使用Visual C 2019設計Windows應用程式,要求在窗體中顯示資訊登入

2021-04-01 08:11:01 字數 2987 閱讀 3812

1樓:放大人生

。。。。。。。這種問題建議你自己多動動手,學習程式設計不動手去練習不太可能學會

多練習,多嘗試

2樓:茗香淡然

你要顯示什麼資訊呢?

在microsoft visual studio 2008開發平臺,使用c#語言設計一個windows窗體應用程式

3樓:匿名使用者

給我20塊錢我幫你做一個

4樓:匿名使用者

這個很簡單吧 下個教程就ok了 最基本的操作啊

c#我用visual studio 2008編了一個windows登陸窗體,建了一個賬號密碼的資料庫,當點登陸時怎麼連線資料庫

5樓:

在此假設你用的資料庫為sql server資料庫,資料庫名為「test」,使用者表名為「users」,表結構為users(username,password),**如下:

using system;

using system.collections.generic;

using system.***ponentmodel;

using system.data;

using system.drawing;

using system.linq;

using system.text;

using system.windows.forms;

//引用名稱空間

using system.data.sqlclient;

namespace logintest

private void btnlogin_click(object sender, eventargs e)

' and password=''",

this.txtusername.text.trim(), this.txtpwd.text.trim()), con);

tryelse

}catch (exception ex)finally}}}

6樓:我的她最美

應該可以的

using system;

using system.configuration;

using system.data;

using system.linq;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.xml.linq;

using system.web.configuration;

using system.data.sqlclient;

public partial class _default : system.web.ui.page

else

else

}finally}}

protected void btnclear_click(object sender, eventargs e)

protected void page_load(object sender, eventargs e)}

7樓:匿名使用者

using system;

using system.data;

using system.configuration;

using system.collections;

using system.web;

using system.web.security;

using system.web.ui;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.data.sqlclient;

public partial class admin_login : system.web.ui.page

protected void imagebutton1_click(object sender, imageclickeventargs e)//登入按鈕

else

dr.close();

con.close();}}

用c#(windows應用程式)編寫一個程式,輸入自己的姓名「****」,然後輸出「你好****」。跪求!!!!

8樓:匿名使用者

新建一個visual c#的windows應用程式,在窗體上新增一個button和一個textbox,在button裡新增以下**: if (textbox1.text !

= "")

9樓:匿名使用者

-----------------------------------------這是控制檯輸入法 static void main(string args)

{ console.writeline("請輸入你的姓名:");

string name = console.readline(); console.writeline(name);

10樓:匿名使用者

string name = console.readline();

console.write(string.format("你好", name));

console.readkey();

visual c2019中如何執行cpp檔案

其實最簡單滴方法。右鍵點cpp檔案,開啟方式,選vc2008。下面有個方框,打鉤,確定。改回來時一樣地操作。cpp檔案本身是無法執行的,真正執行的是cpp 編譯產生的exe程式。具體步驟 1 從這個cpp檔案建立一個專案,或者建立一個專案,新增這個cpp檔案 2 編譯 3 如果編譯沒有錯誤,就可以執...

visual c 2019 x86 Redistrib和c 2019,c 2019同在一臺電腦上是怎麼回事呢

microsoft visual c 2010 x86 redistrib c 2008 c 2005,他們是vs產品的不同時期的幾代產品,在對c 標準的支援上是不一樣的,他們的底層依賴也有不同,因此可以將它們看作是名稱相似的不同產品。微軟也考慮到,軟體公司需要對舊版本的技術支援等問題,因此不會採用...

VisualC60中比如使用int16定義

int 在32位windows作業系統上是復32 bit,在64位的操製作系統上可能變成64bit。因此baiint具體佔多少dubit,是和作業系統,編譯zhi器等相關dao 的。int16,int8很明確的說明這個整數是 16 bit 8bit,不管在什麼編譯器,什麼作業系統上都如此。這對軟體的...