L
littledump
Guest
I think youll be able to see whats wrong
Code:
Module JepCode
Public JepSplash As New VRSplash()
Public MainJepForm As New VR_Jeopardy_()
Public CatColl, QColl As New Collection()
Public i, j, k, CUsed(4), QUsed(5), randomnum As Integer
Public JepQs(4, 5) As Questions
Public JepCs(4) As Categories
Public ItEquals As Boolean
Public JepMedPen As New System.Drawing.Pen(System.Drawing.Color.Yellow, 7)
Public JepThinPen As New System.Drawing.Pen(System.Drawing.Color.Yellow, 1)
Public Structure Categories
<VBFixedString(100)> Dim Category As String
<VBFixedString(100)> Dim CatFile As String
End Structure
Public Structure Questions
<VBFixedString(500)> Dim Question As String
<VBFixedString(500)> Dim Answer As String
End Structure
Public Sub Main()
JepSplash.ShowDialog()
End Sub
Public Sub HMDel(ByVal length As Double)
Dim start As Double
start = Timer()
Do
System.Windows.Forms.Application.DoEvents()
Loop Until Timer() > (start + length)
End Sub
End Module