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
ADVERTISEMENT
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
Apr 30, 2012
I am having problems trying to copy data from one list box to another using mutliple forms an a module for the global variables and arrays. At this point it is telling me that when I select and item form a secondary listbox and try sending it to my main list box it says that I am outside the bounds of the array.[code]...
View 1 Replies
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
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
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
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
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
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
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
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
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
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
Dec 15, 2010
I've searched. I tried this from another post. Didn't work. Second form listbox was blank. Apparently it only sends selected items but I need it to send all.
1Public Sub buyBicyclesListBox_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles buyBicyclesListBox.DoubleClick
2'Sends items from buyBicyclesListBox to cartListBox when double clicked
[Code].....
View 1 Replies
Jul 30, 2010
How i can send data from one form to another form through a network? i'm not asking for the codes, i just want to know what i should do to accomplish this task. i'm conceptualizing a game with the following details:
1.) there are two players, connected through a network
2.) they take turns looking for words from a puzzle of randomized letters
3.) after the given time has elapsed their words are checked and if both players has the same word, the word is removed
4.) the score is tallied
My question is, how do i get the words from the other form? specifically, how can the server form get the words from the client form? is it possible if i use xml? or can the server form access the variables of the client form? (i don't think it can, though)
View 4 Replies
Sep 26, 2009
I am building an class library in VB.NET that i can use in other projects.I want a function in this class library that opens a form that is in the other project.[code]This works, the form is shown in the other project application.But now i want to send some content to the form from my class library.In the other project i have a public sub _getContentPackage(ByVal content as String)How can i send data to that public sub from my Class Library.What i have try is CallByName, but i do not understand that function yet. I only get error messages.
View 4 Replies
Jan 22, 2009
I have a requirements in "Windows form exe" that when we click on the exe, the data from the Oracle database should be exported to another Oracle database and also the data that has been exported should be emailed with excel attachments to intended recipents.
I searched but couldn't get the code as such and also i am not able to implement the functionality.
View 1 Replies
Jul 31, 2010
I have a listbox in my form that gets its values from a data table by data binding. My question is, when the data (row) is loaded it also selects the first line automatically. I do not want this because I want the listbox to select an item only when the user clicks on it. Otherwise, the iteme should ony be listed. Is there a way to manage this?
View 2 Replies
Jun 25, 2010
I want to develop a score card to s small stadium it will have 2 42'' LCD i one lcd i want to put the team's name and score
the lower screen i wan to to elapsed time, remain time and first or second time is it possibel Visual basic 2010 (visual studio 2010 Pro), to display on form in one screen and the other form on the other screen
It must be to setup, so that the user does nothing but to put the name of the team's, the the score?
View 3 Replies
Jun 18, 2009
I'm currently doing an assignment which i have to create a system.I've decided to create a restaurant ordering system, therefore i'm using listbox to display the items.
View 5 Replies
Jun 3, 2011
i have form1 - Form2 and Form3 Form1 appears and i have to pick a color and click the button to go to the form2, then in form2 it shows the color and in form3 too..which is the best way to do this ? My.forms.Form2.SomeCodeHere or just Form2.SomeCodeHere
View 1 Replies
Dec 15, 2011
I have created a web application and have a number of textboxes on a web page. I have created a new class with carries out a number of calculations and if there is no text in the box it enters 0.00 so I dont get a null exception.
[Code]...
View 7 Replies
Mar 3, 2010
how to send all the contents of a ListBox to a MsgBox
View 7 Replies
Oct 11, 2009
When I use this, it sends ALL of the items in the listbox, what do I change to get it only send 1 at a time?
For ListBoxItems As Integer = 0 To ListBox1.Items.Count - 1
SendKeys.Send(ListBox1.Items.Item(ListBoxItems))
SendKeys.Send("{ENTER}")
Next
View 5 Replies
Sep 19, 2010
I need to control a device with a GPIB port. I have the commands that I need to use to do this; but I don't know which is the sintaxis in Visual Basic.
For example if I need to send a instruction like "START:0.01" to the external device which are the libraries that I have to include?, how should I write the programming line to do this?
The main tasks that I need to program are sending data, receiving data, and saving data
View 5 Replies
Apr 27, 2010
I have a multiple form application with a listbox on each form. I want to be able to select an item in one listbox on one form and then click a button and it show up in a listbox on another form.
View 3 Replies
Feb 19, 2010
I need some help sending the contents of a listbox to an output text file. Is there any code is visual basic that will allow me to do this.
View 13 Replies
Jun 16, 2010
I've code this code below:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim hwrRequest As HttpWebRequest = HttpWebRequest.Create("http://www.example.com/web-service.php")
[Code]....
The MsgBox() at the end shows the response, which as I've added to my script, echos the result from the $user and $pass variables which are supposed to retrieve those details being written to the stream above, but they show up empty.
I'm retrieving those values by doing: $user = $_POST["user"]; $pass = $_POST["pass"];
View 9 Replies
Feb 26, 2012
For the past couple weeks I've been tormented by this problem: I am trying to make a program that will go to a specific web site and add things to my cart on that page. I can get the program to go to the page, log into my account, and get to the right product. But, I can't figure out how to click on the ADD TO CART image.
Also, each product page has the main product, with an ADD TO CART image, and at other places on the screen there are other products shown, each with its own ADD TO CART image.I have been examining the source for the pages and here are a couple examples:
[Code]...
How can I click on one of those addToCart.gif images? It looks like they do not have names or IDs for me to refer to them with?
View 2 Replies
Apr 7, 2011
I have create a shopping cart in vb.net, so far i can add items to cart but cant empty or remove items from cart. this is the code I have so far:-
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
<div id="mycart">
<br />
[code]....
View 1 Replies