單項選擇題WinForm窗體程序總是從()位置開始運行。

A.Form1類
B.MainForm類
C.Programe類
D.Main()函數(shù)


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題WinForms的窗體中有一個名為mnmMenu的主菜單,下列代碼()能正確刪除文件選項,該選項為第一個菜單項。

A.this.mnmMenu.Items.Remove("文件");
B.this.mnmMenu.Items.RemoveAt(0);
C.this.mnmMenu.Items.RemoveAt(1);
D.this.mnmMenu.Items.RemoveAt("文件");

2.單項選擇題WinForms窗體的后綴名是()

A.cs
B.aspx
C.form
D.xml

3.多項選擇題.Net Framework 數(shù)據(jù)提供程序包含的對象有()

A.Connection
B.Command
C.DataReader
D.Data

4.多項選擇題要使用適配器對象獲取MyTable 表中所有數(shù)據(jù),假設(shè)con 是可用的連接對象,則正確的方式為()

A.SqlDataAdapter da =SqlDataAdapter("SELECT *FROM MyTable",con);DataSet ds =new DataSet();da.Fill(ds);
B.SqlCommand cmd =new ("SELECT *FROM MyTable",con);SqlDataAdapter da =SqlDataAdapter(cmd);DataSet ds =new DataSet();da.Fill(ds);
C.SqlCommand cmd =new ("SELECT *FROM MyTable",con);SqlDataAdapter da =SqlDataAdapter(cmd);DataSet ds =new DataSet();da.Fill(ds,"MyTable");
D.SqlDataAdapter da =SqlDataAdapter("SELECT *FROM MyTable",con);DataSet ds =new DataSet();da.Fill(ds.Tables["MyTable"]);