English 中文(简体)
用户论坛在纽特州点击之后没有上台
原标题:UserForm not coming up after button click
  • 时间:2011-10-25 15:19:55
  •  标签:
  • excel
  • vba

我为一份工作单创建了两个新的用户表格。 在我给他们之后,我增加了两顿。 然后,我设置了一个单元并投入使用。

Sub Button4_Click()
Missing.Show
End Sub

现在,我把宏观分配到纽特,当我点击纽顿时,我会遇到“必然”错误。 为什么如此,如果上述工作不奏效,我能做些什么,使th子实际上打开了炉 form?

最佳回答

我最后指出这个问题。 它实际上与纽托邦本身没有任何关系。 <代码>Missing。 显示完全是罚款。 这实际上是一个初始化问题;在某个时候,我改变了初始化,改为初步化。

Private Sub Missing_Initialize()
    TextBox.Value = ""
End Sub

当我实际上本应离开时

Private Sub UserForm2_Initialize()
    TextBox.Value = ""
End Sub

因此,显然,尽管错误总是带给我,但实际上是造成混淆的初始形式。 希望能帮助有类似问题的其他人。

问题回答

如何:

Private Sub Missing_Click()
Load Missing
Missing.Show
End Sub

由于你不在表格(级)模块之内,所以VBA对“导弹”指的是什么没有认识。 你们必须首先立即这样做。

Dim frm As Missing

Set frm = New Missing

Missing.Show

而且,如果我可以补充的话,它就不是我的事务,而是“问题”。 显示”可能是混淆的。 我想避免使用像关键词这样的变量。





相关问题
import of excel in SQL imports NULL lines

I have a stored procedure that imports differently formatted workbooks into a database table, does work on them then drops the table. Here is the populating query. SELECT IDENTITY(INT,1,1) AS ID ...

Connecting to Oracle 10g with ODBC from Excel VBA

The following code works. the connection opens fine but recordset.recordCount always returns -1 when there is data in the table. ANd If I try to call any methods/properties on recordset it crashes ...

Excel date to Unix timestamp

Does anyone know how to convert an Excel date to a correct Unix timestamp?

C# GemBox Excel Import Error

I am trying to import an excel file into a data table using GemBox and I keep getting this error: Invalid data value when extracting to DataTable at SourceRowIndex: 1, and SourceColumnIndex: 1. As ...

Importing from excel "applications" using SSIS

I am looking for any tips or resources on importing from excel into a SQL database, but specifically when the information is NOT in column and row format. I am currently doing some pre-development ...

热门标签