您现在的位置:在线题库 >> 计算机类 >> 软件开发工具
  • ID:9422-2740
    软件危机是指在计算机软件过程中遇到的一系列严重问题和难题

  • 相关试题查看更多

  • ID:9422-2702

    My.Computer.FileSystem对象提供了向二进制文件中写入数据的( )方法。

    A.ReadAllBytes B. ReadAllText C. WriteAllText D. WriteAllBytes.

    查看解析

  • ID:9422-2728
    软件项目管理必须( )介入。
    A、从项目的开头 B、在可行性研究之后
    C、在需求分析之后 D、在编码之后

    查看解析

  • ID:9422-2718

    如果利用Tab键在窗体中移动焦点,可通过设置一个属性的数字值,来确定使用Tab键的访问顺序,这个属性是 ( )

    A. Visible. B.TextAlign C. TabIndex D. Text

    查看解析

  • ID:9422-2720

    可以将窗体的一个属性设置为True,使窗体抢先获得键盘事件。( )

    1. Enabled B. Anchor C. KeyPreview D.Visible

    查看解析

  • ID:9422-2724

    程序阅读)

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

    FolderBrowserDialog1.RootFolder = Environment.SpecialFolder.Desktop

    If Windows.Forms.DialogResult.OK = FolderBrowserDialog1.ShowDialog() Then

    m_Path = FolderBrowserDialog1.SelectedPath

    UpdateListBox(ListBox1)

    End If

    End Sub

    (1)上述代码是一个按钮点击事件响应过程。FolderBrowserDialog1为浏览文件夹控件请说明该过程实现的是一个什么功能?

    (2)语句FolderBrowserDialog1.RootFolder = Environment.SpecialFolder.Desktop是实现什么功能?


    Dim strConn As String = "Server=xionghl; DataBase=SuperMarket; uid=sa;password=123456"

    (3)上面代码是VB.NET连接数据库的连接串参数,请解释该串中各参数的含义。

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

    ColorDialog1.AllowFullOpen = False ColorDialog1为颜色选择对话框

    ColorDialog1.ShowDialog()

    Button1.BackColor = ColorDialog1.Color

    End Sub
    (4)写出语句ColorDialog1.AllowFullOpen = False的作用 (5)写出该代码片段实现的功能。

    查看解析