English 中文(简体)
如何等待Visual Basic 2010窗体的按钮单击事件结束
原标题:How to wait for a Visual Basic 2010 form s button-click event to end

在我的vb程序中,我有两个表单,它们可以一起工作,允许您定义几乎任意数量的设计。在第一个表单中,有一个二维数组,存储一个整数(不重要)和一个ID类,我在另一个表单中将其定义为公共内部类。单击此表单中的“定义ID”按钮将转到下一个表单,在那里,您将根据在第一个窗体的组合框中选择或输入的数组中的索引定义一个新ID或编辑一个旧ID,使用第二形式中的多个字段来定义其不同方面。我想做的是,当用户在第二个表单中定义ID时,第一个表单的代码将被挂起,然后他们单击第二个窗体上的“继续”按钮。经过一点错误检查,该表单要么暂时隐藏(这就是我最初实现它的方式),要么返回编辑后的ID对象,但前提是错误检查没有表明任何输入不正确。最初,我只是使用newForm.curID获取ID,并将其设置为数组中的位置,等待用户使用newForm.showDialog()完成,但有时程序会返回null异常,因为我认为我没有正确复制ID。此外,尽管错误显示的时间很短,但“继续”按钮会保存ID,而不管其正确性如何。有没有一种方法可以操作showDialog以从中获得结果响应?

短版本:我需要将一个窗体中内部类的对象返回到调用窗体中的数组,或者等待窗体完成并使用调用窗体复制其对象,然后关闭被调用方窗体。

First Form的“定义”按钮方法

Private Sub DesignButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DesignButton.Click
    Me.totalCoilBox.Focus()  calls validating method, makes textbox yellow if invalid 

    If totalCoilBox.BackColor = Color.White Then
        Dim newForm As New IVD_DesignData  creates an object of ID called curID as well 

        Try
            If DesignIDBox.Items.Contains(DesignIDBox.Text) Then  design exists
                set the curID to the one already in the array 
                newForm.curID = CGID(Integer.Parse(DesignIDBox.Text), 1)
                 set number of coils to new number, if applicable 
                CGID(Integer.Parse(DesignIDBox.Text), 0) = Integer.Parse(DesignIDBox.Text)

                 show dialog for editing 
                newForm.ShowDialog()
                 put the (edited) curID back into the array 
                CGID(Integer.Parse(DesignIDBox.Text), 1) = newForm.curID
            Else  design does not exist, make a new one
                put number of coils into new array spot 

                CGID(Integer.Parse(DesignIDBox.Text), 0) = Integer.Parse(totalCoilBox.Text)
                 set the design ID to the number of defined IDs plus one 
                newForm.curID.designID = Integer.Parse(DesignIDBox.Text)
                 show dialog for editing 
                newForm.ShowDialog()
                 add curID into the array 
                CGID(Integer.Parse(DesignIDBox.Text), 1) = newForm.curID
                 add that design number to the dropdown box 
                DesignIDBox.Items.Add(newForm.curID.ToString())
                 increment number of defined designs 
                Current_IDBox.Text = Integer.Parse(Current_IDBox.Text) + 1
            End If

        Catch ex As ArgumentOutOfRangeException  dropdown box has no elements in it;
            do the same as adding a new ID:
            put number of coils into new array spot 
            CGID(Integer.Parse(DesignIDBox.Text), 0) = Integer.Parse(totalCoilBox.Text)
             set the design ID to the number of defined IDs plus one 
            newForm.curID.designID = Integer.Parse(DesignIDBox.Text)
             show dialog for editing 
            newForm.showDialog()
             add curID into the array 
            CGID(Integer.Parse(DesignIDBox.Text), 1) = newForm.curID
             add that design number to the dropdown box 
            DesignIDBox.Items.Add(newForm.curID.ToString())
             increment number of defined designs 
            Current_IDBox.Text = Integer.Parse(Current_IDBox.Text) + 1
        End Try
        DesignIDBox.Text = newForm.curID.ToString()
        newForm.Close()
    End If

Second Form的“继续”按钮方法

Private Sub ContinueButton_Click(ByVal sender As System.Object, ByVal e As ByVal e As System.EventArgs) Handles ContinueButton.Click
    Me.NTBox.Focus()
    Me.IDBox.Focus()
    Me.ODBox.Focus()
    Me.TBox.Focus()
    Me.WBox.Focus()
    If HSCBox.Checked Then
        Me.HSC_MultBox.Focus()
    Else
        curID.HSC = "n"
        curID.HSC_Mult = 1
    End If

    If NTBox.BackColor = Color.White And IDBox.BackColor = Color.White And ODBox.BackColor = Color.White And TBox.BackColor = Color.White And WBox.BackColor = Color.White And ((HSCBox.Checked And HSC_MultBox.BackColor = Color.White) Or Not (HSCBox.Checked)) Then
         success!  window falls back? 
    End If
End Sub

感谢您的帮助!我更精通Java,所以这个VB项目有时有点令人沮丧。

最佳回答

在你的第二个表单上,做一个这样的方法:

public function ReturnSomething(curId as whateverType) as whateverReturnType

  me.curId = curId
  me.showDialog
  return someValue

end function

然后从你的第一个表格中调用它。

EDIT:另外,让第二个表单的Continue方法调用Me.Close。这将关闭第二个窗体。ShowDialog调用将阻塞,直到窗体关闭。

第一个表单不应该调用第二个表单的close方法。

问题回答

暂无回答




相关问题
Is Shared ReadOnly lazyloaded?

I was wondering when I write Shared ReadOnly Variable As DataType = New DataType() Or alternatively Shared ReadOnly Variable As New DataType() Is it lazy loaded or as the instance initializes? ...

Entertaining a baby with VB.NET

I would like to write a little application in VB.NET that will detect a baby s cry. How would I get started with such an application?

Choose Enter Rather than Pressing Ok button

I have many fields in the page and the last field is a dropdown with list of values. When I select an item in a dropdown and press Enter, it doesn t do the "Ok". Instead I have to manually click on Ok ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

Set Select command in code

On button Click I want to Set the Select command of a Gridview. I do this and then databind the grid but it doesn t work. What am i doing wrong? protected void bttnView_Click(object sender, ...

Hover tooltip on specific words in rich text box?

I m trying to create something like a tooltip suddenly hoovering over the mouse pointer when specific words in the richt text box is hovered over. How can this be done?

热门标签