Do A Calculation Where-in Output Is Different Depending On What Input Is

Jul 28, 2009

I'm trying to do a calculation where-in the output is different depending on what the input is. [code] I have these repeated using >=50 >=60 etc. but when I go to run the program I get this: [code] basically I need to know how to create a cut off point for the grading system. <= doesnt seem to work.

View 4 Replies


ADVERTISEMENT

Calculation In VB - Keep Getting An Output Of Zero

Aug 21, 2010

I'm having trouble with a calculation in VB and it's a simple one but for some reason I keep getting an output of zero.

Here's the code for the calculation and the click button:

CODE:

View 5 Replies

Calculation Error Output - Conversions Between Decimal,string ?

Mar 29, 2010

I am struggling to get this to output calculations correctly. Have I properly made my conversions between decimal,string and so forth. Is that the only reason that a calculation would not produce the right result or is there another reason? I have negative total results for output when they should be positive.

Dim decAmount As Decimal
Dim decInterestRate As Decimal
Dim mdecFutureValue As Decimal

[code]...

View 3 Replies

Forms :: Tab Control Inheritance - Dynamically Add Tabs Depending On The Output From A Database

Jul 18, 2007

I've got a tab control and want to dynamically add tabs depending on the output from a database. I can easily add a new tab, however I want to inherit the controls and layout from the initial tab.

View 7 Replies

Cancel The Input On Textchange Event Depending On A Condition?

Jun 18, 2009

i want to cancel the input on textchange event depending on a condition, how? for example, as user type in textbox, it fires textchange event, in that i want to do some condition testing, if value is true then accept new character or cancel the new input.

View 5 Replies

Make A Control Required To Put Input Depending On The Radiobuttonlist Selection?

Dec 24, 2010

How can i make a control required to put input depending on the radiobuttonlist selection?

Let me try to clarify a bit more. I got 2 radiobuttons, if one gets selected, nothing else has to be done.

But if the otherone gets selected, a textfield must have some input too.

View 2 Replies

SQL Stored Procedure - Insert Data Depending On User Input

May 13, 2011

I created a sql stored procedure that will insert data for me depending on user input. Now I would like to know usually I would do something of this nature

Dim con As New SqlConnection(connectionString)
Dim cmd As New SqlCommand("usp_userinput", con) 'references connectionstring and calls store procedure
cmd.CommandType = Data.CommandType.StoredProcedure 'sets default to be storeprocedure
lblMessage.Text = String.Empty
With cmd.Parameters
If (Session("UserInitials")) IsNot Nothing Then
.AddWithValue("@UserInitials", Session("UserInitials").ToString())
End If
End With

That is just an example how i usually approach calling the stored procedure in vb. However for this particular form I am going to have 50 or 60 textboxes which each one would require a session state variable.Seems a little tedious to have to create a session state variable for each textbox on the form.

View 1 Replies

Error On Calculation Of Double Type Input From MaskedTextbox In .net?

Jun 30, 2012

im calculating fare amount from 2 masktextbox mtxA and mtxB, i use the format 0000.00 ,, i was able to convert all prompt char values from mtxA and turned them into really zero but however it doesnt do the same on mtxb, though ive used similar code.. so my flow should be: whatever i values i put on mtxA.. on its textchange,its current value should be also put to mtxB plus an additional of 200.00

as an example : if i put on mtxA = 0030.00
mtxB = 0230.00 should be the display

but what is shows on me is mtxB = 2300.00 and also if i save it on the database .00 is not added,.....im tired fixing this so i try to use textbox instead of maskdtextbox, what i did is put lots of conditions and function on keypress to have the same format 0000.00 but i failed because everything on my code mess up whenever the user tried to edit the text according to textbox current position..check textbox.text current length from 0 to before the cursor location...but i dont know what code i should use to get the length..

View 6 Replies

VS 2010 Perform Calculation After User Input On DataGridView?

Oct 6, 2011

I have DataTable, and is bound to DataGridView. So, when the user inputs some values in 4 columns, it would calculate the sum and put it in the last 2nd last column.

