Can Not Get Monthly To Calculate Right
Mar 24, 2011
Well I am working on this homework for my class and everything is ok but i can not get the monthly to calculate right. Cause when I taype in allen with the code of 1 the monthly should be 500 and the commission should be 1005. I have been working on this for days.[code]
View 5 Replies
ADVERTISEMENT
Mar 29, 2011
We need to calculate salary based on monthly gross. Here we are having problem with ESI salary header Consider monthly gross is 12000 and headers are
BASIC = (Monthly Gross) * 40%
HRA = (BASIC) * 40%
Conv. = 800
PF = Basic * 12%
[code]....
In Excel using Goal Seek, we can get the solution for this.Is there any way to get in VB.NET?
View 1 Replies
Mar 27, 2011
My code works correctly if I do not have the DO WHILE statement, however we are suppose to have it loop. Which it will continue to ask for the salesman's name, code, etc. but when the user enters the name "eugene" the program is suppose to calculate and output the total monthly sales and the total commission dollars. What is happening is that when a user enters "eugene" the program is not recognizing it to do what it is suppose to do(calculate and output the total monthly sales and the total commission dollars) I am stuck and need assistance on how to make it recognize eugene. I am also having trouble with trying to figure out how once eugene is entered to tell the program to add the salespersoncommission and monthly sales of each case to get the totals to output to the user. Can you add the cases?
Option Explicit On
Option Strict On
Module Lab14
[code].....
View 8 Replies
Sep 10, 2010
I have a collection of order objects (properties - date, amount and vendor). I need to prepare a report showing spend by vendor by month since 01/01/2009. How can i get the results using LINQ?
View 1 Replies
Jun 11, 2009
I have a process that takes 3 seconds which needs to be run when someone clicks or mouse-up on a specific date on the monthly calendar. However, I do not want the process to run as one moves from month to month by clicking on the arrow keys.
I have tried the date-change and mouse-up events and both of these fire when I move between the months.
View 3 Replies
Oct 27, 2010
I have to show monthly paymen in label, make sure the user has entered an amount greater than 100, If user changes amount or rate or number of payments have label with answer cleared, When user Click on the text box have ente amount highlighted so user can type right over what was already written
I need to calcuate the button Also I need to be able to concatenate "Your monthly payment is (whatever the principal amount is) loan for(years) years at a rate of (whatever the %) is $ (whatever the monthlyPaymen)
[Code]...
View 2 Replies
Feb 20, 2011
I have added the monthly calendar to a new form and have a button that calls it, that works just fine. What I can't figure out is when I click on a date how to get that click to take that day and place it into a variable that I will use elsewhere.
View 2 Replies
Oct 2, 2009
I am developing a program in which I add the payments for my bills on a monthly basis. I have the design layout and the logic thinking, but having a little difficulty getting the database codes in place. I have 2 comboboxes that act as drop down boxes (1 lists all 12 months and the other lists the years, only 2009 for now for testing).
My access database has 3 columns (name, dates, amount). The names are pre-populated and the only columns displayed in the datagridview are name and amount.
When I choose a month and year, the datagridview should populate with the amounts entered from that month. I am having trouble debugging which lines of code are not working because there are no errors showing, just seems that it stops running at some point.
Dim Connection As OleDb.OleDbConnection = New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Administrator\My Documents\BillTracker.accdb;Jet OLEDB:Database Password=password")
[CODE]...
View 3 Replies
Dec 12, 2011
I want create task scheduler monthly determine 3 days 1,7,15 in every month how I can make that?
View 3 Replies
Jun 9, 2011
i wan set a timer in my program to execute a certain function daily,weekly or monthly(which will decide by the user)!User also can execute manually the certain function at anytime!any1 can teach me how 2 do these 2 function in my program?
View 10 Replies
Dec 2, 2010
I need to create an console application that computes the average monthly rainfall, number of months with above average rainfall, and the number of months with below average rainfall, given the rainfall amounts for each month in a particular year. The program must read in and store in an array the monthly rainfall amounts entered by the user one by one.
So far this is what I have got
Const intMonths As Integer = 11 'Constant Month variable
Dim sngRainfall(intMonths) As Single 'Rain for the month
Dim intCount As Integer ' Loop Counter
Dim sngTotalRainfall, sngAvgRainfall As Single 'Total and Average Rainfall
[Code] .....
How to set this up properly and I am having a real hard time figuring out how to make the data go from this loop to another and add the data to the total.
View 15 Replies
Jan 28, 2012
The company require an application that displays coffee usage information for the managers of CostaB Coffee. Sample data has been provided for last years (2011) monthly usage amounts in kilos and is as follows: 400.5, 450, 475.5, 336.5, 457, 325, 220.5, 276, 300, 320.5, 400.5 and 415.
Requirements: The main form will allow the user to enter and store monthly amounts in an appropriate data structure. It will enable the users to calculate the total usage for the 12 month period and average monthly usage. A further requirement for the application is for the users to be able to display the monthly totals in ascending (smallest to highest) and descending (highest to lowest) order of the monthly usage amounts. Utilise appropriate formatting for input/output and include appropriate error trapping and data validation in the application.
View 12 Replies
Mar 30, 2009
I am trying to calculate the number of years for my calculate age event handler, however i am apparently missing a method or whatnot because im trying to calculate the age , can anyone suggest help on this. I need to subtract years to get my age but when i try the birthdate.Subtract (currentDate) method i get an error about not able to convert from LONG?
So below is what I have.
Private Sub btnCalculateAge_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculateAge.Click
Dim currentDate As Date
Dim BirthDate As Date
Dim Age As Long
[CODE]
View 7 Replies
Oct 8, 2011
the purpose of the program is to display the monthly payments on the loan.My homework is to use do while loops instead of for loop.Here is the code for the for loop.
Option Explicit On
Option Strict On
Option Infer Off
[code].....
Now I'm having some trouble displaying the output using the do while loop, and I'm pretty sure it's a loop problem on my code. However, I cannot seemed to find out what's wrong. I looked at the examples of do while loop in my textbook, but I couldn't find anything useful to my problems of my program.This is the output for the do while loop.
Here's the do while loop code
Option Explicit On
Option Strict On
Option Infer Off
[code].....
View 3 Replies
Nov 3, 2010
when i enter the date of birth using the datetimepicker box it automatically compute the age and output in a textbox.text?
View 2 Replies
Nov 24, 2009
I have the following code, the answer should be 2 though I am getting 3 everytime
[Code]...
View 4 Replies
Feb 25, 2009
I use the following columns stored in a SQL table called tb_player:
Date of Birth (Date), Times Played (Integer), Versions (Integer)
to calculate a "playvalue" (integer) in the following formula:
playvalue = (Today - Date of Birth) * Times Played * Versions
I display upto 100 of these records with the associataed playvalue on a webpage at any time.
My question is, what is the most efficient way of calculating this playvalue given it will change only once a day, due to the (today-date of birth) changing? The other values (times played & versions) remain the same.
Is there a better way than calculating this on the fly each time for the 100 records? If so, is it more efficient to do the calculation in a stored proc or in VB.NET/C#?
View 2 Replies
Dec 1, 2010
I have an openfiledialog, I show the dialog and the user selects there file. How could I calculate the MD5 hash of the OFD.filename/file opened? Or calculate the SHA1, what ever is easiest.
PS: This is in Visual basic 2010 Express.
View 2 Replies
Jan 12, 2011
Dim
Field1 as
Integer
() = {0, 1, 2, 3, 4, 5, 6, 7}
[code]....
View 3 Replies
Sep 4, 2009
i have the numbers in listbox as below:
01
02
04
09
10
the question is ..how to calculate different between all numbers... exampel between 04 and 09 ,we have 05,06.07 and 08 between 09 and 10 is 0
View 8 Replies
Nov 8, 2011
I have buttons with values. for exmp. btn1 = 5.50 btn2=3.25 etc...when someone click on btn will ask how many of these and let say you say 3 it will multiply that with 5.50 and show it on listbox.
View 1 Replies
Feb 9, 2010
I have a project to calculate how many day is there before 05/12/2010.
View 10 Replies
Oct 7, 2011
I am struggling with this code that I Have to do about calculating the nth term of the Fibonacci series. The program is supposed to take the value of n and return the corresponding nth Fibonacci number.If the function is given an
invalid n value, it should return -1.
[Code]...
View 1 Replies
Apr 26, 2009
Does anyone know how can I calculate pi (π) in VB?
View 6 Replies
Mar 21, 2009
Calculate sum in program? [code]...
View 5 Replies
Jul 20, 2009
Given a distance (50km) as integer: 50
And a time as string in the following format:00:02:04.05
hh:mm:ss.ms
How would I calculate the avg speed in km/h?
View 4 Replies
Jun 29, 2011
I have 2 tables in sql server
1) I want to join those tables.
2)I have 2 columns in the table for eg:- outside temp and power by selecting the outside temp i want to calculate the average of the power with similar values.
View 6 Replies
Apr 30, 2009
how i'd solve for variance and Std. deviation. the project is meant to record housing prices, put them in a list box, and then compute these calculations
Public Class Form1
Dim intclicks As Integer = 0
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
[code]....
View 3 Replies
Feb 12, 2007
I have to calculate 360 values, for every degree 1. I've calculated all the values but my problem now is that i have to put all of them in a graph with x and y axes that are labeled but I don't have a clue how to begin.
View 39 Replies
Jan 14, 2009
How To Calculate Checkbox
View 1 Replies