当前位置: 代码迷 >> vbScript >> VBScript中一些小疑点请大家讲解
  详细解决方案

VBScript中一些小疑点请大家讲解

热度:3113   发布时间:2013-02-26 00:00:00.0
VBScript中一些小问题请大家讲解
1.
AlertLabel.ForeColor = vbRed
AlertLabel.Font.Bold = True
AlertLabel.Font.Italic = True
2.
Document.Form1.CardType.Options(SelectedIndex).Text
请注解一下,上面几句代码什么意思?

------解决方案--------------------------------------------------------
1.AlertLabel 的前景色为红,字体为粗,斜
2.取出表单Form1中CardType下拉框当前选中的值
------解决方案--------------------------------------------------------
1.
AlertLabel.ForeColor = vbRed 'AlertLabel 的前景色为红
AlertLabel.Font.Bold = True '…………字体为粗体AlertLabel.Font.Italic = True '…………字体为斜体2.
'取出表单Form1中CardType下拉框当前选中的值
Document.Form1.CardType.Options(SelectedIndex).Text
  相关解决方案