Retain A Value From A Textbox And Add To It?

Nov 15, 2011

My assignment is to create an application that allows the user to type an item's price into a single textbox, add the price to the previously entered prices, and display the total charge which includes a $15 shipping charge and a 3% sales tax.Example: I type 10 in the textbox and click calculate. the subtotal (before tax and shipping) reads $10. Next, I type 20 in the textbox and click calculate. The subtotal should now read $30.I have everything working fine except adding the different prices. I cannot figure out how to retain the value of the subtotal and add it to the next value entered.

View 2 Replies


ADVERTISEMENT

Retain Edited Textbox Value After Submit?

Nov 24, 2011

I reloaded ny page with previous data that was available for my login.Now i try to edit the textbox and update .It either updated or doesnt retain the edited value in Textbox.[codd]e...

View 2 Replies

Retain TextBox Line Breaks In Winforms After Assigning Text To A String Variable?

Oct 3, 2011

I have a WinForms app with a multi-line textbox. This displays and retains (after loading from the DB) line break characters fine. However if I assign the TextBox.Text value to a string variable and then re-assign the variable back to the TextBox.Text property, the line break characters are lost and replaced with a square character (can't past them here as they just paste as a line break!)

[Code]...

View 3 Replies

Add / Remove Items And Retain?

Aug 20, 2010

I am using ListViews for easy drag-n-drop, But I need the User to be able to 'permenantly' add or remove items.[code]...

View 3 Replies

Edit And Retain Variable Value?

Apr 15, 2009

I'm trying to write a small program to produce costing quotes, so I thought I'd assign variable to all of the individual costs, problem is the cost of things change as we all know. So I set up a dropdown box listing costs a textbox and a button... Idea being ...

Exit Sub
ElseIf MaterialsCMB.Text = ("White Vinyl") Then
wvCos

[code].....

View 12 Replies

Retain Checkedstate Of A Listbox?

Sep 20, 2010

I am populating a listbox from a table called "TableA" and if item is checked in the listbox it is saved in another table called "TableB"

For i = 0 To listbox1.Items.Count - 1
If listbox1.GetSelected(i) = True Then
rs.addnew ..........' (in TableB)

[code].....

View 10 Replies

VS 2008 Hwo To Retain A Vlue

Feb 24, 2011

i have to retain my values so i can use it again but somehow it wont work in my case.[code]

View 18 Replies

Forcing A PictureBox To Retain Its Image?

Oct 7, 2009

My pictureboxes sometimes clear of all drawings when they are done creating the image, or sometimes halfway through. Calling GC.Collect() before the drawing starts lets it draw MORE before it clears, but how can I stop it from clearing entirely?

View 2 Replies

How To Retain Data Across Multiple Forms

Sep 8, 2010

I have an vb.net windows application set up. It has multiple forms, about 6 in all. There's a main menu form, and then 5 other forms to collect data. The user will collect data on each form and bounce back and forth between forms. How do I get the forms to retain the data that has been entered into the text boxes and/or other controls on the forms? For example, they might fill out a few textboxes on a form, but then need to go to a different form and fill something out and then back to the previous form. Right now, when they come back to the form, all the data previously entered in to the text boxes is gone.

View 7 Replies

Retain Value In Variable After Application Closes?

Apr 22, 2009

I want to retain a value in a variable even after the application closes so the next time i open the application i can get that value.It's actually an integer value, i want to count the no. of times the application has been opened. I tried using static [b] but it doesnt work.

View 8 Replies

Retain Values In Select Multiple Box?

Oct 28, 2011

I have a javascript function below to move from select multiple box A which is populated from database to another multiple select box B, in the event of a postback my values in B which are moved over from A got lost. Initially I thought because I included a "runat="server"" tag for server side actions but apparently it's not the case. I read about Form.Request but ain't have a clue how to go about it. I just need to retain those values in multiple select box B.[code]...

View 1 Replies

Unable To Retain Data In DataRepeater?

Nov 24, 2009

I am manully adding data to DataRepeater, but once scrolling up and down, the data is vanished. I have only a text box in the item template.

DataRepeater1.AddNew()
DataRepeater1.CurrentItem.Controls("txt1").text="yehaa"

View 3 Replies

Asp.net - Change And Retain DIV Selected Tag In Master Page?

Oct 24, 2010

I have a CSS class called selected which highlights the DIV as the current step. When they're all in separate pages, I just had to move the selected word to the next DIV.But how can I achieve the same in Master Page VB .Net? It seems to be one page for all. When the next page loads, how do I get it to highlight the next step?

[Code]...

View 1 Replies

Use The Tab Key To Exit And Retain Current Cell In DataGridView?

Jan 26, 2012

In my form there is a DataGridView, the user select information in the DataGridView then there are text boxes that needs to be filed in. So this is what needs to happens if the focus is on the DataGridView when the user hits the Tab key it moves the focus to first text box. Then once the user hits the last tab box it returns focus back to the DataGridView but to next cell. Initially figured this would not be a problem and did this code;

Dim PreviousCell As DataGridViewCell
Private Sub DataGridView1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles DataGridView1.KeyDown

[code]....

View 3 Replies

Allow Labels In Disabled Panels To Retain A Their Prominent Forecolor?

Oct 19, 2011

I need to allow labels in disabled panels to retain a their prominent forecolor. So, I am considering replacing all labels in panels that become disabled with LinkLabels. By disabling the control and setting its disabled color to black it holds the color. However, I have always been of the opinion that one should use the lightest control possible.

View 3 Replies

Display CheckedListbox Values Into Listbox2 And Retain CheckedState?

Dec 13, 2010

What i am trying to achieve is that if listbox2 contains checkedlistbox1 items then checkedlistbox1 should retain checked state even after the from is closed and re-opened again.

Since i am saving the checkedlistbox1 values into a Table - is it possible to bind those to retain the checked state even after the from is closed and re-opened again - or it can be done comparing the values from both listboxes [code]...

View 2 Replies

Retain Executing Thread's Context During Call To QueueUserWorkItem In ASP.Net?

Nov 17, 2011

We have an ASP.NET application that queues some of its long-running operations (generating reports, for example) into the ThreadPool using System.Threading.ThreadPool.QueueUserWorkItem.

We run the ASP.Net application pool using a specific domain service account so that it can access remote resources, including files and databases. When the execution starts in the ThreadPool, the user identity of the thread is set to Network Service, which doesn't allow us to access the remote resources.The web application can be accessed by users in different countries simultaneously and the format of the data that we provide to each user is based on their culture settings (using the standard globalization settings in web.config). When the queued thread is started, it has also lost this information and reverts to the default culture for the operating system.

Now, we can probably get around most of these issues by capturing the current user identity and culture in a state object and passing that to the background worker, then impersonate the user and set the culture on the thread, but this seems like a very "unclean" way to resolve this issue.[code]...

View 2 Replies

Retain Field Values On Error In A Dynamic Gridview?

Jun 7, 2011

I have a page which has a GridView on it, which is populated from a database. Some of the columns in the GridView have text boxes, as well as Checkboxes.When the user saves the page, the page may error if they have not entered their data correctly. At this point, I need to re-display what they have entered already so they can simply make the correction instead of having to change everything from scratch again.

View 1 Replies

Retain Row Attributes In A DataGridView When User Sorts By A Column?

Oct 20, 2010

I have a DataGridView, bound to a dataset. All the columns are sortable (.ColumnSortMode.Automatic). The user may change data in certain columns, although not the first ("key") column. When data gets changed on a row, I change the backcolor for that row (to show it as dirty). At some point, the user will do something with all of these changes.

My problem is that I still want the user to be able to resort the data by any of those columns. When it's sorted, though, I lose the backcolors that I changed. I do know which rows are dirty, this is just a cosmetic issue. Isn't there a way to retain those backcolors, or any other such row attribute?

View 6 Replies

Retain Datagridview Cell Backcolor And Forecolor In Excel After Exporting From

Feb 20, 2009

i've a datagridview control populated with records from database. i've formatted certain cells of datagridview according to a condition. (i mean i've set the fore color and back color of cell). But when i export these datagridview contents to excel 2003, no cell colors will be appearing.

i'm developing desktop application with vb.net 2008 and excel 2003.

View 1 Replies

Retain Datagridview Cell Backcolor And Forecolor In Excel After Exporting From?

Feb 20, 2009

i've a datagridview control populated with records from database.i've formatted certain cells of datagridview according to a condition.(i mean i've set the fore color and back color of cell).But when i export these datagridview contents to excel 2003, no cell colors will be

View 3 Replies

Label Properties - Store The View State Of A Page - Labels To Retain Their Colors

Oct 15, 2011

I am developing a windows application, how can i store the view state of a page in vb.net. i have 12 labels on a page and when i click on each label the color of the label changes to black, what i want is when i come back to the same page, i want the labels to retain their colors....

View 1 Replies

Open File Retain The Directory Of The Last Opened File?

Jan 10, 2010

So I open files and do whatever with them right. I've set the initial directory to equal the last directory, but whenever I open multiple files, it never sets the directories properly. It acts as though nothing was opened there, so it takes the previous directory as the last one. Thoughts on what's not working? Here's the code.

Code:
With FileOpenDialog1
.InitialDirectory = LastDirectory
If .ShowDialog = DialogResult.OK Then

[code]....

I have multiselect enabled earlier and everything else works but this. When you open a single file, the last directory works fine. It only happens with multiselect.On another note, does anyone know why it freezes when I try to do a lot of files and use another program? I opened 700+ files to see what would happen. When I switched to a IM convo, it froze. When I left it to run, it worked.

View 3 Replies

Security - Textbox On Form - User Inputs Data ( During Runtime ) Data Remains In Textbox For Good And Textbox Becomes Read Only ?

Jan 8, 2010

Is it possible to have a Textbox on a form that when the user inputs data, ( during Runtime )that data remains in the Textbox for good and the Textbox then becomes read only ? Is it also possible to make it so that the CD with the programme on, is in the PC when the programme is being used. Perhaps writing the Textbox data back onto the CD ?

View 1 Replies

Detect If Press Enter In The Textbox Change Event And Not In Textbox Keypress?

Dec 13, 2011

how can I detect if press Enter in the Textbox Change event and not in Textbox Keypress?

View 3 Replies

Drag And Drop Em Um Textbox Para O Mesmo Textbox Com Scroll Automatic

Aug 24, 2009

Tenho um Listbox com 70 linhas. Fa no Listbox um Drag do ltimo item para mov-lo para o primeiro item, entretanto quando o mouse atinge o alto do Listbox a lista n vai para cima automaticamente. Algu sabe como fazer isto? Obrigado!Lindolfo

View 1 Replies

Moving A TextBox - User Will Have To Move A (selected Textbox) By Clicking A Button

Feb 11, 2010

I am building an app. that needs some input from the user, the user will have to move a (selected textbox) by clicking a button. The TextBox will have to move 20 points down or up from corent location by clicking a button.

View 10 Replies

VS 2008 Make A Textbox Change Some Letters Within Textbox When Click A Button

Jun 29, 2009

I want to make a function in VB 2008 with which u can make a textbox change some letters within the textbox when u click a button. So example: Textbox1 has got in it: url...Then when I click button 1, it has to change ....

View 8 Replies

VS 2010 Take Multiple Lines Of Data From Textbox Split And Organize Them To New Textbox

Feb 18, 2012

i need to take data input from a textbox such as this

[Code]...

and get it so i push a button and it seperates it out so it adds and looks like this inside a display field

[Code]...

View 6 Replies

.net - Decimal.TryParse Is Failing On TextBox.Leave And TextBox.LostFocus?

Dec 22, 2010

I have a TextBox in a Windows Forms application in VB 2008 (.NET 3.5) where a user can key an estimate amount. I am allowing them to key dollars and cents, and I want to round to the nearest dollar. The original code had the rounding down when the data was written back to a table, and that worked fine - I have this code in a "Save" routine that fires when the user moves to a different screen or record:

Dim est As Decimal : Decimal.TryParse(txtEstimateAmount.Text.Trim, est)
Dim estimatedAmount As Integer = Math.Round(est)

I decided that it might be nice to actually do the rounding as soon as they leave the field instead, so they're not surprised when they reload the screen and find that 1822.60 is now 1823. So I took the exact same code and added it to the TextBox.Leave event handler. And the weirdest thing happened: instead of the variable est being populated with 1822.60 after the parse, it gets set to -1! What the...?

Debugging the handler shows that the value goes into the parser correctly, and if I do the parsing manually via the Immediate window, it parses correctly, but when I let the code do it, it invariably gets set to -1. What's even weirder is that any number gets parsed as -1, not just decimals, and any non-number gets parsed as 0 (which is correct).

Has anybody else ever run into this before? I tried moving the code to the TextBox.LostFocus event instead, but with the same results. I have no idea what in the heck is going on, and obviously there are workarounds galore for this, but it just makes no sense whatsoever.

EDIT: Here's the full event handler (current behavior for which is to put -1 in the TextBox):

Private Sub txtEstimateAmount_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtEstimateAmount.Leave
' Take any dollars-and-cents amount and round to the nearest dollar
Dim est As Decimal

[code]....

View 2 Replies







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