无法解决错误“对非共享成员的引用需要对象引用”。 vb.net”

发布于 2024-11-25 23:55:19 字数 547 浏览 0 评论 0原文

我有以下代码

Case "Formula_MDX"
    Dim cubeid As String = Request("intCubeId")
    Dim strDimCode As String = Request("strDimCode")
    Dim strMdxFormula As String = Request("strMdxFormula")
    Dim result As String
    result =  HostAnalytics.HostAnalyzer.HostAnalyzer.setSubstituteVarMDXType(cubeid, strDimCode, strMdxFormula)

Case Else
Response.Write("Invalid call")
End Select

,vb 方法返回字符串类型的数据。 我声明了输入字符串的结果。但它显示在 VB 方法上,例如

“对非共享成员的引用需要对象引用”

如何解决这个问题?我在这段代码中还犯过其他错误吗?

I have the following code

Case "Formula_MDX"
    Dim cubeid As String = Request("intCubeId")
    Dim strDimCode As String = Request("strDimCode")
    Dim strMdxFormula As String = Request("strMdxFormula")
    Dim result As String
    result =  HostAnalytics.HostAnalyzer.HostAnalyzer.setSubstituteVarMDXType(cubeid, strDimCode, strMdxFormula)

Case Else
Response.Write("Invalid call")
End Select

that vb method returns data of type string.
I declared the result of the typed string. but it is showing on that vb method like

"reference to a non-shared member requires an object reference"

How to solve this? Did I make any other mistakes in this code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半城柳色半声笛 2024-12-02 23:55:19

创建该类型的对象,并调用该对象的方法

Dim ha As New HostAnalytics.HostAnalyzer.HostAnalyzer()  'Edit, need New
result = ha.setSubstituteVarMDXType(cubeid, strDimCode, strMdxFormula)

Make an object of that type, and invoke the method on that

Dim ha As New HostAnalytics.HostAnalyzer.HostAnalyzer()  'Edit, need New
result = ha.setSubstituteVarMDXType(cubeid, strDimCode, strMdxFormula)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文