Multiple Operations With A Simple Calculator?

Jul 31, 2011

I've got the bulk of a calculator up and working, however it doesn't like multiple operations. For example 3x5+2= brings up 10 (i.e. 3+5+2) and even doing it in two parts doesn't help, if I enter 3x5= I get 15 then +2= gives me 32 (i.e. 3x5=15 15x2=30 30+2=32). Also I am getting trialing zeros in my command line I can't debug.Note that lblcommandline displays the whole function and lbldisplay just displays the current imputted number.

Public Class frmSimpleCalc
'This code is run when the program starts. Here we 'declare' or basically, define which variables we want, what they are and such.
'So, for this example, we need two variables. The number we are CALCULATING and the one which we will CALCULATE FROM.
Dim lCalcNumberMaster As Long 'The master number is the solution, the number stored and displayed when we click equals.

[code]....

View 3 Replies


ADVERTISEMENT

Make A Calculator That Accepts Multiple Operations?

May 29, 2010

I am trying to make a calculator that accepts multiple operations, similar to the calculator found on Windows.

View 6 Replies

Add Calculator Operations To A List View?

Jul 22, 2011

I have a basic calculator that Multiplies A and B to give a result of C.I want to be able to once multiplication occurs then to add the data to 3 column listview where in Colum 0 the value of A will be entered, Column 1 the Value of B and Column 2 C.For every operation done then to follow on the next row and so on until Memory Result button is pressed, which would mean the end of transfering the data.

View 1 Replies

Calculator - Getting My Devide And Square Root Operations

Mar 27, 2012

I am having some trouble with getting my devide and square root operations working. when i hit say 10/2 all i get in my text box is "infinity"

'calculator program v.1.0
'programer: Michael Murray
'version: 1.0
'date: 21 march 2012

[CODE]...

View 3 Replies

Write Simple VB Code With *= Operations

Apr 18, 2010

I've designed a Arithmetic Calculator. I can get my additon button to work but not my multiplication button. My result total comes back as 0.

[Code]...

View 2 Replies

Add Tax On A Simple Calculator?

Oct 11, 2009

I am doing a tutorial for a simple calculator. My question is how can I add code to make a botton that add my tax % to the total amount I have.

Option Explicit On
Public Class Form1
Dim firstnumber As Single

[Code]......

View 1 Replies

Why Do Simple Math Operations On Floating Point Return Unexpected (inaccurate) Results In .Net And Python

Oct 20, 2009

x = 4.2 - 0.1
vb.net gives 4.1000000000000005
python gives 4.1000000000000005
Excel gives 4.1
Google calc gives 4.1

What is the reason this happens?

View 4 Replies

Build A Simple Calculator In VB?

Mar 20, 2006

how to build a simple calculator in VB; i got the interface with buttons and text box alredy and i figured out how to put more then one number using buttons alredy(Disp.Text = Disp.Text & 1) , Looking at the windows calc, how do you store the number u just entered into a text box and alowe user to enter another to performe calculations, what code should i use for equal button and etc.

View 10 Replies

Code For Simple Calculator?

Jul 12, 2009

code for calculator using vb.net

View 2 Replies

Making A Simple Calculator In VB?

Oct 1, 2005

how to make a simple calculator using vb?

View 11 Replies

Create A Simple Calculator Using Only 1 Textbox?

Mar 29, 2011

I want to create a simple calculator using only 1 textbox , 1 button and 1 label, but I don't know how to create the code.

for example if i write : 53+35-33=

and if i press the button it will calculate and the answer the label will show the answer (55).

View 3 Replies

Creating A Simple Function Calculator?

Dec 8, 2010

i am going creating a simple function calculator, but I had to first do a design documentation proposal. I now have to update the project proposal with a storyboard or list of menu and screen items to delineate my proposed user screen and menus.aside from the calculator itself there will not be any menus.I also have to list any user data inputs and outputs my application will require and produce, which i assume i can put any numbers that the user inputs into the calculator and their results.

View 5 Replies

Forms :: Trying To Develop A Simple Calculator

Jun 16, 2011

I am new in programming, I am trying to develop a simple calculator but I am unable to connect the addition, subtraction and equal sign buttons.[code]

View 1 Replies

Simple Calculator - How To Work With Print

Jun 11, 2011

I am making a calculator Program to start off on visual basic. I got it to work with MsgBox, but now I'm trying to get it to work with the Print.

MsgBox Example
Public Class Form1
Private Sub Button1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseClick
Dim Pizza As Integer
[Code] .....

Say I type in 6 and 6 I'm getting errors saying Example: Conversion from string "youranswer is 12" to type 'Integer' is not valid. I've tried many things, but it's not working. I want to know what I need to do to get it to print out how I want it. Do I need to do some conversions properly somehow?

