A Computer Program for Tracking Cancer Development and Movement

Introduction | Desc. & Method | Results | Analysis | Conclusions | Achievements | Recommendations | Acknowledgements
A-Report Figures | B-Screen Shots | C-frmInput | D-GraphicCell | E-frmAbout | F-frmSimulation | G-frmCellCount | H-frmSplash
Abstract | Interim Report | Interim Presentation | Printable Final Report

Appendix H

small logo

frmSplash Code

The Slash Screen



'For an indented version of the code, see the Printable Final Report.

'The Cancer Modeling Project: Tracking Cancer Development and Movement
'Punit Shah and Karalyn Baca
'Team 004
' Albuquerque Academy
'AiS 2004-2005
'Parts of code in this section (frmSplahs) were generated automatically by VB
 
'Code written in Microsoft Visual Basic 6.0, line comment charecter is '
 
'Code for: frmSplash
'Purpose of module: Splash Screen
 
Option Explicit 'Force variable declerations
 
Private Sub Form_KeyPress(KeyAscii As Integer)
Call HideTheForm
End Sub
 
Private Sub Frame_Click()
Call HideTheForm
End Sub
 
Private Sub imgLogo_Click()
Call HideTheForm
End Sub
 
Private Sub tmrHideSplash_Timer()
Call HideTheForm
End Sub
 
Private Sub HideTheForm()
Static HiddenOnce As Boolean
Unload Me
tmrHideSplash.Enabled = False
If HiddenOnce = False Then
frmInput.Show
End If
HiddenOnce = True
End Sub

AiS Challenge | Albuquerque Academy
Site Map | Contact Us
Web search by
Valid HTML 4.01!

Project © 2005 Punit Shah and Karalyn Baca | Site Design © 2005 Punit Shah