Application Like A Shopping Cart - Global Variable?

Dec 27, 2011

My project is to create a shopping cart application. I have my main form and from there the user can go to two different forms to add books to their cart, the cart being the main form. This all works. What I can't figure out, is how to use global variables for the prices, shipping, tax and updating the total. I have places for this information to show up on the main form, and I've created a module for the calculations and prices, but I don't know how to code it to get the prices to show up in the specified areas.

View 3 Replies


ADVERTISEMENT

Create A Shopping Cart Application?

Apr 30, 2010

I am working on a class project and I am trying to create a shopping cart application. I need to transfer info from listboxes on 2 forms to the main form and calculate the charges for "the books." I am having a hard time writing the code to properly transfer the items and I really have no idea where to start with the calculating the charges for subtotals of the selected books.

View 3 Replies

.net - ASP.NET Shopping Cart?

Feb 7, 2011

I am in the middle of building a very simple shopping cart in asp.net with a VB backend but I am running into problems with my code. When I run my application and try to add a product to the cart I get an error message.

Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:

Line 27: Dim blnMatch As Boolean = False
Line 28:
Line 29: For Each Me.objDR In objDT.Rows
Line 30: If objDR("StockItemName") = Product Then
Line 31: objDR("Quantity") += txtQuantity.Text

I am not sure why it is doing this and was hoping that perhaps someone could take a look and offer up some advice? I have checked over my code and I cannot find anything wrong however I would take any guidence that you may have on it.

[Code]...

View 1 Replies

Shopping Cart App In VB Using Arrays?

Mar 3, 2008

I am trying to create a shopping cart in Visual Basic. I have most of it figured out. However, when I click the Add Cart button, the item will add; however, when I add a new item, it will not go to the next line to display it. It instead replaces the first item I added. For example if the user chooses 1111 for the part number and qty is 2 then clicks the Add to Cart button, the following will show in a group box below: 1111 Alarm Clock 2 $19.95 $39.90

If the person wants to add part number 2222 and qty is 2, that relating info should show up below the first entry of the Alarm clock. In my code, it's not doing that, it's just replacing the first line (alarm clock entry). However, it is keeping track of the total amount added to the cart.

Here is my code that I have done for the Add Cart button:

Private Sub xAddButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xAddButton.Click
Dim searchFor As String

[Code]......

View 4 Replies

Shopping Cart Gridview

Jul 28, 2011

I am building a shop (without payment)

i.e.

1) Select Products
2) Checkout
3) Confirmation

The selecting products screen will look like a gridview which will display.

name price quantity
Text Text Input box

So i.e. lets say I have 10 products per page so i.e. 10 quantity input boxes per gridview. And then I have 2 Buttons below my gridview i.e. Update and Checkout. Just even worrying about Update for now. How could that work i.e. would I have to check every input box in gridview for which a value was entered ?

I.e. is there any example how I can loop through gridview row check for a value which is greater than 0 or null for example and if there is a value then perform a function like [Code]

View 2 Replies

Add Running Total To Shopping Cart?

Dec 4, 2011

I've created a program that pulls item prices from a database. The problem I'm having right now is that I'd like to display a running total, as the program currently only displays the list of items and their prices.

Private Sub btnGoToCart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGoCart.Click
Me.Hide()

[Code].....

View 1 Replies

Placing Items From Listbox To Shopping Cart?

Nov 14, 2011

How can I get the items in my code from my listbox which is called "selectListBox" to a shopping cart called "cartlistbox", when the add button is clicked?

Public Class MainForm
Private Sub MainForm_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

[Code].....

View 5 Replies

.Net Shopping Cart Session Accessible Across Different Browsers By Different Users?

Dec 1, 2011

Using following method to create Shopping Cart Session [URL]Now running locally on my machine where sessionstate mode is inProc by default, all seems to perform fine.I'm writing an application which I've just placed up on hosting provider (shared hosting environment etc). Their default sessionstate is stateserver so I had to serialise the classes to fit in with this. It's using cookies.The basket (adding,removing etc) works fine but I'm seeing some odd things happen regarding the persistency of the session.

On my local machine, if I access the site in 2 separate browsers, if I add items in IE, I can see them in Firefox when I refresh. This doesn't make any sense to me since cookies are per browser.Plus I thought that when a session was generated, its id would be unique so there is no way that one user should be able to see anothers session data (unless tabbed in same browser perhaps)Even worse, if I start adding/removing items in IE and doing likewise in Firefox, both of them show very random cart results every time you refresh the browser.

View 1 Replies

Attempting To Create Shopping Cart Remove Button?

Mar 20, 2012

Note: This code actually codes from a tutorial book I'm reading at the moment, so you can imagine this is frustrating me greatly! I'm building a basic shopping cart, using VB.NET 4, Visual Studio 2010 and MS SQL Server R2 2008. The code below is supposed to remove items from the cart, by reading a session variable, editing it to remove the appropriate ProductID and return the amending string to the session variable. It is then supposed to rebind the data to the gridview (gvCart) to refresh the data...but it seems here there is an error.

