Trev
stix
you should put your games n stuff in the resources section!
Fosweb's is much better than the one i madeTrev said:well......put the pong game up
God help you if you ever made it to uni, you dropkick.Vangineer said:If u understand it, just put comments all over to explain to ur teacher that u wrote it, even if u didnt, lol.
What, like this?cortex said:I suggest a standalone content management system for multiple websites, coded in java ofcourse
I created/creating a mortgage calculator though i recommend no one tries to do it, wasted too much time coding....this is part of the error checking module that used boolean variable to set off an 'alarm' that triggered this module sending the user a message and when they clicked OK the if then statements would return the user to where the error originated and turn off the 'alarm'Code said:Private Sub cmdOK_Click()
If blnAccountnumber_err = True Then
frmLoanSetupp1.txtAccountNumber.Text = "" 'cancel and clear alarm
frmLoanSetupp1.txtAccountNumber.SetFocus 'set focus on trouble area
frmMSGBOXerr_OK.Hide
blnAccountnumber_err = False 'turn off the error alarm
ElseIf blnAmountBorrowed_err = True Then
frmLoanSetupp1.txtAmountBorrowed.Text = "" 'cancel and clear alarm
frmLoanSetupp1.txtAmountBorrowed.SetFocus 'set focus on trouble area
frmMSGBOXerr_OK.Hide
blnAmountBorrowed_err = False 'turn off the error alarm
ElseIf blnSETTLEMENTDATE_err = True Then
strSETTLEMENTDATE = "" 'cancel and clear alarm
frmLoanSetupp1.Show 'set focus on trouble area
frmMV.Show
frmMSGBOXerr_OK.Hide
blnSETTLEMENTDATE_err = False 'turn off the error alarm
ElseIf blnLOANTERM_err = True Then
frmLoanSetupp1.txtLoanTerm.Text = "" 'cancel and clear alarm
frmLoanSetupp1.txtLoanTerm.SetFocus 'set focus on trouble area
frmMSGBOXerr_OK.Hide
blnLOANTERM_err = False 'turn off the error alarm
ElseIf blnLOANSETUPP1DETAILS_err = True Then
frmLoanSetupp1.Show 'show form Loan Setup 1
frmMSGBOXerr_OK.Hide 'hide MSGBOXerr_OK
blnLOANSETUPP1DETAILS_err = False 'turn off alarm
ElseIf blnfrmLoanSetupp4_Clarify = True Then
frmLoanSetupp4.Show 'show form Loan Setup page 4
frmLoanSetupp4.Enabled = True 'enable the loab setup page 4
frmMSGBOXerr_OK.Hide 'hide MSGBOXerr_OK
blnfrmLoanSetupp4_Clarify = False 'turnoff form
msgpcbox.Visible = True 'show the eror image box
lbltop.Caption = "Error" 'reset the MainForm heading to Error
ElseIf blnLoanNameTaken_err = True Then
frmLoanSetupp1.txtLoanTerm.Text = "" 'cancel and clear alarm
frmLoanSetupp1.txtLoanTerm.SetFocus 'set focus on trouble area
frmMSGBOXerr_OK.Hide 'hide Form MSGBOXerr_OK
frmMSGBOXerr_OK.Height = "1455" 'set the height of the Form MSGBOXerr_OK
loanNameexist_err = False
ElseIf blnFILENAME_ERR = True Then
frmMSGBOXerr_OK.Hide '.'hide the Form MSGBOX_err
frmLoadloan.Show 'Show Form Loan Loader
blnFILENAME_ERR = False ''hide alarm
ElseIf LoanSetuptermadd_err = True Then
frmMSGBOXerr_OK.Hide 'hide the FORM MSGBOX_err
frmLoanSetupp2.Show 'show form Loan setup page 2
LoanSetuptermadd_err = False 'turn off alarm
frmMSGBOXerr_OK.Height = 1455 'set height of the Form: MSGBOXerr_OK
ElseIf LoanSetupFreq_err = True Then
frmMSGBOXerr_OK.Hide 'Hide the Form MSGBOXerr_OK
frmLoanSetupp3.Show 'show Loan Setup
LoanSetupFreq_err = False 'turn off the 'alarm'
ElseIf blnNoexcel_err = True Then
frmMSGBOXerr_OK.Hide
UNLOADMYLOANS
End If
If you had a thousand monkeys, on a thousand typewriters...fullmetaljacket said:heh, imagine figuring out and adding all the binary for your major project to the documentation, now that would show real commitment, is it possible to even do??
Well it look's like we are in business....drewgcn said:If you had a thousand monkeys, on a thousand typewriters...