VB - Calculation - Multiply The Quantity Of An Item By The Price

Mar 12, 2012

I am struggling to write the code for a calculation. The calculation I wish to do is to multiply the quantity of an item by the price. The problem is that the "form" i am creating uses a letter (i.e A, B, C etc) which corresponds to a set value. I do not know how to link the Letter to the corresponding value.

For Example, A= 25, B= 20, C=25

I want to calculate the total of 6 lots of A. I am also using a Combo Box to list the Letters.

View 2 Replies


ADVERTISEMENT

Reciept Printing - Form Which Consist - Item Code , Item Name , Item Price , Quantity Of Item

May 25, 2012

Regarding my college project. i'm working on a sales system . i have a form which consist of all the following information( item code , item name , item price , quantity of item ) which is display using a data grid . data input by user using text box and all this information will be stored in a database(sales database) i'm using ms access 2007. the grand total will be displayed in a text box . and amount paid will be input in a text box too , my major problem now is how to i create a reciept that will have all this information of the purcase. i have a reciept button . what the next step ? i dont have any idea how to get the reciept done.

Imports System.Data.OleDb

Public Class Form5
Dim con As New OleDbConnection

[CODE].......................

View 9 Replies

Class -program Where Enter The Description, Price, And Quantity Of An Item, Then Click On The Add Button

Aug 13, 2009

I have to create a program where you enter the description, price, and quantity of an item, then click on the Add button. It will then put the description, price, quantity, and total for that line (including tax) in a listbox. The tax is determined by what you put in a text box labeled tax:. When you press Submit Order, it should show a grand total in a text box called Grand Total. It should have a class that is called Items that has a function called GetTotalAmount() that figures out the total including tax. I have started it, but am having a tough time with how to get the subtotals into the text box, then also show the amount including the tax PLUS then do the grand total.

Heres what I have so far:

CODE:

View 3 Replies

Calculations Using Quantity And Price - Not Getting Right Value

Jun 3, 2011

I got a program I am working on. It does some calculations using quantity and price in such. Heres the calculation module.
Private Sub calculations()
If AdultsizeRadioButton1.Checked = True Then
adulttotaldecimal = quantityinteger * adultpricedecimal * hoursinteger
ElseIf ChildsizeRadioButton2.Checked = True Then
childtotaldecimal = quantityinteger * childpricedecimal * hoursinteger
[Code] .....

Ok, everything has worked when I display the information.... up until the accumprofitdecimal variable. When i display that value its NOT what it should be. For instance i'm putting in a quanity of 1 and an hour of 1 for an adult then for a child, the extended price comes out properly as $2.15 now the code accumprofitdecimal += extendedpricedecimal SHOULD add the extended price (2.15) to the accumulative total. but when i display the accum profit total it shows a number that makes zero sense... is accumprofitdecimal += extendedpricedecimal not correct code?

View 3 Replies

VS 2008 Calculate Price * Quantity = Cost?

Mar 3, 2010

I certainly hope I don't aggravate you with what is certainly a very simple code problem. I have never programmed before, but I do have a background in tech support, etc. I have an assignment to do and it's frustrating to wade through the information out there to find exactly what I need and nothing more.The assignment has 3 parts, one of which i've done. We are to do the same function in both javascript and VB. I was able to take a sample we did in class that caluclates a 10% discount and modify it so it calculates the total. Now, I have to modify that into a VB sln file. then write about the differences but that part will be cake.

I am working in Visual Studio 2008 - that program is new to me as well. When I created my login and it asked what VB I'm using, I did not know but under theu of VS, it says VB 2008.hat I attempted to do was to take the instructor's sample discount code and modify it for the new purpose, but an error was generated. This is the sample code I started with:

'Programmer: Dan Dougherty
'Date: Feb 2010
'

[code].....

View 14 Replies

Combine And Add The Quantity,Price,Total Of Same Index In Listview?

Oct 9, 2011