Every time I build the site in Visual Studio, it validates fine. But every time I run the site, and attempt to use the remove button it gives me the error:Incorrect syntax near ')'.ith the IDE pointing me toward the final parenthesis

Protected Sub gvCart_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles gvCart.SelectedIndexChanged
'This method is hooked to the Remove button & is removing items from the cart

[code].....

View 1 Replies

ASP.NET Populate Gridview Textfields With Values From Session Shopping Cart

Aug 5, 2011

I have a gridview as follows

<asp:GridView ID="productListTable" runat="server" DataSourceID="srcProductListPerCustomer" AutoGenerateColumns="False" AlternatingRowStyle-CssClass="tr_dark" HeaderStyle-CssClass="header_req"

[Code]....

And it actually seems to work on first instance (altho im not sure the above is a good way to do it, but the problem is when use the pagination on the gridview I get the error

Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index

On the line
Dim productId As String = productListTable.DataKeys(i).Value

why I am getting this error and also is there a better way to do it ?

View 1 Replies

Shopping Cart Sending Data From Listbox To Another On A Diferent Form

Apr 26, 2012

i havent had problems in visual basic all the ay up to this point. I have been given a shopping cart program that I must use: a MainForm, MP3From, AlbumForm, and a module

I finally got my program to send data from the listbox on my MP3Form to the listbox on my MainForm but something isnt right still. I need to be able to click an an item from the lstMP3(listbox on MP3Form) to lstShoppingCart(listbox on MainForm) multiple times without having to close the MP3Form everytime to add the items to lstShoppingCart. Here is what I got so far on my MainForm:
[code...]

This assignment makes me mad cause we have not even covered half the stuff I am having to use in this form at all this semester. If i can get a little explanation on instantiate, inheritance, and declaring and object variable and how its used to transfer data from one to the other.

View 3 Replies

Getting Program To Automatically Calculate The Subtotal Every Time An Item Is Added To The Shopping Cart List

May 1, 2012

I am working on a project for a class, and am having trouble getting my program to automatically calculate the subtotal every time an item is added to the shopping cart list. I've tried sub procedures and functions, but I can't seem to get it to work.

[Code]...

View 4 Replies

Defiine A Global Variable For The Whole Application?

Aug 26, 2009

How do I defiine a global variable for the whole application so that it does not have to be defined in all the forms that need it.

View 6 Replies

What Is Different Between Global Variable And Public Variable

Jul 15, 2010

What is Different between global variable and public variable?

View 1 Replies

.net - Value Of Global Variable Won't Change

Dec 22, 2011

I have a variable whose scope needs to be global, because it needs to be called in a function as well as in a button press. So I declared the variable in a Module so it would be global.The problem is that the value of this variable needs to be equal to the value of the text property of a textbox in the form.You enter a string into the textbox, in this case I entered "Hello". Then you click the button and it displays what you wrote.You click OK in that message box and change the value in the textbox. In this case I changed it to "Goodbye". Then I hit the button again, but the variable did not change values and the messagebox displays "Hello" again.

[code]....

Here is the entire source code:

Module Module1
Public strDataValue = frmTest.txtDataValue.Text
End Module

[code]....

Note: This is just a demonstration of a problem I'm having in a much larger program so the variable does have to be global.

View 4 Replies

Access A Global Variable In C#?

Sep 21, 2011

If we declare a global variable in module in vb.net, we can use that variable in anywhere in project.

How can we achieve same thing in C#.

Previously when we tried to convert a vb.net project to C#, we succeeded in removing the syntax error but we can't access global variable in a form.

I need some solution or guidance. Where I am making a mistake?

View 7 Replies

Can #Const Be A Global Variable?

Feb 6, 2010

VB2008: I would like to set a #Const value in a module and use it throughout my project. Is this possible? It appears that the #Const scope is limited to the function it's in.

View 5 Replies

Create A Global Variable?

Oct 11, 2010

How Can I create a Global Varibale for my vb.net project. When I LongIn I want to keep the user Id in a varible and I will Use it in deferent Forms. And The User name will be saver in the varible untill I close the Software.

View 1 Replies

Declare Out Global Variable?

Nov 11, 2010

how to declare out global variable? i tried out but get error.. below is my orginal code

[Code]....

View 1 Replies

Global Variable Across All Machines?

May 31, 2009

I'm focusing on Networking programming and I had found something that was very interesting to me in Remoting, which is the ability to have some how a "shared global variable accross applications" ... Here's a quick example of what I'm saying (which is stripped and modified from one found example on internet):

In the Remoting class:

Code:Namespace remoteclass Public Class xx Inherits MarshalByRefObject
Public Shared_Var As String 'This is our share variable
End ClassEnd Namespace

[Code]....

I found that I can eaisly use this red-marked variable (Shared_Var) acrross all application clients without any extra line of code to update its value ... without using even what is called "singlecall" and "sigletron".

But I have concerns:

1) This is only applicable for simple types of variables (e.g. string and integer) but an array or DataTable for example are not updated! and I don't know why!!

