主题:新手学vb编写抽奖程序时遇到语句问题,请帮助解释,谢谢!
Private Sub Timer_FlashName_Timer() '闪动中奖者姓名
If Label_FlashName.Visible = True Then
Label_FlashName.Visible = False
Else
Label_FlashName.Visible = True
End If
End Sub
不明白之处:Timer_FlashName_Timer下划线是什么意思?
Label_FlashName.Visible = True,这里FlashName是控件名称还是属性?
If Label_FlashName.Visible = True Then
Label_FlashName.Visible = False
Else
Label_FlashName.Visible = True
End If
End Sub
不明白之处:Timer_FlashName_Timer下划线是什么意思?
Label_FlashName.Visible = True,这里FlashName是控件名称还是属性?