Combine and Add the Quantity of same index in listview here's my Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If NumericUpDown1.Text = "" Then
MessageBox.Show("Please Input the Quantity!", "Sale", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
NumericUpDown1.Text = 1
End If

[Code]...

View 7 Replies

When Select Fruit Form The Combo Box It Will Search The Price But Can't Seem To Multiply It

Jun 13, 2011

My problem is, the data that I pull from the database, when try to multiply it, it didn't multiply.

The database has Fruit and FruitPrice column. When select fruit form the combo box, it will search the price. But I can't seem to multiply it. The price is display at PriceTextBox but when multiply it, it shows 0 in the TotalTextBox. It is a simple problem but I've tried everything I know but it still didn't multiply.

This is my search coding:

CODE:

View 3 Replies

ByRef & ByVal Code - Program To Execute Properly - Can't Get Them To Add Up And Display The Quantity And Price

Apr 7, 2010

I started this tutorial on sub procedures and am having trouble trying to get this program to execute properly. The problem lies with the total. I am trying to figure out the math part of it. When I hit F5 I can see this

Item Quantity Price.

Pizza Slices
Fries
Soft Drinks

Total

But I can't get them to add up and display the quantity and price. I tried the ByVal and ByRef code but am not sure if I did it right

Here is the code that I have so far:

Public Class Form1

Private Sub btnCompute_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCompute.Click

Dim pizza, fries, drinks, total As Double

[CODE]...

View 6 Replies

VS 2008 : Calculation Goes To The Last Entry As Stated The Multiply This Total By Number Of Days(dbl)?

May 3, 2011

I have an application that has 3 list boxes, one selects a workshop, the other a location. the third is to display selected costs.to do the calculation a loop is required. i have written the code but when i calculate the cost the final result to be displayed ends up as being the cost of the last work shop and location * 3,What is supposed to happen is the location is multiplied by the number of days(3 in this case) and added to the workshop cost.the loop is supposed to add all cost from the list box till all have been added.what is happening is the calculation goes to the last entry as stated the multiplys this total by number of days(dbl)?

View 1 Replies

Forms :: Use A If Statement To See If Fosters Button And Number 1 On The Number Pad Are Both Pressed Then Multiply Constant By Quantity Number?

Mar 4, 2011

I am doing a bar cash register and I want to use a if statement to see if fosters button and number 1 on the number pad are both pressed then multiply constant by quantity number

View 1 Replies

Select An Item From A List Box And Click A Button And Have That Item Go Into Another Listbox With It's Price

Oct 13, 2011

How someone would select an item from a list box and click a button and have that item go into another listbox with it's price? I seem to be stuck on this part.

Here's my code:

I want to select the first option from the first listbox and I want to put it into another listbox along with the price of that item on the same line in the listbox. I can't seem to figure out how to that.

Public Class Form1
Const dcmPRICE_STRESS As Decimal = CDec(595.0)
Const dcmPRICE_TIME_MANAGMENT As Decimal = 695

[CODE]...

View 12 Replies

Calculate The Quantity Of Each Item Sold?

Apr 16, 2011

how to calculate the quantity of each item sold?

View 9 Replies

Update Item Quantity In List(Of T)

Jul 6, 2010

I'm working on a project for a client (he wanted it in VB.NET so I dont have a choice) and have hit a wall. I have a Product class, and a List(Of Product) that I'm using to store products in while a new order is being built. The problem I'm running into is updating the Quantity value of a product if it's found in the list (instead of adding the product again).

[Code]...

View 12 Replies

Translating Decompiled Code - Function That Accepts An Item Name Its Cost And Its Quantity

May 6, 2011

I was wondering if someone could translate this code into a more understandable code. It is suppose to be a function that accepts an item name its cost and its quantity. and adds one more array element to ."items" variable and assigns the given name and cost and quantity.

Public Sub AddItem(ByVal strName As String, ByVal dblCost As Double, ByVal intQuantity As Integer)
Me.items=DirectCast(Utils.CopyArray(DirectCast(Me.items,Array),New Purchase(me.itemsCount + 1)-1){}),Purchase())

End Sub

This is the translation i made but i don't think it is correct.

Public Sub AddItem(ByVal strName As String, ByVal dblPrice As Double, ByVal intQuan As Integer)
Dim items As Purchase() = Me.items
Dim itemCount As Integer = Me.itemsCount
For itemCount = 0 To items.Length - 1

[CODE]...

View 3 Replies

How To Store Item Name And Price In Procedure

Aug 6, 2010

I'm reading "Programming with Microsoft Visual Basic 2008". At the end of each chapter there is excersize that I don't have the answers sheet for. Anyway, the first one is:
A procedure needs to store an item's name and price (which may have decimal places). Write the appropriate Dim statements to declare the necessary procedure-level variables.
What I have so far is:
Dim "Candy" as String

View 7 Replies

VB - Make The Price Corresponding With The Item Appear In The Label

Nov 12, 2010

I am writing a program that uses an array of structures to display a price in a label based on what item is selected in a list box(the data is stored in a text file). I am having trouble figuring out how to make the price corresponding with the item appear in the label. Currently, it just keeps showing the last price in the text file.

CODE:

View 12 Replies

Database-table That Contains Two Columns / Items And Price Of Each Item

Jun 5, 2011

I am currently using microsoft access 2007 and vb.net 2008. The problem senario is this: I have a database-table that contains two columns, items, and the price of each item. I tried to drag this table to the form as a checkbox tool, but only one checkbox1 was diplayed. The table consists of four rows. My requirement is when I drag the checkbox I want to see the all items in the first column, i.e. four checkboxes that hold the same name as in the table in the database, and when I check one or more items to be able to use, in somehow, the price(s) to make some kind of calculations.

View 1 Replies

VS 2008 HttpWebRequest Add Item To Cart Then "post" To Change Quantity

Feb 10, 2012

i have problem on use HttpWebRequest with "POST" method.First, I access this link [URL] and go to the cart page.Then when I change the quantity to 2, I had see the live http header to use "POST" and submit the content to the server.I follow the header and write with vb2008, but I get the server return 503 error on the code that getting response,?

Here is my

Dim logincookie As CookieContainer
Dim response As HttpWebResponse
Dim tempCookies As New Cookie
Dim req As HttpWebRequest

