calculates the registration fees for a conference

boss_javi

New member
Joined
Apr 24, 2009
Messages
2
Programming Experience
Beginner
how can i calculate the registration fees for a conference?

the general conference registration fe is $895 per person. There is also an optional open night dinner with a key note address for $30

fee

introducion to E-Commerce $295
The future of the web $295
Advance Visual Basic $395
Network Security $395


can someone help make a calculation code for this ? or explain me please

the application should have to forms...which i ready made...


when the user clicks the select conferece button the form shown which i made should apper<<<i got that part done =)


. the user cannot register for the optional events, however without selectiing a conference registration of $895 ..when the close button is clicked this form should be removed from the screen and the total registration fee should apper on the main form<<<<<<< this one is the one i need to do

i need help on the code man ill for i got done






VB.NET:
Public Class frmMain

    Private Sub btnSelectConference_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelectConference.Click

        Dim anotherForm As New frmOptions   ' Form instance 

        ' Show the other form in modal style.
        anotherForm.ShowDialog()
        ' Display some some numbers in the list box on the mail form.
        ' Because the other form is displayed in modal style, this
        ' Code will not execute until the user closes the other form



        
    End Sub

    Private Sub btnReset_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnReset.Click

        'Reset the Form
        lblTotal.Text = String.Empty
        txtName.Clear()
        txtCompany.Clear()
        txtAddress.Clear()
        txtCity.Clear()
        txtPhone.Clear()
        txtEmail.Clear()
        txtState.Clear()
        txtZip.Clear()

    End Sub

    Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click
        ' End the application 
        Me.Close()
    End Sub

End Class


VB.NET:
Public Class frmOptions

    Private Sub frmOptions_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub btnReset_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnReset.Click

    End Sub

    Private Sub btnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClose.Click

    End Sub
End Class
 
Last edited:
I would love to help but I have no idea what you need help with.

If the fees you have listed are the registration fees then just create a running total and sum up the items that the user has selected...?
 
hello

:confused:
I would love to help but I have no idea what you need help with.

If the fees you have listed are the registration fees then just create a running total and sum up the items that the user has selected...?


yea i think thats what i supposed but i dont know how to write it :( this sucks
 
Back
Top