Bartender中使用VB语言编码,求助
bartender吧
全部回复
仅看楼主
level 1
zl1264111242 楼主
根据判定修改字体
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 9
简单明了的说下你要实现的效果
2015年07月27日 10点07分 3
其实就是个标签软件里面写vb
2015年07月27日 10点07分
回复 zl1264111242 :写vb要实现什么功能啊
2015年07月27日 10点07分
回复 iozlliang :当客户简称是a,客户简称字体斜体,其他不需要!客户简称是个textbox,数据源是个excel档,对象名称无法调用
2015年07月27日 10点07分
@iozlliang 求帮 +Q:1396328188 本吧有我的问题,Bartender9.4想根据E表数据在电脑找出对应的图片,想VB用VB解决
2016年03月27日 14点03分
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
1