View 2 Replies

Simple Calculator Multiplication And Division?

Jan 30, 2010

Simple Calculator multiplication and division Trying to make a simple calculator. My program inputs numbers and arithmetic operations thru commandbuttons. The numbers, num(n-+1), are odd and the operations, op(n), are even. The code is based on the even op string. Every time a op occurs it is stored in numop(n) to be accessed later. I have all the other operations in sequential order: "*"," "/, "+" and "-". The other similar For-Next loop are the same just interchange the two * for /, +and -. The "+" and "-" work fine in this configuration.

My problem is the multiplication and division does not occur. The numbers and operations line up. The numop(m)=g*h should yield numop(m)=num(1)*num(3). Is there some sort of code to be inserted to accomplish these multiplication and division operations?

[Code]...

View 7 Replies

Make A Simple Resistance Calculator For Practice?

Nov 21, 2009

I am trying to make a simple resistance calculator for practice. I use text boxes to let the user input the current and voltage, and then a combo box for the units and then a list box to display the results. For some reason no matter which units I select it doesn't convert at all. For example 1/2 will always show up as 0.5 in the list box no matter which units are selected from the combo box. Here is my code.....I know that there is more cases but I only put one to see if it works before I write all of the cases.

Public Class Form1
Dim unitsA As String
Dim unitsV As String

[code]....

View 1 Replies

Multiple Operations Using Single RecordSet?

Jun 18, 2012

I have some task regarding do operations on database using ADODB in Vb.NET.regarding using the same record set multiple times?

I have tried on this topic just by closing the recordset after performing First operation and doing second operation e.t.c.

In ADO.NET we have "MultipleActiveResultSets=True" in ConnectionString for SqlDataReader.Do we have any property like this in ADODB?

View 1 Replies

.net - Starting And Displaying Progress Of Multiple Synchronous Operations

Dec 2, 2009

I have a WinForms app and am trying to add the ability to start up multiple operations based on data entered in a datagridview. The operations must be run synchronously to monitor that they complete succesfully before inserting a row into the DB to indicate that the operation was succesfull. I also have a status event handler on the operation which will return the percentage of the running operation.

So far I am using threads to kick off the operations, however it is updating the progress of just one of the threads. When that thread is complete it is moving on the the next and will work that until completion. I would like them both or more to run simultaneously and be able to report the status of each.

I am basically looping through the rows in the grid and using the values there to instantiate a new class I created. I am then creating a thread and kicking off a sub to perform the operation from the new object. I think I may be close as I know they are all being started, but they are just running one after the other rather than all at once.

View 1 Replies

Develop A Simple Math Calculator That Will Allow The User To Input The Right-hand-side (RHS) Of An Equation Into A Textbox?

Dec 12, 2011

I am trying to develop a simple math calculator that will allow the user to input the right-hand-side (RHS) of an equation into a textbox on the application and have the application evaluate the expression for a given value of x, which is also input
into the application by the user via another textbox.For example, if the user wants to evaluate the following expression,

y = 3 + 4*x + 5*x^2

then they would input into the textbox the RHS of the equation

3 + 4*x + 5*x^2

and then enter a value of x into the another textbox and click on the calculate button.I tried this:

answer = EquationTextBox.Text

but it doesn't work.

View 6 Replies

Making A Calculator With Multiple Function?

Nov 30, 2010

im making a calculator with multiple function but im stuck on two main parts on it. i wrote a big chunk of code for the total calculator. it adds, sub., multi., or divide the amount of numbers the user puts in and then it ask them to enter them in individually using a loops, radio buttons and a listbox. im stuck on the loop because it will as for the 1st number and the last number heres the [code]......

View 5 Replies

Have A Multiple Form Project That Is A Mortgage Calculator?

Feb 7, 2010

I have a multiple form project that is a mortgage calculator and I am having trouble with my Payment Numbers. One of the things I am listing in the amortization table is Payment #. The variable for that is Lyears. It seems like Lyears is set to 0 so it continues and never stops.

Public Class Week3Calc
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CalcBtn.Click
Dim MonthlyRate As Double 'Initiates variable
Dim YearRate As Double 'Initiates variable

[code].....

View 4 Replies

Simple Product Class With Multiple Records

May 26, 2009

VS2008 VB.net. I have a simple Product Class with 20,000 records:
Product(1).partno = "3999399"
Product(1).desc = "Bearing"
Product(1).loc = "34"

This represents ONE sale only and may appear in 100's of other records
Using LINQ how can I: Determine the total count of each partno and then sort by descending order

Example:
Count Partno Desc Loc
3,232 3999399 Bearing Loc 34
2,323 3899388 Bushing Loc 35
etc.

