2

我有三个文本框,我得到它们的值是这样的:

Dim X, Y, W As Double
X = DLookup("Summ", "tblPlatej", "ID= " & Form_frmPlatej!ID)
Y = DLookup("Deposit_before", "tblPlatej", "ID= " & Form_frmPlatej!ID)
W = DLookup("Monthly_payment", "tblPlatej", "ID= " & Form_frmPlatej!ID)

但是当我像这样更改文本框的值时

Form_frmPlatej.Deposit_before = X - W + Y

我收到类型不匹配错误。所有文本框都是货币。如何计算新记录并将该数字放入“Deposit_before”文本框中?

Summ、Deposit_before、Monthly_payment 是我表中的货币数据类型。deposit_before 大多为负数。

这是我点击按钮的全部代码

Private Sub Command13_Click()

a1 = DLookup("Inhabitant", "tblClient", "ID = " & Form_frmMain!ID)
B1 = DLookup("PriceTBO", "tblPrice")
c1 = DLookup("Republican", "tblClient", "ID = " & Form_frmMain!ID)
d1 = DLookup("Regional", "tblClient", "ID = " & Form_frmMain!ID)
e1 = DLookup("Local", "tblClient", "ID = " & Form_frmMain!ID)

A = DLookup("IDP", "tblPlatej", "ID= " & Form_frmPlatej!ID)
B = DLookup("Type_of_payment", "tblPlatej", "ID= " & Form_frmPlatej!ID)
C = DLookup("Year", "tblPlatej", "ID= " & Form_frmPlatej!ID)
D = DLookup("Month", "tblPlatej", "ID= " & Form_frmPlatej!ID)

Y = DLookup("Deposit_before", "tblPlatej", "ID= " & Form_frmPlatej!ID) // Problem here
W = DLookup("Monthly_payment", "tblPlatej", "ID= " & Form_frmPlatej!ID) //Problem here
X = DLookup("Summ", "tblPlatej", "ID= " & Form_frmPlatej!ID)

i = Form_frmPlatej.Month.ListIndex
j = Form_frmPlatej.Year.ListIndex
den = DLookup("Date", "tblPlatej", "IDP = " & Form_frmPlatej!IDP)

If X <> " " Then
With Me.Recordset
If Me.Recordset.BOF = False And Me.Recordset.EOF = False Then
.MoveFirst
End If
.AddNew
.Edit

Form_frmPlatej.Deposit_before = X - W + Y  //Problem here

Form_frmPlatej.IDP = A + 1
Form_frmPlatej.Type_of_payment = B
If i = 11 Then
Form_frmPlatej.Year = Year.ItemData(j + 1)
i = -1
Else
Form_frmPlatej.Year = Year.ItemData(j)
End If

Form_frmPlatej.Month = Month.ItemData(i + 1)
Form_frmPlatej.Date = DateAdd("m", 1, den)

If c1 <> 0 Then
Form_frmPlatej.Monthly_payment = (a1 * B1) - (c1 * (a1 * B1)) / 100

ElseIf d1 <> 0 Then
Form_frmPlatej.Monthly_payment = (a1 * B1) - (d1 * (a1 * B1)) / 100

ElseIf e1 <> 0 Then
Form_frmPlatej.Monthly_payment = (a1 * B1) - (e1 * (a1 * B1)) / 100
Else
Form_frmPlatej.Monthly_payment = a1 * B1
End If
.Update

End With

Else
MsgBox ("Please enter number")
End If

End Sub

我完全糊涂了。

4

1 回答 1

3

我敢打赌你的问题如下。当你这样说时:

Dim X, Y, W As Double

认为你已经做到了:

Dim X As Double, Y As Double, W As Double

但你真正做的是:

Dim X
Dim Y
Dim W As Double

这是一个典型的 VBA 错误。大多数 VBA 程序员都做到了,这就是为什么大多数 VBA 程序员只能在每条Dim语句中声明一个变量(即每行一个)。否则很容易犯这个错误,之后很难发现它。

因此,Dim XDim Y已经隐式声明XandY作为 Variant 类型(等效于Dim X As Variantand Dim Y As Variant)。

为什么这很重要?当你这样说时:

X = DLookup("Summ", "tblPlatej", "ID= " & Form_frmPlatej!ID)
Y = DLookup("Deposit_before", "tblPlatej", "ID= " & Form_frmPlatej!ID)

也许这两个中的一个DLookup意外地返回了不是数字的东西,例如字符串。您的变体XY将接受这一点而不会抱怨;Variant 获取赋值右侧的事物的类型。

但是,当您尝试使用这些值进行数学运算时,如果和/或是字符串,X - W + Y则会引发类型不匹配错误。XY

另请参阅我的这个较早的答案,我从中重复使用了一些措辞:https ://stackoverflow.com/a/11089684/119775

于 2012-07-11T06:57:48.850 回答