2) Would that load the communication network (I mean the content of these shared variables (few KBs to 1MB) will always be communicated across machines all the time without any management) ... Actually I don't how this works from inside, Does it update on change or cyclic ...

3) And finally, can I found something like this in WCF?

View 2 Replies

Global Variable In Asp.net Website?

Dec 22, 2010

I'm wanting to declare a variable as below for use in several pages on my site. I assume rather than declaring it once per page I can do it globally? I've tried it in a class (app_code folder) and in the global.asax page but my code can't seem to find it. I may be going abo9ut it all wrong though? Code as below...

Dim myUser As MembershipUser = Membership.GetUser()

So basically as it stands my pages can't find the 'myUser' variable.

View 4 Replies

Global Vs Local Variable

Mar 22, 2010

I'm writing a subneting calculator in VB.NET.I'm using the IDE SharpDevelop.Well my problem is I'm using a function to do some calculations and then to figure out the class of the IP addresses.Well I pass a variable from the subroutine, that is accessed when a button is clicked, to the function then the variable is passed back to the subroutine and then the variable is passed again to another function but when it reaches this second function it doesn't retain the value it was given in the first function.I'm not sure if I'm just passing the variable wrong or if this is how it works.I know I can make this work probably by using global variables but I'm not sure if this is proper. So my ultimate question is what is the difference between local and global variables besides just scope and should I try and use one more than the other.

View 4 Replies

How To Define Variable As Global

May 14, 2009

I have no idea as to how I can define a variable as "GLOBAL" in VB Express 2008. I used VB V 3.0 and if I remember correctly the statement "Global varName as Integer" allowed me to use the variable across different forms. I've tried the statement "Public varName as Integer = 0" on Form1 but Form2 tells me the variable is not declared.

The statement (in Form1) "Form2.Label1.Text = CStr(varName)" displays the value on Form2 in Label1 but I cannot then use the value again in Form2, e.g. "Label2.Text = Label1.Text". How I can transfer a variable value from one form to another and manipulate that variable in the second form?

View 4 Replies

Loading Value Into Global Variable

Jan 13, 2010

I have a problem to load a value into a global variable, I am using VB Net (2005) in Windows Forms, this is a multi-Forms program. Here is my problem, as I start my program, it check if my form "Setup Option" has been loaded ounce, if it did it, it does skip it. When "Setup Option" is loaded the first time I have written 2 values into 2 textboxes using My. Settings and on form Closing it does work, if I re-open "Setup Option" form I can see the 2 values in the textboxes E.g.: txtGst.text=5, txtPst.text=6.5, so good so far. Now what I would like is to be able to use the contains of them 2 textboxes and place them into global variables, I already have a Module "modGlobals.vb".

View 2 Replies

Pass A Global Variable From A Dll To A Exe?

Sep 20, 2010

How can i pass a global variable from dll project to a exe file, after this i want to run the exe also from the dll.

View 9 Replies

To Make Variable Global?

Jul 28, 2009

Private Sub NoteTabToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NoteTabToolStripMenuItem.Click
Dim NewTab As New TabPage

[code].....

View 6 Replies

Use Of Global Variable In SelectCommand`?

Apr 1, 2011

I have set a global variable in a module, which I then set the value in form1.I then wish to use this in form 2 in a Select Command for a dataadapter, it however says the variable is not declared although if I call it in a MsgBox on loading form2 it tells me the variable.

My code for the select is:
Me.OleDbSelectCommand1.CommandText = "SELECT Amount, [Record Number] FROM [" & _
"Test] WHERE ([Record Number] = ?)"

[code].....

View 6 Replies

Assigning Variable To A Label In Global?

May 11, 2011

I'm working on my final for VB.NET, and maybe it's just late...but here's how it goes. I need to make a variable named intMoney and it will be used to keep track of how much money you have and the value will be displayed in a label. Since this 'game' will have a lot of things going on, it needs to be available in a lot of places, not just one click event.

But I need to set intMoney to a starting value of 200 and then assign intMoney to a label called lblMoney. I can't assign intMoney to lblMoney in global. I get build errors. Where should I put the lblMoney.Text = intMoney?

View 8 Replies

Create A Combobox As A Global Variable?

Jul 28, 2011

Where and how do i create a global variable for a combobox? I need to use it on different forms.

View 6 Replies

Declare A Global Variable And Access?

Jun 21, 2010

I need regarding declarations of global variable.. I created a module here is the script.

[Code]...

and then I set the value of that variable in my Login form and then my PROBLEM is when accessing it on the my Main form and I want to display the data of that variable in a textbox, the variable does'nt hold the value that I already set. I'm waiting for replies!

View 2 Replies







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