Results 1 to 12 of 12

Thread: [2008] Forms

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2009
    Posts
    448

    [2008] Forms

    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()
    Last edited by ngreenwood6; Jan 15th, 2009 at 04:13 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width