VERSION 5.00
Begin VB.Form frmPrime 
   Caption         =   "Primenumbers to 1 million - Loading..."
   ClientHeight    =   7785
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   7800
   Icon            =   "frmPrime.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   7785
   ScaleWidth      =   7800
   StartUpPosition =   3  'Windows Default
   Begin VB.ListBox List1 
      Columns         =   10
      Height          =   7470
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   7575
   End
End
Attribute VB_Name = "frmPrime"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
    DoEvents
    nu = Timer
    For a = 2 To 1000000
        For b = 2 To Int(Sqr(a))
            c = a / b
            If c = Int(c) Then GoTo NoHit
        Next
        List1.AddItem a
NoHit:
    Next
    Me.Caption = "Done! in " & Timer - nu & " seconds"
End Sub
