a3deluxe Posted December 2, 2016 at 01:58 PM Report Share #600984 Posted December 2, 2016 at 01:58 PM (edited) Boa Tarde, Precisava de uma ajuda no seguinte: O código seguinte é um timer que quando aparece o Form2, ele começa a contar. Agora queria substituir por uma Imagem, quando aparecer uma imagem, ele começar a contar. por exemplo: Me.BackgroundImage = Image.FromFile("d:\imagem.bmp") Queria colocar estes exemplo no lugar do Form2 tentei substituir mas não funcionou. // Private Sub Timer9_Tick(sender As Object, e As EventArgs) Handles Timer9.Tick For Each frm As Form In Application.OpenForms If frm.Name.Equals("Form2") Then TimerCount += 1 End If Next Edited December 2, 2016 at 05:19 PM by a3deluxe Link to comment Share on other sites More sharing options...
vikcch Posted December 2, 2016 at 05:32 PM Report Share #600988 Posted December 2, 2016 at 05:32 PM não sei se percebi... mas podes ver no timer se tem imagem If Me.BackgroundImage Is Nothing Then MsgBox("nao tem imagem") Else MsgBox("tem imagem") End If Link to comment Share on other sites More sharing options...
a3deluxe Posted December 2, 2016 at 08:37 PM Author Report Share #600989 Posted December 2, 2016 at 08:37 PM Obrigado pela ajuda, mas eu não me expliquei bem. Então o meu Form1 inicia com uma imagem de Background e depois carrego num botão e ele muda para outra imagem de Background. Queria quando muda-se de Background ele inicia-se a contagem no Timer. Com o código em cima ele aparece logo o Background novo. Obrigado Link to comment Share on other sites More sharing options...
vikcch Posted December 3, 2016 at 04:59 AM Report Share #600993 Posted December 3, 2016 at 04:59 AM (edited) 8 horas atrás, a3deluxe disse: Então o meu Form1 inicia com uma imagem de Background e depois carrego num botão e ele muda para outra imagem de Background. Queria quando muda-se de Background ele inicia-se a contagem no Timer. Então se quando carregas num botão muda a imagem de background e queres que quando a imagem de background se mude (ou seja, quando carregas no botão) é só iniciar o timer enabled a false e setares o enabled a true quando carregas no botão.... se não for isto continuo a não perceber.. sorry... Edited December 3, 2016 at 05:02 AM by vikcch Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now