Students helping students, join us in improving Bored of Studies by donating and supporting future students!
i dont get ur questionOriginally posted by Owyn
k, thanks for the help. Thats going to make things really difficult, but if you guys don't know there isn't much chance i'll find out somewhere else.
Apparently our skool doesn't have the program on any resource, they said it comes with the package/systemOriginally posted by sunny
Read up on the timer control, and change a picturebox/imagebox's picture when the timer control fires.
Buy it, or ask your school for help.
Originally posted by J0n
To make the time flash, you can just change the .ForeColor propertey of the Label/Textbox you are using to display the time. e.g.
Private Sub Timer1_Timer()
Label1.ForeColor = IIf(Label1.ForeColor = vbBlack, vbRed, vbBlack)
End Sub
You can't download VB 6 free (legally). Although you can download the Control Creation Edition, which has a few limitations such as you can't compile, or you could buy a VB 6 book that has 'VB 6 Working Model Edition' who's only limitation is that you can't compile (there is a registry hack for that on the net).
Thanx guys fro your suggestions. As with yours Winston, I'm pretty sure i tried that with the teacher but it didn't work but thanx anyways!Originally posted by Winston
You could also set the visible state of the label every interval from false to true, true to false etc...
Are you saying that it executes Form_Load, when the form is UNloaded?? What exactly are you doing in Form_Load?Originally posted by Owyn
it skips form load UNTIL it is unloaded.