Just Tees sells organic cotton tee shirts for both men and women. The tees come in three sizes: S, M, and L. The women’s tees are $17.75 each. The men’s tees in size S are also $17.75; however, the...

3 answer below »
Due the 17th of January at 10 am


Just Tees sells organic cotton tee shirts for both men and women. The tees come in three sizes: S, M, and L. The women’s tees are $17.75 each. The men’s tees in size S are also $17.75; however, the men’s tees in sizes M and L are $19.75. Each tee can be customized with a picture and/or a name. The additional charge for including a picture on a woman’s tee is $5. The additional charge for including a picture on a man’s tee in sizes S or M is also $5; however, the additional charge for a man’s tee in size L is $6. The additional charge for including a name on a tee is $7.50. The application should allow the user to enter more than one of the same tee. Create an application that displays the total price of the tee(s), including a 2% sales tax. Use the following names for the solution and project, respectively: Just Tees Solution and Just Tees Project. Save the solution in the VbReloaded2015\Chap05 folder. Change the form file’s name to Main Form.vb. (1–10).
Answered Same DayJan 14, 2021

Answer To: Just Tees sells organic cotton tee shirts for both men and women. The tees come in three sizes: S,...

Robert answered on Jan 25 2021
138 Votes
JustTees/App.config




JustTees/bin/Debug/JustTees.exe
JustTees/bin/Debug/JustTees.exe.config




JustTees/bin/Debug/JustTees.pdb
JustTees/bin/Debug/JustTees.vshost.exe
JustTees/bin/Debug/JustTees.vshost.exe.config




JustTees/bin/Debug/JustTees.xml



JustTees



A strongly-typed resource class, for looking up localized strings, etc.


