0

我正在尝试类似的东西:

Dim experiment As String = "Predefined experiment string.."

但遗憾的是它不起作用所以有没有办法在vb6中以类似的方式预定义一个字符串?

4

2 回答 2

8

对于常量字符串:

const experiment As String = "Predefined experiment string.."

在具有相应范围的访问修饰符的模块/类/表单的顶部,或者在例程中作为本地。

对于具有可变内容的字符串,您不能在同一行声明和分配,但是您可以:

Dim experiment As String: experiment = "Predefined experiment string.."
于 2012-02-15T11:17:40.157 回答
3

你在一个语句中做了两件事:声明一个变量初始化它。

在 VB6 中,您必须分步执行此操作:

Dim experiment As String 
experiment = "Predefined experiment string.."
于 2012-02-15T11:19:25.103 回答