VS 2010 Hmwk - Display The Largest And Smallest Using Math.max - Math.min
Mar 5, 2012
well i am having a couple of issues with this particular homework problem and this is my first programming class so there is probably quite a few mistakes well the homework problem is to take three double values entered by a user and display the largest and smallest using math.max and math.min and display the smallest and largest so i thought i could use a listbox and take the values that went to the listbox and assign variables to each so i can try to use each variable in the math.max and min but im not making it to far and i actually might be way off
[Code]...
View 4 Replies
ADVERTISEMENT
May 3, 2011
I have two text boxes on my form. text box 1 allows a user to type in a number (decimal) and text box 2 will display the smallest number typed in so far. The idea is to find the smallest number typed in by the user in text box 1, by using the Math.min method to compare each number typed in by the user to a variable that contains the smallest number to the point. Then replace the variable value with the smaller of the two numbers. To make it work for the first number. I have to initialize the variable to 99999. (no if else statements should be used).
View 3 Replies
Apr 7, 2011
I have the following code for a structure:
[Code]...
I create an array of this and load different distances into the ProjectileDistance property of the array. My question is this: How do i sort this array from smallest to largest value of ProjectileDistance?
View 9 Replies
Jul 1, 2010
So im using the inno installer to set up my project and i found a nice script that will check and download 3.5 framework, but can't get it to work for 4.0 so my question is would i be able to compile my project in 3.5 and everything still work correctly?
My program just uses basic math functions and display the data in datagridviews. It uses webbrowser and other toolbox options. It doesn't use the registry and only creates one txt file.
View 1 Replies
Dec 1, 2010
how can I add math symbols in Messagebox? For example square of 5*5...when i click the button that in messagebox will be some math formula.
View 4 Replies
May 9, 2010
I am making a calculator that accepts large number (represented as strings) and performs basic math functions on them. So far I have Add and Multiply figured out.
Here is addition
Private Function Add(ByVal Number1 As String, ByVal Number2 As String) As String
Dim num1, num2, r, total As New Integer
Dim sum As String = ""
[Code].....
I saw something like this in the code bank but the examples there were from VB6(?) and were hugely inefficient (compared his Add and Multiply examples to mine, his having way more code and loops.)
View 6 Replies
Sep 19, 2011
I need to creater a menu that will offer 4 operations ALL at once by using & vbcrlf [code]heres what i was able to do but it shows all the 4 operation in my msgbox..
View 2 Replies
Jul 19, 2011
My problem is I have a program that needs to input 3 values in 1 textbox only. I've been trying to figure that out for a couple of days now.this program must show the largest, smallest and average of 3 values.
Public Class Form2
Dim array() As Integer = New Integer() {a, b, c}
Dim a, b, c As Integer
[code]....
View 5 Replies
Sep 5, 2010
Getting largest and smallest number from an array and placing in 2 dif Posted 02 November 2010 - 05:34 PM I have the code written for everything except when I try to display the highest and smallest numbers from the array into a label it display 0 for both the smallest and highest number.Question: Create an application that lets the user enter 10 values into an array. The application should display the largest and smallest values stored in the array.
*The form is a list box with 2 labels and a button to retrieve the 10 numbers and put them in the list box then the other button puts the highest and lowest number in the 2 labels
Note: Place them in 2 diff sub-routines.
Option Strict Off
Option Explicit On
Public Class Form1
[code]....
The only issue i have is to get the smallest number to show up.. mine just keeps showing "Zero".
View 4 Replies
Jun 23, 2011
I trying to do from A to B to D and to E.All in ListBox(A to B)I want to sort smallest to largest from top to bottom(Vertical for B1,B2,B3, B4)[code]
View 18 Replies
Dec 10, 2009
What I am trying to do is fill an array from the largest index to the smallest index -- with the desired effect of reversing the values in the array. I have been looking at doing it with 2 for...next loops and I thought I had it, but I don't. As the reversed array is empty at the end of the 2 for...next loops here is code that I have been playing around with.
Dim myIntArray() As Integer
ReDim Preserve myIntArray(4)
myIntArray(0) = 0
myIntArray(1) = 1
myIntArray(2) = 2
[Code] .....
View 2 Replies
Nov 2, 2010
I have the code written for everything except when I try to display the highest and smallest numbers from the array into a label it display 0 for both the smallest and highest number. Question: Create an application that lets the user enter 10 values into an array. The application should display the largest and smallest values stored in the array. *The form is a list box with 2 labels and a button to retrieve the 10 numbers and put them in the list box then the other button puts the highest and lowest number in the 2 labels
(I am not sure how to display line numbers in my code on VB2010, please if you know tell me and I will edit the post)
[Code]...
View 8 Replies
Apr 8, 2009
I have 2 labels. One needs to show me the lowest number of the 10 in my rich text box and the other needs to show me the largest.
Public Class Form1
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
Me.Close()
End Sub
[Code] .....
View 14 Replies
Jan 19, 2012
My datagrid view looks like this :When I put the table to fill in word,my report looks like the table below, but I want my rank days are arranged from smallest to largest as in the table below :
Cod for filling
in the table word I use this:
Dim Tabela3 As Word.Table = WordDoc.Tables.Add(WordDoc.Bookmarks.Item("endofdoc").Range, DataGridView2.RowCount, 6)
Tabela3.Range.ParagraphFormat.SpaceAfter = 0
Tabela3.Columns.Item(1).Width = WordApp.MillimetersToPoints(33.3)
[code]....
View 1 Replies
Aug 20, 2009
I,m developing a debt calculation program 'my problem is when i have to calculate the months to pay back the debt it comes to 28.04 and i have to get it to 29 my code looks like this:
[Code]...
View 3 Replies
Mar 29, 2012
How can I round 4.39 to 5 in VB.NET? I tried:
Math.Round(4.39, 0)
But it displays 4.
View 1 Replies
Jan 27, 2012
I am trying to perform a simple multiplication in vb.
Below is my code:
Dim minus As Integer
Dim minusPrice As Integer
Dim totalPrice As Integer
[Code].....
View 4 Replies
Jul 29, 2011
I've been having a problem with Math.Log in a function I'm trying to write. When working with variables, it always returns 0. Here's the line I'm trying to run:
Quote:
mb = txtMb.Text
k = txtK.Text
t = txtT.Text
[Code].....
View 5 Replies
May 8, 2009
I am trying to use Math.round. now my math.round (2.5) converting it to 2. O want to convert it to 3.
View 6 Replies
Apr 13, 2012
I am trying to do math (-, +, *, etc) based on what a user selects from a combo box. The combo has the operators (-, +, *, /) in its items list. when the user selects one of them, I want to use that operator with the two numbers the user also provides from two text boxes.
dim intNumOne as integer
dim intNumTwo as integer
dim intAnswer as integer
[Code]....
'I don't think I want to concatenate here. but this is what I would like to happen (use the operator based on the users selection from the combo and the two numbers from the text boxes. I know I could write a select case or If statement but is there a way to do what I'm trying to do without Select Case or If? I tried to make theOperator a 'char' type variable but that didn't work either.
View 3 Replies
Sep 20, 2009
Is there any way to parse a string in vb.net (like, built in methods), that can do math like Eval can? For example, 3+(7/3.5) as a string would return 2.
I am not asking for you to code this for me, I just want to know if there is a built in way to do this, if there is not I will code it myself.
I can wager that it would not be able to parse stuff like Sin(90) on its own, and I understand that would need to be replaced by Math.Sin(90).
View 5 Replies
Oct 29, 2009
I have tried following coding to get highest value.EX: If I type 4.341111111111, It should get the value 4.35. If I type 9.132222, It should be 9.14 not 9.13.[code]
View 9 Replies
Nov 24, 2010
I am building a tool to figure out final value fees. This is the math i have to try to code
$1,000.01 or more 8.75% of the initial $50.00, plus 4.0% of the next $50.01 - $1,000.00, plus 2.0% of the remaining final sale price balance ($1,000.01 - final sale price)
View 8 Replies
Jul 13, 2011
I'm using .Net 3.51 SP1. I've been having problems with .Net's inability to add single numbers, could anyone throw some light on this.
[Code]...
View 12 Replies
Jun 17, 2010
I am trying to create a small application which does mathematical calculations using dates and times. Specifically, to determine the period of time between two specific dates and times.
View 2 Replies
Mar 1, 2012
I have a strange result coming from some big math & have no clue as to why I'm getting a different answer from vb.net vs python.Here are the quick snippets & results:
VB.NET
Dim MSB As UInt32 = 3067297518
Dim LSB As UInt32 = 1439785590
[code]......
View 1 Replies
Feb 23, 2012
I've a problem using simple logarithm function Log in some ButtonClick Event. Log is underlined with next warning:System.Diagnostics.Log is not accessible in this context because it is Friend.
Have I missed something or this happens because of the Express version of Visual Basic?
View 1 Replies
Oct 17, 2009
1. The lens equation for a camera is 1/f=1/di+1/de , where f is the focal length of the lens, is the distance between the lens and the film, and is the distance between the lens and the object. For a certain camera, an object that is 18 cm from the lens is in focus when the lens is 9 cm from the film. What is the focal length of the lens?
View 1 Replies
Nov 27, 2010
Is there some interface I can implement to allow basic comparisons and math to happen as it would an integer?
For example, let's say I have the following class:
Public Class Something
Public SomeBigNumber as UInt64
End Class
I would like to do something like this:
Dim SomethingA, SomethingB, SomethingC as New Something
....
If (SomethingA-SomethingB) > SomethingC Then
'Do stuff
End If
I was hoping to be able to implement some interface (if that is even the right term for it) that would return the UInt64 contained in the class for comparison and math, if possible.
View 1 Replies
Apr 15, 2011
I have to use a round method that follows this behavior:
7.00 -> round -> 7
7.50 -> round -> 7
7.51 -> round -> 8
I tried to use Math.Round, but it works a little bit different.
[Code]...
How can I implement my rounding logic?
View 4 Replies