[code]....

View 4 Replies

User Selects From Multiple Listboxes To Get A Price From A Price Array

Nov 25, 2011

I am new to vb and I am having so much trouble with this. What I need to do is this: I have a form application for winter sports equipment rental.I have a listbox filled with the equipment for the user to choose from then I have a combobox for the user to select the duration they would like to rent it. The book that I am using has no examples I can refrence and i have had no luck online either. I am posting what I have so far. However, i think I am going in the wrong direction. I have been working on this for so long that I think I have over thought it and made a mess of it. I am thinking that I need to add a new class for rentalRates then use enum of durationType and equipmentType but I am unsure how to move that way. That is using a enum, a 2d array and a parallel array? [code]

View 1 Replies

Get The Price Of The Premium Or Regular In Price Per Unite?

Jan 24, 2012

PHP

Public Class GasPump
Private name As String
Private quan As Double

[Code].....

I get problem in the code when you going to pick y/n. how i going to get the price of the premium or Regular in Price per unite?

View 7 Replies

Forms :: Looping Through Listbox Making Calculation To Every Item - Won't Update New Result

Apr 6, 2009

i have 2 list boxes.. Qty and Cost both of these are populated from a sql database. The code is suppose to read through the listboxes and multiple the Cost by the Qty and then replace the Cost with the new result. The Cost listbox is populated with the cost of one item. The reason i am not doing this calculation in the sql query is because the sql query is very complicated filter out a bunch of stuff to show just the qty of the item...

[Code]...

View 1 Replies

VB 2010 Validation - Form As Follows "Price Changer" - User Is Allowed To Select A Product And Enter Price

Apr 17, 2012

I have a form as follows "Price changer" The user is allowed to select a product and enter price . So when the change price button is clicked...the price is stored in a array which is later called

So what i am stuck is when the user selects a product from the drop down menu...the user can enter price . But i need to display a error message when the user enters text instead of numbers for prices. I tried try parse method but it displayed the error message but did not transfer the entered price to the array.

My code is as follows

The bolded intMediaprice() are arrays....

Private Sub btnPrice_Click(sender As System.Object, e As System.EventArgs) Handles btnPrice.Click
If cbMedia.Text = "8-Track" Then

[CODE]...

View 3 Replies

Enter The Price In A Text Box And Click The Enter Button To Send The Price To A List?

Nov 15, 2011

I have to create a form that I enter the price of gas each month over a year. I enter the price in a text box and click the enter button to send the price to a list box immediatley and use an array. I have the following code but I don't think it's working with the array correctly as it will let me enter the information but doesn't stop letting me enter after the 12 prices. I am really having a hard time trying to figure out how to set up this input for an array and make it all work.

[Code]...

View 1 Replies

VS 2005 Store A Calculation To Use Later And Obtain A New Calculation

Dec 19, 2009

I need to store a calculation to use later and obtain a new calculation

[Code]...

View 4 Replies

Formload Check Listview For Quantity?

Jun 7, 2011

I have a project which is 98% complete. Its basically a Shop(till) interface. I have a form that has tabs the first being the main till, second shows a listview with everything in stock and the quantity of items in stock. Im stuck on one part of the program where when the form loads it checks the stock and if any of the items have a quantity less than 5 for example than it displays a message box to the user telling him/her to order new stock, but im not sure exactly how to do that.

View 5 Replies

Rounding Up Quantity And Packing Variables

Aug 2, 2010

I am trying to round-up in VBscript but am hitting blanks...
My script so far is...
Value = Quantity / Packing
Value = Int(value + 0.8)
Quantity and Packing are variables and always needs to round up.

View 1 Replies

Cannot Calculate The Total When Quantity Variable Inserted?

Nov 8, 2011

When I enter the quantity variable the script will not calculate. What am I missing ?

Public Class frmMovie
Private Property intQuantity As Integer
Private Sub txtName_TextChanged(ByVal sender As System.Object, ByVal e As [codee]....

View 1 Replies

Change Of Font Color When Quantity Decrease?

Jan 5, 2010

I'm trying to change the font colour of a field in datalist when the quantity falls below 10...

[code]...

View 7 Replies

Varying Quantity And Moving Data From One Table To Another

Nov 21, 2011

Currently I have two tables in a Database (Temp, Main), currently I have four fields in Temp(ID, Qty, LastDate, AddRem), and Three in Main, (ID, Qty, LastDate). I have the program set up to enter in all the information minus AddRem into Temp, then my thought was to either tag the item to remove, or add to the Main table. I'm assuming this could be done by import then update, however every avenue I've attempted has been meet with Exception errors.For the add/remove field it is linked to a Combo Box, which brings me to my other question, how would you link a specific field to say hey if it's this option then add, and if's the other remove?

View 11 Replies

How To Multiply Or Add Two Values

Sep 10, 2010

I am a student in South Africa. We have had a long strike in our education department. Thus resulting in our lecturer not teaching code adequately. I have managed to stumble using the text given but I cannot figure out how to multiply or add two values?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved