How To Make A Calculator

Nov 26, 2009

does anyone know what i need to do? if you do make a youtube video and post it in this post.

View 1 Replies


ADVERTISEMENT

How To Make A Zodiac Calculator

Jun 22, 2010

how to make a zodiac calculator, I know the basic codes that I need to insert, but I'm creating it in a windows application. The day and year are text boxes that the user can input that particular information, but the month is a drop-down box. My two questions are: Is it okay to delete the private sub of the day and year so I can combine them into one sub? And how do I get the months to show up individually in the code area? Or would I have to delete the drop-down box completely and make it like the day and year text boxes where the user can input the information themselves?

View 6 Replies

How To Make Calculator Like Win7 One

Mar 5, 2011

I mean not like windows xp which the number and signs are not in the same textbox, but like windows 7 which you can see the whole calculation before pressing equal, and i don't think that compute.datatable can do this because it's limited with the basic signs(+,-,/,*) and it doesn't include the other signs(like : sin,^,root,log), so how to make a calculator like windows 7 one?

View 2 Replies

Make A Calculator In VB 2008?

May 30, 2010

I have 3 buttons

+ is one button
- is one button
* is one button

I have three text boxes

firstnumber- is 1 box
secondnumber-is 2box
solution is- third box

View 2 Replies

VS 2010 - How To Make A Calculator

Jun 5, 2011

How to make this calculator:2 Texboxes In first textbox is writeble (where user will write the version) The second textbox is notwriteble ( there will show the result)In the first textbox to make calculation of version.If user writes for example: 1.03.11 In textbox2 to display the calculation: 22656 If the user writes for example other version:1.05.50 In textbox2 to display the calculation:22895and the same way if user writes 1.03.24 or other numbers auto to calculate the versions, and if user writes a bad text in tetbox2 to display error: For example In textbox1 user writes text: omg In textbox2 shows : Error
Only if user writes number like this: 1.03.11 or other number will calculate it else to shows error

View 16 Replies

Make A Calculator With One Textbox And 16 Buttons?

May 8, 2012

I am trying to make a calculator with one textbox and 16 buttons. Buttons are:(0,1,2,3,4,5,6,7,8,9,+,-,*,/,=,C). So here is code for now:

vb.net Private Sub nula_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles nula.Click
TextBox1.Text = TextBox1.Text & 0
End Sub
Private Sub jedan_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles jedan.Click
TextBox1.Text = TextBox1.Text & 1

[Code]...

When I add those numbers and operators its easy, but how make operations really work now?

View 4 Replies

VS 2010 : Make A Rank Calculator?

Sep 8, 2011

VS 2010 : make a Rank Calculator?

View 2 Replies

Geting Error Message While Trying To Make A Calculator

Apr 15, 2009

I posted this in the wrong part of the forums. Using visual basic 2008 and keep geting this message whenever I try and test this calculator program I've been mucking around with for the past 2 hours.

[Code]....

View 9 Replies

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

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

Make CE (Clear Entry) Work In Calculator?

Nov 21, 2009

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Text = ""
End Sub

This is to Clear all numbers but I don't know how to Clear just one number. for example i want to do 23 once a user clicks CE, i want to make it show 2

View 1 Replies

VS 2010 - How To Make Calculator Work To Use Only Keyboard

Aug 26, 2011

I'm new in the programming area and I'm having trouble making a calculator. My question is: How do I make the calculator work using only the keyboard, without the need of mouse.

I tried this:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Me.KeyPreview = True
End Sub
Private Sub FlowLayoutPanel1_KeyDown(ByVal sender As Object, ByVal e
As System.Windows.Forms.KeyEventArgs) Handles RESULTADO.KeyDown
If e.KeyCode = Keys.NumPad0 Then
[Code] .....

It only works on the text box called Result. I want to know how do I make work in the whole Class, and if it is possible, to make it work on two different Classes without writing twice the same code.

View 6 Replies

VS 2010 Make A Game Statistics Calculator?

Jan 3, 2011

I want to make a game statistics calculator. For this I choose to make a XML database with the base stats of the characters.

I've made a small XML file in the VS2010 project with 1 class stats and made a list to 10 levels (to lazy atm to write all 85).

the XML looks like this:

<BASIC_CHARACTER_STATS>
<Levels>
<level id="1">1</level>

[Code]....

On the Form1.vb I've to combo boxes, 1 to display class names and 1 for levels.
Also have some Labels to display i.e. the base_STR number. But after trying random stuff to get it linked and closed VB to restart again because it was messed up too much

View 1 Replies

Make A Calculator That Adds From Two Text Boxes And Displays The Answer In Another Box?

Apr 23, 2010

I'm trying to make a calculator that adds from two text boxes and displays the answer in another box, but It gives an error when someone enters a character. What can I do to display a string error message in the third box if a letter is entered in one of the first two boxes instead of a number?

View 1 Replies

Make A Special Calculator Will Fall In Number In The Link Provided On The Website

Feb 14, 2011

I'm new to the forum and new to programming with Visual Basic Express 2010.I would like to built a special calculator.Calculator will fall in number in the link provided on the website.

[Code]...

View 16 Replies

Calculator / Add A Beep?

Jan 22, 2010

I have this:

If (TextBox1.TextLength > 16) Then Return

But I want to add a beep to how can I do it? I mean I can only Return and I want to use Beep() too.

View 6 Replies

Add Numbers In A Calculator?

Jan 29, 2009

I've made a simple calculator, everything works except for the adding (+) function. Such as 3 + 4 = 34 (which it doesn't). It takes it as a string, rather than a number.

Here's what I have so far:

CODE:

Again, the problem is the adding is not functioning.

View 1 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

Calculator - Comma / Dot Appear Only Once

Dec 7, 2009

The comma/dot may appear only ones. How do I modify that within this code??
bpuntingedrukt as boolean
Private Sub VoegCijferToe(ByVal sCijfer)
If Len(lblDisplay.Text) > 15 Then Exit Sub
If sCijfer = "0" And lblDisplay.Text = "0," Then
[Code] .....

View 24 Replies

Calculator And Exe.file?

Jan 11, 2011

Okay, i have two questions i will merge into one.I am using Express, just in case its important

First of all, i am trying to create a calculator using Visual Basic, which will end up being a lot like the 'Calculator' application built into all Microsoft computers.

I am having trouble however, with adding more than one thing to a text box.

[Code]...

View 13 Replies

Cannot Get A Calculator To Work

Jun 18, 2012

i have to finished a cacluator, all my code seems to be working apart from the equals button and i do not understand why..i've tried several different things such as a case too but nothing seems to work to get the equals button working. This is my code, no need for all the buttons they are the same and ive declared variables.

[Code]...

View 2 Replies

Day Of Week Calculator?

Mar 30, 2012

Sorry in advance. I emailed myself my coding since I don't have vb on my personal computer. Sooo, the format is going to be off. But my program allows the computer to generate a random date. The user has to guess what day of the week the random date lands on. I have written the whole code. It all works except when user checks his/her answer. The answer always comes up as incorrect. Here is the coding:

[code]...

View 5 Replies

Dosage Calculator In C#.net?

Jul 13, 2009

I want Dosage Calculator in c#.net for my module completion.

View 2 Replies

How To Build A Calculator

Dec 17, 2009

I want to build a calculator, i want to learn vb.net myself so i contacted you.

View 2 Replies

How To Code The Calculator

Apr 3, 2009

how to code the calculator?

View 2 Replies

How To Design A Calculator

Jun 22, 2010

How can i design a calculator?

View 2 Replies

Odd And Even Number Calculator?

Mar 27, 2011

I need to do a programme that checks if the number a user enters is odd or even and then adds together all the odd numbers and all the even numbers seperately and displays the total in a label. My code just displays "0".

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim oddNumber As Integer

[code].....

View 1 Replies

PayRoll Calculator On VB?

May 22, 2010

You need to design and create a program that accepts input of employee name, employee type, and the number of hours worked each week for two weeks.You must be able to select an employee type. An employee of type Trainee makes $10 per hour. An employee of type Regular makes $15 per hour. An employee of type Manager makes $20 per hour.The program should calculate the employee&#65533;s pay for the week. The employee should receive 1 &#65533; times the regular pay for any hours worked over the prescribed 40 hours in a week. The program should output the following information:

Option Explicit On
Public Class Form1
Private Sub GroupBox2_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs)

[code].....

View 3 Replies

Polynomial Calculator In Vb?

Nov 14, 2009

VB.pdf (69.13K)Number of downloads: 72 VB.pdf (69.13K) Number of downloads: 72

View 1 Replies

Tip Calculator Using 2 Classes?

Dec 7, 2011

So Im having trouble taking the code i have and being able to break it down into a tip class and a total class along with the main form. i did the whole code in on form and now im so confused on how to break it down.this is what i have! its alot because im using radio buttons.. on and im using visual

Option Strict On
Option Explicit On
Imports System.Convert

[code].....

View 3 Replies







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