VB中 With .Tables()是什么意思?
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/27 14:12:11
VB中With.Tables()是什么意思?VB中With.Tables()是什么意思?VB中With.Tables()是什么意思?With语句:对一个对象执行多个动作我们经常需要在同一对象中执行多个
VB中 With .Tables()是什么意思?
VB中 With .Tables()是什么意思?
VB中 With .Tables()是什么意思?
With 语句:对一个对象执行多个动作
我们经常需要在同一对象中执行多个不同的动作.例如,需要对同一对象设置几个属性.途径之一是使用多条语句.
Private Sub Form_Load()
Command1.Caption = "OK"
Command1.Visible = True
Command1.Top = 200
Command1.Left = 5000
Command1.Enabled = True
End Sub
应注意的是所有这些语句使用同一个对象变量 Command1要书写许多遍,非常麻烦,还不利于阅读.通过使用 With...End With 语句,可使该代码更容易编写、阅读和更有效地运行.
Private Sub Form_Load()
With Command1
.Caption = "OK"
.Visible = True
.Top = 200
.Left = 5000
.Enabled = True
End With
End Sub
这样看起来是不是好多了?使用VB的“.”提示功能,书写起来也简便多了.
还可以通过将 With...End With 语句置入另一个 With...End With 语句内实现嵌套的 With 语句.
VB中 With .Tables()是什么意思?
在VB中with是什么的?
在VB中with.end
在VB中with是什么
VB中,
vb中
VB中取正值的函数是?
sas中tables语怎么定义变量
With TChart1 .Series(0).Clear End With 这是VB里的句子
tables与dishes的发音(音标)
VB,代数的VB表达式!求解中?8(e^3)(ln2)=?答案是8*exp(3)*log(2)这个ln2和log(2)相等吗?
only放在句末,求一句英文的解析The USER_OBJECTS view can provide informationabout the tables and views created by the user only.请问,这句话中,only是修饰tables and views 还是修饰user.
there are two tables in my bedroom (对two tables 提问 )
请问在VB中2+5是合法常量嘛?
请问vb中那个dim是哪个英文单词的缩写?
在VB中,Chr(10)是表示哪个按键?
VB循环中步长可以是个分数吗
请问VB中Int(Rnd)是什么意思如题,范围是?