gpt4 book ai didi

excel - VBE 使用分号自动更正

转载 作者:行者123 更新时间:2023-12-02 17:22:17 26 4
gpt4 key购买 nike

我正在使用 VBE 的 VBA,看看 VB.Net 中是否有任何更深奥的逻辑运算符可以运行。

IsNot is the opposite of the Is operator. The advantage of IsNot is that you can avoid awkward syntax with Not and Is, which can be difficult to read.
IsNot Operator

为了好玩,我将其输入到公共(public)模块代码表中。

Sub test()

dim obj As object

debug.print obj isnot nothing

End Sub

当我在输入代码行 debug.print obj Nothing 后点击 时,VBE 就会自动更正过来。

Sub test()

Dim obj As Object

Debug.Print obj; isnot; Nothing

End Sub

Oh-key-doh-key,isnot 未被识别,我明白了。它不是 VB7 的一部分。

我无法理解的是 VBE 的自动更正系统包含分号。

VBA 脚本中分号的用途是什么?

<小时/>

1 真正的程序员使用 COPY CON

最佳答案

它是 Debug.Print 语法的一部分.

object.Print [ outputlist ]

The outputlist argument has the following syntax and parts: {Spc(n) | Tab(n)} expression charpos

charpos
Optional. Specifies the insertion point for the next character. Use a semicolon (;) to position the insertion point immediately following the last character displayed.

关于excel - VBE 使用分号自动更正,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54479501/

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