Here's the code that I'm experimenting:

vb.net
Private Sub DataGridView1_RowLeave(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.RowLeave
Dim i As Integer
Dim intTotal As Integer = 0
For i = 5 To DataGridView1.Columns.Count - 3

[Code]...

So, basically it should sum up certain columns when the user enters numbers into it and then display it in the last column.

View 3 Replies

Control Display Of Several On-screen Elements Depending On A Single Value Input By A User

Aug 3, 2009

I am new to VB and seeking to create a visual basic program which controls the display of several on-screen elements depending on a single value input by a user. The user can enter anyone of 2500 values and depending on the value entered, five different display elements on the screen will change color or text. The program's response to a given input value never changes, in other words if the user enters 279, the five different display items will always be the same. However, there is no real pattern to the display items that would allow for programming an anticipated response to the input value.

My thinking is to create a large and ponderous "lookup table" in visual basic - I am assuming this an be done but perhaps there is a different or better method. I plan on creating the lookup file in Excel but was assuming I'd need to export it to something that VB could easily read. Any suggestions on the best way to do this? Does the lookup table reside as a separate .txt files someplace or something like that? [Code]

View 2 Replies

Databound Combobox Doesn't Update Properly Depending On Input Meth

Feb 10, 2011

I've already found evidence of another having this problem. You can see this on this post by someone else:

http:groups.google...096b3fcaa?pli=1

The problem is that when one navigates the combobox via the keyboard, the combobox's information doesn't update. If you click a value with your mouse, though, everything works wonderfully. The link I've mentioned suggests changing the binding from the Text property to the SelectedItem property. I'm very deep into this project and it would be a bit of a nuisance to change the setup so as to allow it to be bound to the SelectedItem property.What I'm wondering is whether or not I can detect the user changing the selected entry in the combobox and tell VB that they "clicked" the value, if that makes any sense.

View 2 Replies

Creating A Mortgage Calculator That Display Continuous Information Depending On User Input

Mar 2, 2009

creating a mortgage calculator that display continuous information depending on the user input such as monthly payments, remaining balances, and interest paid. I am attempting to use a list box and am currently stuck. [code] Please use code tags when posting your code. Code tags are used like so.

View 1 Replies

Clearing Output When Input Changes?

Jun 2, 2009

I created a simple calculator. I just graduated with my Bachelors in Software engineerin in March of 2009. I am tryig to get a better understanding of VB.Net. I created a simple practice calculator and would like to know what code needs to be added in the code to clear the output when the user changes the input without adding a clear button as I know how to clear the input and output using a clear button, y working code is pasted below.

[code]
Public Class Calculator 'Form click event handler
Private Sub Add_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles

Download file asynchronous using sockets

View 2 Replies

VS 2008 Input A Value To Output Another?

Oct 19, 2010

In my programming class, we have been set a task in which a user inputs 8 numbers, and those 8 numbers will be split into groups of 4 (therefore having 4 lots of two digit numbers). These 2 digit numbers will then translate to a specific time, day, place and city.

For example, this table below is what we have been given for city. (there are separate tables for time, day, place with different 2 digit numbers)

(Excuse the formatting)
City Code
London 11
Paris 37

[Code]...

For example, if a use inputs 11995467 I would want that to output London (being the number 11), [a PLACE = 99], [a DAY = 54], [a TIME= 67]

Bearing in mind I am a newbie, and my knowledge of VB is minimal. How would I go about doing this. It's suggested we use MOD and integer division, but I don't see how it can work.

View 5 Replies

Input Output Error Stream?

Oct 30, 2011

Applications in the .NET Framework can use the System.Console class to read characters from
and write characters to the console. Data from the console is read from the standard input stream,data to the console is written to the standard output stream, and error data to the console iswritten to the standard error output stream. These streams are automatically associated withthe console when the application starts and are presented as the In, Out, and Error properties, respectively.I am working with redirects and I am solving small problems one at a time. So far so good, but I lost track of the big picture here. Can someone please clarify something for me.

View 1 Replies

Passing Two Input And One Output Parameters

Oct 7, 2010

I have a stored procedure with two input and one output parameters. I need to execute the stored procedure from VB 2008 code passing it two parameters and returning the output parameter. How might I go about doing this? I don't have how to do this. Newbie here.

View 1 Replies

Open A File For Output Or Input Or Even Append ?

Jul 6, 2011

find a way to check if a file exist before opening it or creating it.I know how to open a file for output or input or even append which is what is going to do assuming it exist already.

'all this is inside a button which will open the file upon pressed
'to populate a
'combo box drop down list[code]....

View 3 Replies

Collection Input/output Text File?

Nov 30, 2011

Normal
0
false

[Code]....

This question has been most likely been asked a number of times, but really hitting a brick wall regarding this.

The issue is that at the moment, I have to create a database using text files on VB.

So far I have managed to get the code working to add new customer and browse added records, but stuck on how to output/input back and fore to a text file, to store information, and after this input/output the text file to a DB ( Not worried about this at the moment)

Public Class Customer
Dim CmrColl As New Collection 'Create the new collection. Think of this as an array of objects.
Dim itemCount As Integer = 0 'A variable to help us scroll through the objects later.

[Code].....

View 3 Replies

Communications :: Input / Output Control Board?

May 30, 2010

We learned How to assemble an input/output control board that would connect to your serial port. We were able to use out statements (back in the old gwbasic) to send output signals to the parallel port to turn on/off different outputs. The board had connections where you could connect lights, relays, etc, and had connections where you could attach switches and sensors.

I have been looking for something simple that I can manipulate in my programs. I already have an ActiveHome X10 interface which includes an activex for receiving and sending x10 signals (home automation, turning lights on/off, etc.). I want something that I can straight out connect relays to, and sensors as well. I don't want something that connects to the serial port since that is already being used up, the parallel port would work fine, or even better usb.

View 6 Replies

Finding String Encryption With Given Input And Output?

Jan 17, 2010

I have an input and an output, but i would like to know what how to calculate/find the string encryption in between.

Input: 22ac24c481690dd5d90973c6697624ec
String: ??? Unknown
Output: cc28641637656a42e092b61d3e67af0d

[URL]

View 6 Replies

Input And Output Command Line Arguements?

Sep 11, 2009

I have 2 VB programs that I would like to communicate with each other, but I want them to be separate EXEs. Anyway, the easiest way I figured would be for me to call the one program from the other and then return a result. How do I get this result into another program?

Here is how I want it to work:

1. Start System Information Program (easy)

2. Call a video test program, and send a couple arguments (see below)

3. Receive arguments from the video test (I do not know how to do this, I do not know how to send from the video test or receive from the system information)

View 5 Replies

Input And Output To A Text File Using Console Application

Dec 30, 2011

need an example of a console application that would allow you to input data to and retrieve data from a text file on disk.

View 2 Replies

VS 2008 Redirect Input And Output Of Command Prompt

Nov 27, 2009

Every time I try and redirect input and output of command prompt I have a problem. The debugger itself crashes! Something must really be wrong. What is a good way to launch CMD and send commands to it, receive output.

View 1 Replies

Catch The Input And Output Variable To A Textbox1 For Sending And A Textbox2?

Feb 1, 2010

I am using vb2008.net express, I test vs2005term it work, can any tell me what is the input variable and output variable of this terminal? how to catch the input and output variable to a textbox1 for sending and a textbox2 for receiving when I press send button? is that possible? I attach the example of my question this is a a good source, but it is not relate to my problem: [url]...

View 1 Replies

Compare Two Input Files And Extract The Duplicates To One Output File

Dec 31, 2009

so here is my scenario. I have two input files... both are plain text files. File1 has customer name, customer address and invoice number. File2 has customer name, customer address, invoice number AND a keyline. File1 will only contain some of the records in File2, and it will change daily. I need to be able to compare File1 against File2 and output one file (preferably an Excel spreadsheet) with the info from File1 and the keyline from File2, that matches the duplicated info. I know the basics to get it to work, but I'm not sure what would be the easiest way of doing this... File2 can have up to 100,000 records per day. I'd only need to run it once a day though.

View 6 Replies

VS 2008 - Use Regex Or An Array To Display Some Output From An Arithmetic Input?

Sep 19, 2009

I've to make a program that reads an arithmetical sentence from a textbox, e.g 12.3*34+4*5-3 and then on another textbox identify and display what is the content of the first textbox, for example taking the last ex:

If I have this input:

12.3*34+4*5-3

The output should look like this:

<number>12.3
<operator> *
<number> 34
<operator> +

[code].....

This program should only read this operators like (+,-,*,/).I'm have in mind 2 ways of doing it, one with regex and the other taking the first sentence, put it on an array, then trim it, and somehow get the values of the array and identify if it is a number or a decimal number and if it's an operator and then display it.

The difficult part or the part that i can't conceptualize is how to implement it with regex (it should be easier with a regex format than storing it on a array).I write a bit of code, I used an array to store and then to print the numbers and I used the split function to separate the math operator, but I dunno how to print the operators and the tags.

vb
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Sentencia As String = TextBox1.Text Dim i As Integer Dim arryTextBox() As String TextBox2.Clear() arryTextBox = Sentencia.Split("+", "-", "*", "/") For i = 0 To UBound(arryTextBox) Dim Array As String = arryTextBox(i)

[code].....

Btw, I also have the code to validate the input on the textbox ::wink::

View 2 Replies

Write A Code That Will Let Me Input 2 Alphabets And They Will Output In Alphabetical Order?

Sep 4, 2009

I am writing a program which was pretty easier until I got to a certain part. I need to write a code that will let me input 2 alphabets and they will output in alphabetical order

Ex:
Please Enter alphabet 1: b
Please Enter alphabet 2: a

[code]....

View 3 Replies

Save Application Data (input+output) In A New File Format In Program?

May 16, 2011

I work in an engineering design house and programming is not my actual profession. And I am relatively new to VB .net (previous i had worked in vb 6)

I am working on an in house application. I am coding a simple application in vb .net. This applications takes a few inputs from user and calculates a result. Now I want to implement a simple functionality that user should be able to save the input and results just like most of the windows programs can in a new file format. And user should be able to open the save file when desired.

View 10 Replies

Input / Output Methods And Validation (for Secure Coding) - Read/Write DB Encryption ?

May 16, 2011

I've been trolling for a long time now and have decided to register as I finally have some time to start jumping into VB. The last time I coded VB, the current version was VB 4. I've been out of programming for a good while now and considered myself a beginner (tutorial example coder haha).

My question is: Where is a good place to start learning VB.NET?

I know it's an often asked and answered question - but let me give you a bit more information so more specialized replies might be given.

I'm in INFOSEC/COMSEC and would like to (eventually) develop a program that contains a DB of information that is read by the application and saves input information into a DB (encrypted) as well. The program will be a 800-53 C&A control assessment program; used for tracking system compliance for federal information systems. I would like to be able to develop such a tool to make my life easier at work instead of using Excel spreadsheets to track everything.

I would like to learn:
- Input / Output methods and validation (for secure coding)
- Read/Write DB Encryption (RSA or other 128-bit) for user input information
- Ability to generate PDF reports from the primary keys and data sets from the above DB

My goal is to create a program that allows a user to install the program, setup a 'master' account that a serial/key has been generated for - that master account is then allowed to create new projects (progress saved in DB). A project asks the user certain questions pertaining to information systems and takes the input and saves it into the DB (encrypted). When the assessment is completed, I would like the program to be able to generate a PDF report from the DB (from a layout template I created).

View 10 Replies

VS 2005 Store A Calculation To Use Later And Obtain A New Calculation

Dec 19, 2009

I need to store a calculation to use later and obtain a new calculation

[Code]...

View 4 Replies







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