A.AnchorB.DockC.FillD.Full
单项选择题要设置一个窗体为MDI窗体的子窗体,必须设置其()属性。
A.IsMdiParentB.MdiParentC.IsMdiContainerD.MDIContainer
单项选择题控制窗体显示位置,可以使用Startposition属性,以下是Startposition属性值的是()
A.NoneB.TopC.LeftD.Manual
单项选择题控制窗体是否可见,可以使用WindowsState属性,以下是WindowsState属性值的是()
A.NormalB.MinC.MaxD.以上都不是
单项选择题关于数据库连接字符串代码正确的是()
A.private static string DBConnectString ="server=.;database=FreshLiveDB;uid=sa;pwd=123;";B.private static string DBConnectString ="server=.;database=FreshLiveDB;id=sa;pwd=123;";C.private static string DBConnectString ="server=.;database=FreshLiveDB;id=sa;password=123;";D.private static string DBConnectString ="server=.;database=FreshLiveDB;name=sa;pwd=123;";
单项选择题关于SqlCommand命令对象编写正确的是()
A.SqlCommand cmm =new SqlCommand(sql语句,Connection对象);B.SqlCommand cmm =new SqlCommand(Connection对象,sql语句);C.SqlCommand cmm =new SqlCommand(sql语句);D.SqlCommand cmm =new SqlCommand(Connection对象);