Calculating Commission In VB?
Apr 1, 2011
I'm really new to VB. This is only the 3 app I've created, and I'm stuck.I need to code an app that displays total commission earned on sales at different levels. The commission percentage goes up as sales go up.
Should I write a If/else/else/else/else/then statement or something else?There are 5 different commission levels in the problem. I have my interface designed, but obviously that's the easy part.
View 1 Replies
ADVERTISEMENT
Feb 23, 2010
My assignment is to compute commission for a stockbroker within the following parameters: Commission for stock =< $50.00 = 0.19 base per share; for stock >$50.00 = 0.26 base per share If number of shares is =< 150 then commission rate is 1.5 * base per share. [code] Did I mention that I am an extremely new user to VB?
View 2 Replies
Jan 29, 2010
I am designing and coding a program to calculate commission and pay and I have chosen to use menu items to do the calculations. I have written most of the code but I am seeing a few syntax errors that I do not understand.here is the code...
[Code]...
View 5 Replies
Nov 30, 2009
Im trying to figure out how to get the output on this code. I have the txtcommission.txt but is not giving me an output in the commission textbox.
Private Sub btnCal_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCal.Click
Dim intSales As Integer
Select Case intSales
Case 1 - 100000.99
[code].....
View 12 Replies
Mar 10, 2012
I am trying to figure out how to properly code to create a Commission Calculator. Is anyone able to provide assistance? I will provide the code here:
[Code]....
View 7 Replies
Oct 21, 2009
I wrote this code and everything works as planned:
Module SalesCommissionProgram
Sub Main()
Dim name As String = 0
Dim code As String = 0
Dim monthlySales, commissionDollars As Double
' Prompt user to input value for name
[Code] .....
For the finished project I am supposed to have it output the total sales and commissions for that were calculated before the sentinel value (Eugene) was entered. Here is what I tried and here is where I am lost.
Module SalesCommissionProgram
Sub Main()
Dim name As String = 0
Dim code As String = 0
Dim monthlySales, commissionDollars As Double
[Code] .....
View 10 Replies
Mar 31, 2009
When I run this application the 2% menu item works fine but the 5% does not. It does nothing at all. I'm stuck.
[Code]...
View 2 Replies
May 6, 2009
I need to write a program that uses constants to establish the base pay, the quota, and the commission rate. The Pay menu item calculates and displays the commission and the total pay for that person. However, if there is no commission, do not display the commission amount (do not display a zero-commission amount).
Write a function procedure to calculate the commission. The function must compare sales to the quota. when the sales are equal to or greater than the quota, calculate the commission by multiplying sales by the commission rate. Format the dollar amounts to two decimal places; do not display a dollar sign.
The summary menu item displays a message box that holds total sales, total commission, and total pay for all salesperson. Display the number with two decimal places and dollar signs.
the Clear menu item clears the name, sales, and pay for the current employee and then resets the focus.
The Color and Font menu items should change the color and font of the information displayed in the total pay text box. Use a message box to display the program name and your name as programmer for the about option on the Help menu.
[code...]
So the issue is when I push calculate and summary, the total sales comes up, but not the total commission or total pay. Also, the color only changes to blue and that is it. I am not sure how to get the color or the font menu choices to be able to be choosen by the user. Is that possibile?
[code...]
View 1 Replies
Apr 1, 2011
So I'm trying to program a selection structure to display different commission rates per sales entered in a textbox.I need to have the commission total display alone. I have the simple interface done, but I'm having trouble forming the selection structure.
View 1 Replies
Jan 7, 2009
I am trying to figure out how bitmasks are calculated in vb... I have the following constants and their bit values:
[Code]...
View 4 Replies
Jan 27, 2011
I understand the basics of using VB.NET, what I don't understand is what I need to tell the computer to do. I'm supposed to create a subprogram to calculate the greatest common factor and another subprogram to reduce the fraction from the answers retrieved from the first subprogram. My teacher said something about using Mod to calculate it, and also attempted and failed to explain ByVal and ByRef parameters. I don't even know where to begin other than the parameters I have for each, and even those have a high chance of being completely wrong.[code]
View 1 Replies
Jul 27, 2009
I,ve completed a program for a debt solution agency that calculates the amount a client can afford to repay after all his deductions and general life costs, my proplam however is at the end when i have to display all the creditors on a proposal data grid that shows the amount and total months to repay all creditors and calculates the amounts as one of the creditors debt is paid up and that monthly installment is devided between the remaining creditors.
View 1 Replies
May 5, 2009
i have the code below and i want to calculate the next working day adding five days from today and it must not add weekends as a working day. this code currently adds weekends as well and i need it tofclaculate excluding weekends.
[Code]...
View 2 Replies
Aug 31, 2010
I have a project that I'm working on and we are basically creating a calculator to calculate area of a rectangle and area of a circle using one button. How do I code to allow the button to calculate both the area of the rectangle and the
View 16 Replies
Sep 21, 2010
Can someone help me figure out why my calculations do not come out right? I have many notes so it is easy to understand. The assignment is: "Create a windows app for the rental of a vehicle. User selects number of rental days up to 7 days. The user also 'can select one of three types of vehicles. Customer has a choice of filling the gas tank themselves,'or prepaying for a full tank of gas ($52). If vehicle will be driven by more than one driver, a multiple'driver cost of $22 per day will be added to the cost." [code]
View 4 Replies
Dec 12, 2008
The interest is compounded monthly and these are sample inputs and output.
Input:
Monthly Deposit: 300
Annual rate: .05
[code].....
View 3 Replies
Apr 6, 2010
I am trying to use and display calculations from various text fields, however it is appending the values. I think it has to do with it being a String Variable and not a Value.. here is the code
Private Sub btnTransact_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTransact.Click
If rb1Deduct.Checked = True Then txtp1Amt.Text = (txtp1Amt.Text - txtTransact.Text)
[code].....
View 5 Replies
Mar 17, 2011
I have three GPS antennae on a boat. They are in fixed xyz positions relative to each other. For example:
[Code]....
View 2 Replies
Feb 20, 2010
I am working on this program that is suppose to display the patient's bill after they have selected a service at a dental lab. the problem I am having is that if the patient name is empty it gives me a message but it still shows the bill. Also I am having a problem with the code that will calculate the bill if a a patient choose more than one service. Here is my code below
P
ublic Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
[Code].....
View 4 Replies
Apr 24, 2012
I have probably not a unique issue but I can't seem to figure it out. I need to calculate a datagridview column after it a new row has been added to it. I am adding the row to the datasource and the row is added to the datagridview but how can I automate the two thing together by a single button click. IE: add the row (with a value)to the gridview and then calculate. I have this code but is doesn't work.
Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
Dim OwnerID As Integer
[code].....
View 3 Replies
Dec 24, 2011
I just want to calculate age from two datetimepicker tools. The label should display - "XX years XX months xx days old". I have succeeded in calculating with respect to time, but failing w.r.t date.
View 3 Replies
Feb 8, 2009
here is my problem. i have to enter two grades, each grade should be an integer between 0 and 100 inclusive. Calculate the average of the two grades. If the average is greater than or equal to 90, display "Grade is an A!". It goes down the line for "if average is _______, display " ______is a/n __!" I get the last part and I know how to figure an average...but i am not sure how to type it in code. He did an elseif example, but it wasn't with 2 numbers and didn't have to average anything. So I don't know how to write that code....is there anywhere to look to find it? Here is what I have so far.............
Module Module1
Sub Main()
Dim grade, sum, average As Double
[code].....
View 14 Replies
Jun 21, 2010
Using VB.NET write a program that can calculate the grade of a student based on his or her marks in five subjects as input according to the following rules:
Grade A: For average between 100 and 80 (inclusive)
Grade B: For average between 79 and 65 (inclusive)
Grade C: For average between 64 and 40 (inclusive)
[code].....
View 2 Replies
Mar 4, 2012
I have a listbox with two values, Current account and Deposit account.The current account has an interest rate of 7% and the deposit account 3%.I have 4 other textboxes. The boxes on the right is where the user inputs and the left side holds the value.
Account Type [ ] Listbox >>[Current account]
Deposit account
Investment Amount [ ] [ ]
Interest over a year [ ]
What I want for the Investment Amount is that if the user selects Current account, the amount invested will be automatically calculated with the 7% interest and the same for the deposit, calculation with 3% interest.And the Interest over a year textbox to show how much the interest will be over that year at the rate (whether its 7 or 3%)
View 7 Replies
Mar 15, 2012
I'm having some problems calculating the values for two diferent fiels of the datatable. it return " Object reference not set to an instance of an object"this is How I feed the datatable
Dim daProd As New SqlDataAdapter
Dim conProd As New SqlConnection
conProd = Connect()
Dim cmdProd, cmdSave As New SqlCommand
[code]....
View 2 Replies
May 20, 2009
is there a formula for this? for example how many elements would be in this?dim m3array(5,4,1) as integer
View 4 Replies
Oct 17, 2011
Basically I have 4 empty textboxes. I need to calculate the total and averages of the numbers entered in them. So far, I've declared 4 variables and made it equal to the text that was input by the user. I'm stuck with the calculations tough. The user doesn't have to use all 4 boxes. So if he/she only entered 2 numbers, the total is divided by 2, not by 4 for the average. I think I'm supposed to use a for... next loop because the maximum iterations I should do is 4, but I'm not sure how to the code even if it is supposed to use a for loop. Otherwise, the rest of my project seems to work fine.
View 5 Replies
Mar 26, 2009
if i have two variables,
Dim Hours
Dim Minutes
what i want to do is add the minutes to hours, so if Hours =2, and minutes = 120 I want to say hours = hours+2, not so simple as it seems or am i missing something?
Dim hours
Dim mins
IF mins > 60
[code]....
View 2 Replies
Apr 11, 2012
how can i calculate the 13 points on the polygon (see image)?
the 2 points either side of the centre points
are +/- width or height * 0.2761423749154
i have 4 known points, topLeft, topRight, bottomRight, + bottomLeft.
the polygon won't always be a regular rectangle as it is in the image
View 11 Replies
Mar 3, 2010
How can I accurately measure the size of a portion of text within a label? For example, I'm trying to remove the first character from a fixed-sized label and find out the exact width of just the character I removed. I've tried the MeasureString method but it's not very accurate.
View 9 Replies