Public Class Form1
Private Sub exitButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles exitButton.Click
Me.Close()
End Sub
Private Sub displayButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles displayButton.Click
'Display correct shipping amount
Dim zipcodeInt As Integer
Dim shippingInt As Integer
End Sub
Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles fifteenListBox.SelectedIndexChanged
fifteenListBox.Items.Add("60611")
fifteenListBox.Items.Add("60234")
fifteenListBox.Items.Add("56789")
fifteenListBox.Items.Add("23467")
fifteenListBox.Items.Add("60543")
fifteenListBox.Items.Add("60561")
fifteenListBox.Items.Add("55905")
fifteenListBox.Items.Add("89567")
End Sub
Private Sub twentyListBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles twentyListBox.SelectedIndexChanged
twentyListBox.Items.Add("50978")
twentyListBox.Items.Add("78432")
twentyListBox.Items.Add("98432")
twentyListBox.Items.Add("97654")
twentyListBox.Items.Add("20245")
End Sub
End Class
Could someone please help me what I need to add to do my display shipping button to display $15 or $20 in the text box for specific zip codes?
This post has been edited by Atli: 18 June 2012 - 03:38 AM
Reason for edit:: Added [code]...[/code] tags.

New Topic/Question
Reply



MultiQuote




|