Returns the cached ResourceManager instance used by this class.


Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
JustTees/Form1.Designer.vb
_
Partial Class Form1
Inherits System.Windows.For
ms.Form
'Form overrides dispose to clean up the component list.
_
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
_
Private Sub InitializeComponent()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.rbWomen = New System.Windows.Forms.RadioButton()
Me.rbMen = New System.Windows.Forms.RadioButton()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.rbLarge = New System.Windows.Forms.RadioButton()
Me.rbMedium = New System.Windows.Forms.RadioButton()
Me.rbSmall = New System.Windows.Forms.RadioButton()
Me.cbPicture = New System.Windows.Forms.CheckBox()
Me.cbName = New System.Windows.Forms.CheckBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.lblTotalPrice = New System.Windows.Forms.Label()
Me.txtNoOrdered = New System.Windows.Forms.TextBox()
Me.btnCalculate = New System.Windows.Forms.Button()
Me.btnExit = New System.Windows.Forms.Button()
Me.GroupBox1.SuspendLayout
Me.GroupBox2.SuspendLayout
Me.SuspendLayout
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.rbWomen)
Me.GroupBox1.Controls.Add(Me.rbMen)
Me.GroupBox1.Location = New System.Drawing.Point(22, 20)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(89, 94)
Me.GroupBox1.TabIndex = 0
Me.GroupBox1.TabStop = false
'
'rbWomen
'
Me.rbWomen.AutoSize = true
Me.rbWomen.Location = New System.Drawing.Point(20, 42)
Me.rbWomen.Name = "rbWomen"
Me.rbWomen.Size = New System.Drawing.Size(62, 17)
Me.rbWomen.TabIndex = 1
Me.rbWomen.Text = "&Women"
Me.rbWomen.UseVisualStyleBackColor = true
'
'rbMen
'
Me.rbMen.AutoSize = true
Me.rbMen.Checked = true
Me.rbMen.Location = New System.Drawing.Point(20, 19)
Me.rbMen.Name = "rbMen"
Me.rbMen.Size = New System.Drawing.Size(46, 17)
Me.rbMen.TabIndex = 0
Me.rbMen.TabStop = true
Me.rbMen.Text = "&Men"
Me.rbMen.UseVisualStyleBackColor = true
'
'GroupBox2
'
Me.GroupBox2.Controls.Add(Me.rbLarge)
Me.GroupBox2.Controls.Add(Me.rbMedium)
Me.GroupBox2.Controls.Add(Me.rbSmall)
Me.GroupBox2.Location = New System.Drawing.Point(131, 20)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(89, 94)
Me.GroupBox2.TabIndex = 1
Me.GroupBox2.TabStop = false
Me.GroupBox2.Text = "Size"
'
'rbLarge
'
Me.rbLarge.AutoSize = true
Me.rbLarge.Location = New System.Drawing.Point(20, 65)
Me.rbLarge.Name = "rbLarge"
Me.rbLarge.Size = New System.Drawing.Size(31, 17)
Me.rbLarge.TabIndex = 2
Me.rbLarge.Text = "&L"
Me.rbLarge.UseVisualStyleBackColor = true
'
'rbMedium
'
Me.rbMedium.AutoSize = true
Me.rbMedium.Location = New System.Drawing.Point(20, 42)
Me.rbMedium.Name = "rbMedium"
Me.rbMedium.Size = New System.Drawing.Size(34, 17)
Me.rbMedium.TabIndex = 1
Me.rbMedium.Text = "&M"
Me.rbMedium.UseVisualStyleBackColor = true
'
'rbSmall
'
Me.rbSmall.AutoSize = true
Me.rbSmall.Checked = true
Me.rbSmall.Location = New System.Drawing.Point(20, 19)
Me.rbSmall.Name = "rbSmall"
Me.rbSmall.Size = New System.Drawing.Size(32, 17)
Me.rbSmall.TabIndex = 0
Me.rbSmall.TabStop = true
Me.rbSmall.Text = "&S"
Me.rbSmall.UseVisualStyleBackColor = true
'
'cbPicture
'
Me.cbPicture.AutoSize = true
Me.cbPicture.Location = New System.Drawing.Point(231, 39)
Me.cbPicture.Name = "cbPicture"
Me.cbPicture.Size = New System.Drawing.Size(59, 17)
Me.cbPicture.TabIndex = 2
Me.cbPicture.Text = "Picture"
Me.cbPicture.UseVisualStyleBackColor = true
'
'cbName
'
Me.cbName.AutoSize = true
Me.cbName.Location = New System.Drawing.Point(231, 86)
Me.cbName.Name = "cbName"
Me.cbName.Size = New System.Drawing.Size(54, 17)
Me.cbName.TabIndex = 3
Me.cbName.Text = "Name"
Me.cbName.UseVisualStyleBackColor = true
'
'Label1
'
Me.Label1.AutoSize = true
Me.Label1.Location = New System.Drawing.Point(46, 172)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(58, 13)
Me.Label1.TabIndex = 4
Me.Label1.Text = "Total Price"
'
'Label2
'
Me.Label2.AutoSize = true
Me.Label2.Location = New System.Drawing.Point(19, 135)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(85, 13)
Me.Label2.TabIndex = 5
Me.Label2.Text = "Number Ordered"
'
'lblTotalPrice
'
Me.lblTotalPrice.AutoSize = true
Me.lblTotalPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
Me.lblTotalPrice.Location = New System.Drawing.Point(141, 172)
Me.lblTotalPrice.Name = "lblTotalPrice"
Me.lblTotalPrice.Size = New System.Drawing.Size(2, 15)
Me.lblTotalPrice.TabIndex = 6
'
'txtNoOrdered
'
Me.txtNoOrdered.Location = New System.Drawing.Point(143, 140)
Me.txtNoOrdered.Name = "txtNoOrdered"
Me.txtNoOrdered.Size = New System.Drawing.Size(100, 20)
Me.txtNoOrdered.TabIndex = 7
'
'btnCalculate
'
Me.btnCalculate.Location = New System.Drawing.Point(272, 137)
Me.btnCalculate.Name = "btnCalculate"
Me.btnCalculate.Size = New System.Drawing.Size(75, 23)
Me.btnCalculate.TabIndex = 8
Me.btnCalculate.Text = "Calculate"
Me.btnCalculate.UseVisualStyleBackColor = true
'
'btnExit
'
Me.btnExit.Location = New System.Drawing.Point(272, 172)
Me.btnExit.Name = "btnExit"
Me.btnExit.Size = New System.Drawing.Size(75, 23)
Me.btnExit.TabIndex = 9
Me.btnExit.Text = "Exit"
...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here