View 5 Replies

Printing Of Multiple Pages Is Simple Enough Utilising The Printdocument?

Nov 12, 2009

VB.net printing of multiple pages is simple enough utilising the Printdocument. Previewing the pages via the PrintPreviewDialog control is also simple enough.BUT Whereas the doc.print() will cause all pages to be printed stat - the Print button on the PrintPreviewDialog control calls the printPage handler one more time before printing.As all pages have been laid into the document this extra call to the printPage causes only a blank page to be printed. defeat the PrintPreviewDialog call to the handler? - Other than building, previewing and printing each page as a separate job!

[Code]...

View 1 Replies

VS 2010 : Roadblock With Simple Multiple Choice Form?

Apr 3, 2012

I am trying to create a simple program that delivers True/False questions from a text file and then displays the mark to the student, but I'm running into trouble.I created two forms. The first contains a listbox which is populated with the possible test choices (taken from a .txt file containing only 2 choices). I wrote this code for the listbox

Private Sub frmTest_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Populates listbox with test names from TESTS.txt
Dim sr As IO.StreamReader = IO.File.OpenText("TESTS.txt")
lstTest.Items.Clear()

[code]....

After the test is chosen, the user presses BEGIN. At this point I have my actual Question form pop up, and the first form is hidden. I tried to begin with an If-Then statement which will open the appropriate .txt based on the selection from the first form.

Private Sub frmQuestion_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Opens appropriate test based on selection
If frmTest.txtChosenTest.Text = CStr(frmTest.lstTest.Items(0)) Then

[code]....

This is where I get completely bottle necked though. I've been staring at the screen/textbook for 5 hours now and I don't understand how to write the code that will take my questions from the (now open) text file, separate the question from the answer, and put the question and question number in the appropriate text boxes. The format of the question .txt's are simple. One question per line, with the answer following, separated by a comma. For example, Midterm.txt might look like this

Question1isthisone,T
Question2isthisone,F

If I were to design a form for this problem let's say it would look like this:I am currently stuck at this part though. How do I populate the two read-only text boxes with the question number/question, and then cycle through the questions from the .txt while also keeping the user's score?

View 13 Replies

Making A Simple Game - Multiple Hotkeys - Simultaneously Go Up And Left

Jun 9, 2011

I'm making a simple game. I want simultaneously go up and left.

Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
' If e.KeyCode = Keys.Z Or e.KeyCode = Keys.Up Then

[CODE]...

Left, right, down and up work. now diagonal.

View 1 Replies

Simple Looping - Create Multiple Form Fields For Each Entry In Underlying Database Table

Nov 24, 2009

I am trying to create a form which will be fed by an underlying database to create multiple form fields for each entry in an underlying database table. This is for a program to monitor patients under anesthesia, and prior to surgery, the doctor will choose which monitors they will be using. Then, on the actual monitor screen which will pop up every X minutes, there will be a text box and a check box for each chosen monitor. I am relatively new to VB, so I have tried to illustrate what I am needing but using the logic that I know from my previous life in PHP.

I am using DevExpress's layout control to place the form fields, so that is the code in the middle of the first loop (on_load), and I know that part works, I just need to know how to name the fields and then recover those fields and commit the values to the database. (the text boxes are added to the database, the check boxes are used to determine if an entry is made for that monitor- i.e. at the end of surgery if a monitor is turned off). I know that my syntax for naming the fields is no where close to correct, and it probably would not work in PHP, but I remember doing something like this in a PHP application I built long ago. [Code]

View 3 Replies

Post A Simple Code Using VB That Start Building Simple Games?

Jun 10, 2011

Is there anyone can post a simple code using vb,that start building a simple games ?

View 2 Replies

Make A Simple Browser With Some Simple Addon's?

Dec 9, 2011

Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:

Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage

[code].....

View 2 Replies

.net - Add ProgressBar While Making Operations?

Feb 10, 2012

my update script in VB.NET, i'm making some stuff, and I want, while all funcs are executed, a progressbar to be displayed? How to do that? Here is my execution sub:

[Code]...

View 1 Replies

Add Operations From A Listbox Into A Timetable

Dec 19, 2011

I'm new in VB.net but I'm trying to make application (planning-game). The game is about showing students the planning 'complexity' of a operation room in a hospital. I created a listbox which randomly shows 5 operations. But now I would like a function which makes it possible to add a selected operation to a timetable. The timetable has blocks of 30 mins (example 08:00 - 08:30, 08:30 - 09:00 etc..). This because 1 type operation takes 1 hours and 1 takes 1:30 hours. Now I have given the operations a value by using a label. [code]

View 1 Replies







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