level 1
根据判定修改字体
IF Value ="C" THEN
Value,Font.Italic=True
END IF
错误的!!!求助!
2015年07月23日 03点07分
1
level 9
第一行就有问题了,value是什么东西,你可以定义另外一个名称来实现,
2015年07月24日 05点07分
2
是在这个软件里面写的Bartender,我命名过,说没有对象,对象名称我也用了,都没用!
2015年07月27日 09点07分
level 5
IF Value = "C" THEN
Font.Italic=True
END IF
2015年07月27日 10点07分
4
这个用过,提示无对象
2015年07月27日 10点07分
level 2
试试看这样
IF Field("数据表$.字段") ="C" THEN
Font.Italic=True
END IF
2016年01月24日 22点01分
5
求帮 +Q:1396328188 本吧有我的问题,Bartender9.4想根据E表数据在电脑找出对应的图片,想VB用VB解决
2016年03月27日 14点03分
level 9
Sub AlertUser(value)
If value = 0 Then
AlertLabel.ForeColor = vbRed
AlertLabel.Font.Bold = True
AlertLabel.Font.Italic = True
End IfEnd Sub
Running Certain Statements if a Condition is True and Running Others if a Condition is False.
You can use an If...Then...Else statement to define two blocks of executable statements: one block to run if the condition is True, the other block to run if the condition is False.
Sub AlertUser(value)
If value = 0 Then
AlertLabel.ForeColor = vbRed
AlertLabel.Font.Bold = True
AlertLabel.Font.Italic = True
Else
AlertLabel.Forecolor = vbBlack
AlertLabel.Font.Bold = False
AlertLabel.Font.Italic = False
End If
End Sub
2016年10月18日 03点10分
6