1樓:
哈哈 應該這樣寫,
private sub timer1_timer()
image1.visible = not image1.visible
end sub
樓主逆反邏輯錯誤了
if image1.visible = true then image1.visible = false
'這裡沒錯
if image1.visible = false then image1.visible = true
'但是如果這裡的條件為真的話,那麼肯定執行上面的語句了,所以你的**總會顯示
end sub
2樓:小李無刀
timer有沒有開啟,enable是不是 true
3樓:明日飛雪
private sub timer1_timer()image1.visible = not image1.visible
end sub
再不行的話把**控制項換成picturebox
4樓:匿名使用者
private sub form_load()timer1.enabled = truetimer1.interval = 500timer2.
enabled = truetimer2.interval = 1000end sub
private sub timer1_timer()image1.visible = falseend sub
private sub timer2_timer()image1.visible = trueend sub
已經測試,能實現一閃一閃的效果
求高手幫忙寫個VB程式,可以載入到excel裡面的,刪除一定區域內,大於x小於y的數
在當前工作表插入乙個命令按鈕,雙擊後貼上如下 private sub commandbutton1 click call clearxy 資料處理 end sub sub clearxy dim r c i j r usedrange.rows.row usedrange.rows.count 1 ...
VB程式問題,VB程式設計問題
這個有難度,你查查相關的api函式吧,自動關機,可以使用shutdonw 用wmi實現可能更方便些 vb程式設計問題 10 窗體的load事件是在窗體駐入記憶體的時候產生的,這個時侯窗體還沒有顯示,所以你的輸出當然看不到了。可以把 放到按鈕事件或resize事件 resize事件有可能被多次執行 中...
vb做截圖程式,VB做截圖程式
private declare sub keybd event lib user32 byval bvk as byte,byval bscan as byte,byval dwflags as long,byval dwextrainfo as long const thescreen 0 con...