Hi, wondering if anyone could help me with this.
I need to create a program that contains a listbox (lstChart), calculate and exit button.
When the user clicks the calculate button it needs to display 5 separate input boxes asking for the total sales for each of the 5 stores.
On top of that, whatever number the user enters needs to be divided by 100 and converted to an asterisk representing 100 dollars each.
Here's what I have so far, and I'm very new to programming. Any help is greatly appreciated!
Dim intCount As Integer = 1
Dim intStore As Integer
Dim strStars As String
Dim intDividedBy As Integer
intDividedBy = intStore / 100
strStars = CInt(intDividedBy)
Do
intStore = CInt(InputBox("Enter the sales for store number " & intCount.ToString()))
intCount = intCount + 1
lstChart.Items.Insert(0, "Store 1:" & strStars.ToString)
strStars = intDividedBy.ToString("*")
Loop While intCount <= 5
By I know this code is very , VERY sloppy and some of it probably doesn't even make sense. I'm very new to this I don't fully understand a lot about VB.