Predmet:Re: Blinkanje Label teksta
Vjerovatno hoces ovako nesto:
PreuzmiIzvorni kôd (Visual Basic):Option Compare Database
Option Explicit
Dim BrojBlinka As Integer
Dim Tekst As String
Private Sub Form_Open(Cancel As Integer)
Tekst = Me.Caption
End Sub
Private Sub Form_Timer()
If Format$(Me.Caption) = "" Then
Me.Caption = Tekst
Else
Me.Caption = ""
End If
Me.Refresh
BrojBlinka = BrojBlinka + 1
If BrojBlinka = 10 Then
DoCmd.Close
End If
End Sub
Podrska samo putem foruma, jer samo tako i ostali imaju koristi od toga.