VB编程中的一些经验[2]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 starfish 的 blog

public variables 公共变量
public constants 公共常量
project name (as specified in the project properties dialog box) 工程名称(在工程属性对话框中的名字) [ps: vb中文版中的工程名称可以是中文,比较奇怪的说]
class names (name property of a class module, a user control, a property page, or a user document)  类名(类模块、用户控件模块,属性页,用户文档的name属性)


换句话说,其他的标识符都可以用中文,例如:
private sub cmdtest_click()
   dim 中文变量 as string
   中文变量 = "你好! hello!"
   msgbox 中文变量

本文关键:VB, 经验
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top