natosubsonic
Programmer
this is my code so far. i am building a a trivia based game i wish to randomize the forms. the names of forms are frmq1,frmq2 etc. is there any other ways to do this and what do i need to change or put in to make this code work. it is the second part. thanks for help.
Dim i As Integer
Private Sub btnstart_Click()
If opthard.Value = True Then
frmhard.Show
frmchoose.Hide
ElseIf opteasy.Value = True Then
Randomize
For i = 0 To 9
frmq(i).Show
frmchoose.Hide
Next
End If
End Sub
Dim i As Integer
Private Sub btnstart_Click()
If opthard.Value = True Then
frmhard.Show
frmchoose.Hide
ElseIf opteasy.Value = True Then
Randomize
For i = 0 To 9
frmq(i).Show
frmchoose.Hide
Next
End If
End Sub