I have set up a questionaire as a test program. It works perfectly as far as functionality, however there is one issue that is just annoying. I have a person select a radiobox for there answer. If there answer is correct another form pops up right above the time that says you got it right and slowly disappears until it is closed. It works properly but when it goes to the next question you have to wait until the form closes to answer the question. Is there a way to make it just pop up without having to wait for it to close before continuing.
p.s all this is happening on the button click event. dont know if that makes a difference or not.
edit: the fading form has this code:
Code:Me.Top = Screen.PrimaryScreen.WorkingArea.Height - Me.Height Me.Left = Screen.PrimaryScreen.WorkingArea.Width - Me.Width Dim sngOpacity As Single For sngOpacity = 1 To 0 Step -0.05 Me.Opacity = sngOpacity Me.Refresh() System.Threading.Thread.Sleep(200) Next sngOpacity Me.Close()




Reply With Quote