gpt4 book ai didi

excel - 错误信息 Byref 类型不匹配

转载 作者:行者123 更新时间:2023-12-04 20:13:41 27 4
gpt4 key购买 nike

这是代码

Dim Comp_Str, Comp_Val As String
Call Populate(Comp_Str, Comp_Val)

Sub Populate(Str As String, Tpry_Str As String)

这是抛出一个错误
Byref 参数类型不匹配

我无法找到问题所在

String一路走来

最佳答案

声明每个变量的类型。如果省略一个,则默认情况下它的类型被视为 Variant。

Sub Test()
Dim Comp_Str As String, Comp_Val As String
Call Populate(Comp_Str, Comp_Val)
End Sub

Sub Populate(Str As String, Tpry_Str As String)
' ...
End Sub

关于excel - 错误信息 Byref 类型不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32805257/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com