Mix And Match Discount Code Advice
Jul 20, 2010
I need advice on how to implement. I have two objects ReceiptLine and Discount. Cashier scans item and a receiptline object is added. If the added ReceiptLine object have a Discount Id then, it has to lookup in Discount object and issues discount after validation. I have problem in validation. [code]
View 2 Replies
ADVERTISEMENT
Jul 20, 2010
I need advice on how to implement. I have two objects ReceiptLine and Discount. Cashier scans item and a receiptline object is added. If the added ReceiptLine object have a Discount Id then, it has to lookup in Discount object and issues discount after validation. I have problem in validation. Here is the situation, cashier scans the item as follows
ReceiptLine Objects
line1 ItemId 1835 qty 2 DiscountId 23
line2 ItemId 1515 qty 2 DiscountId 23
line3 ItemId 1835 qty 2 DiscountId 23
Discount Object Id 23
[Code]...
View 2 Replies
Jul 22, 2010
I need to update (well, rewrite really) a SMALL VB6 application which uses ADO to access a JET database, to a vb.net app in Visual Studio 2008. My research suggests that I should use LINQ, but it doesn't seem to be possible to connect to JET. If JET is now deprecated, what should I use? Or should I use ADO.NET without LINQ?
Please don't answer SQL Server! - this needs to be an app that end users can install easily in corporate or non-corporate environments, and must not require any ongoing technical maintenance. I started to install SQL Express, but stopped when it required at least 2 system updates, as that will be far too complex for this little app.
View 4 Replies
Nov 10, 2011
I have handed this assignment in and it works albeit not in the most elegant way. I am taking my second programming class ever and I would love for some feedback and answers to a few questions i have. First, what would be a better way to display the correct image to the corresponding card. Using all those if statements seems ridiculous, but i cant see a way around having card 1 possibly equal each value from every suit, card 2 equal each value from every suit, etc.
Second, my professor wants us to be able to record the seed value so that we could then plug it back in and return the hand that was shown when it was created. i have done this but I am a bit confused. The seed shows up as a value from 0-999, but when you use the combination formula to figure the total possible amount of hands you get over 2.5 million. Since i only have 1000 seed values does that mean that multiple hands might share the same seed value or does that number (0-999) mean something different eache time? Sorry if my explaination seems confusing.
Third, I am always looking for advice on better ways to do things. If anyone has free time and would like to offer constructive critisism I would be grateful.Below is the code. I only left in picturebox display for 1 suit so as to shorten the total amount shown. I also removed code for other buttons and stuff.
Public Class Form1
Private Sub btnShuffle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShuffle.Click
' Variable Declarations
Dim intSuit As Integer ' Row
Dim intCardValue As Integer ' Column
[Code]...
View 4 Replies
May 15, 2009
i am looking into web services to be used for a windows forms application that i want to connect to my website and return data from my database. One thing i am concerned about is security. I have only played with web service a little bit but it seems to allow direct access to it by url and then run the service, showing the results in the browser. i guess i could set it up to accept a password in the code. i guess really if i have to pass in the query criteria to the sql from the application then showing the records in a browser should not be a problem. in my web application for the site i can keep all my web services in the app_data folder for no browser access.
i just need some advice in this area. goods, bads, other options if better. i don't have a full grasp on working this way from a client side windows application.
View 9 Replies
Dec 28, 2011
I'm using this code
[Code]...
I need it to match both 12345 (5 char zip) and 12345-1234 (10 char zip) in 1 single group. Is that possible?
[Code]...
View 1 Replies
Apr 16, 2011
I had actually getting LINQ to work but I am past that now but I was wandering if anyone could help me what I basically have is a DropDownChecklist user control I made and the contents of the list are filled by LINQ getting a list of company names see below:
'Population for company filter box
Public Function GetCompNames()
Using DC As New DataClassDataContext
Dim comp = (From C In DC.Companies _
[code]....
Would you suggest using a public array or something to store the companyID's when populating the first list box? This just came to me at the end of writing this post. Will try this but not sure if its the right thing to do.
View 1 Replies
May 29, 2010
Am trying to match characters or combination of the characters i specify in any order they appears
vb
Regex.IsMatch(teststring "[nuls]")
what i want matched is either any single character, or combination of any of them in any oder. this means that it should not match any character not specified in the pattern.
For example
it should match
n,u,l,s,nu,un,lun, sl etc
not
ny, nx so etc or any other
View 9 Replies
Mar 20, 2011
I have amend my application to calculate 10% discount but dont know how to assign it or the code. i am opposed to assign the code to calculate 10% if the customer is hiring my goods for more than 7 days, but if its less than 7 days i dont want the form to calculate the discount.
View 6 Replies
Oct 15, 2011
how calculate items in different discount
View 6 Replies
Feb 7, 2012
I have a Form with textboxes,combobox and a button to calculate the discount level (comboBox) discount total (textbox), tax total (textbox) and total all these up into the total order (textbox) this is working except the discount total textbox,here's my code i have so far.[code]...
View 12 Replies
Jun 14, 2009
the code below shows an if statement that is determining a customer type and a discount percent for that customer.But when I run the code it only ever reads the first discount percent even though the allocated price range is above the first discount percents range and should therefore give the second discount percent and i cant figure out why it is not using the second discount percent in any of the bronze, silver or gold statements.
[code]...
View 4 Replies
Jul 31, 2009
I'm coding a program, which supposed to give the discount rate of the entered price, so there is as what I got on my code. [Code]
View 6 Replies
Oct 3, 2011
I am having trouble adding a 5% discount to a subtotal of 50.00 or more and then have it display in the discount box and then having the total show up in the total box.
Here is my code.
Public Class GroceryStore
Private Sub CalculateButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CalculateButton.Click
'Calculate totals
Dim subtotal As Double
[Code] .....
View 6 Replies
Dec 1, 2009
I'm having difficulty coding for a trade discount. If the order is made more than 10days in advance the customer is entitled to 5% trade discount.
[Code]...
View 2 Replies
Mar 11, 2011
How do I calculate a 15% discount in visual basic in when creating a windows application.I have two radio buttons Yes and No and when yes is selected a 15% discount is subtracted from the total price.So would I just say 15% as 0.15 or should I name the 15% as a constant?
View 2 Replies
May 1, 2011
I made a hotel quote form where I want to add a discount box where the user can enter a percentage discount off the total price. What is the code to do that? [code]
View 11 Replies
Jun 16, 2011
I need a code that will load text, the correct image to match it and the command for each image. what i want to do is make a program that will download a swf and an image into to folders. then at startup the program will load all the swf and images and put the images into a listview so when you click on the image for the swf file it will give the link to the swf so it can be loaded.
View 1 Replies
Jun 8, 2011
I am using visual basic 2008 amd creatomg a datagrodview format like below [code] Now I wnat to get total balance in total column after less discount in percentage with ENTER EVENT proceedure and get the whole total column balance in a textbox i.e Net BalanceTextBox. Please tell me how to calculate discount in percent % and get total in total column and also tell me how to move cursor in next cell instead of bottom row in datagridview.
View 2 Replies
Mar 15, 2010
I am trying to create the below matrix in my vb.net so during processing I can get the match scores for the alphabets, for example: What is the match for A and N?, I will look into my inbuilt matrix and return -2 Similarly, What is the match for P and L?, I will look into my inbuilt matrix and return -3 how to go about it, I was trying to use nested dictionary like this:
Dim myNestedDictionary As New Dictionary(Of String, Dictionary(Of String, Integer))()
Dim lTempDict As New Dictionary(Of String, Integer)
lTempDict.Add("A", 4)
myNestedDictionary.Add("A", lTempDict)
The other way could be is to read the Matrix from a text based file and then fill the two dimensional array.
View 3 Replies
Mar 2, 2010
I have the following code
TestArray(0) = "<RD><PS:CL><JL:Jump,""(.*?)"">"
TestArray(1) = "<RD><PS:CL><JL:Jump,""(.*?)"">(B)(.*)"
TestArray(2) = "<RD><PS:CL><JL:Jump,""(.*?)"">(C)(.*)"
Do Until xRead.EndOfStream
'do stuff here here with test array(i)
'do stuff here here with test array(i)
'do stuff here here with test array(i)
'do stuff here here with test array(i)
i = i+1
loop
I would like it so that instead of "Do Until xRead.EndOfStream" I would like to read the file line by line until a match is found, then add +1 to i and repeat.
View 4 Replies
Sep 11, 2010
My app retrieves "Place names" and their "Addresses" from a website.
View 2 Replies
Aug 1, 2011
I have :
[Code]...
I think I have explained my problem properly..
View 2 Replies
Dec 13, 2011
I have a RegEx I am using in vb.net and i can get all the matches of the text but i want to get the first match of the text, this is what i am using.
[Code]...
View 1 Replies
Mar 26, 2012
I'm using the following VB.net Code to find phone numbers in HTML and make them "clickable":
Regex.Replace(pDisp.Document.Body.innerHTML, "([0-9+ ]{3,6}[s]{1,1}[0123456789 -/]{4,15})", "<a href=http://DIAL/$1>$1</a>")
There appears an issue if the numbers contain white spaces, for example:
089 12233 455
This will be replaced with:
<a href=http://DIAL/089 12233 455>089 12233 455</a>
Is there a way to get
<a href=http://DIAL/08912233455>089 12233 455</a>
instead?
View 3 Replies
Oct 24, 2011
I have a mvc 3 app that uses EF. In one function I need to get a count of rows that match a statement. I thought I could just do it like this:
Dim _ClassCount As Integer = _CurrRegistrants.Where(Function(c) c.tues_class = _CurrCourse.course_ref).Count
But that stays at 0 even when there are 40 records that match the criteria.. I think I have the right idea I just need to change the syntax a little..
Dim _CurrRegistrants As List(Of reg_classes) = db.reg_classes.ToList
For Each Course In _courses.Where(Function(a) a.course_day = "Tuesday")
Dim _CurrCourse As cours = Course
[Code]....
View 1 Replies
Apr 17, 2011
The quick brown fox jumps over the lazy dog" is an English-language pangram, alphabet! that is, a phrase that contains all of the letters of the alphabet. It has been used to test typewriters alphabet. and computer keyboards, and in other applications involving all of the letters in the English alphabet.I need to get the "alphabet." word in regex. In the above text there are 3 instances. It should not include "alphabet!". I just tried regex with
MatchCollection match = Regex.Matches(entireText, "alphabet.");
but this returns 4 instances including "alphabet!". How to omit this and get only "alphabet."
View 3 Replies
Nov 3, 2010
if i have 12 textboxes and i want to make sure none of them contain matching text (and no i don't trust the user to do this :P ) how would i go about this?
View 3 Replies
May 11, 2012
I have a textbox and a rich textbox, all I want to do is if the field in textbox1 matches any field in richtextbox1 then display a label.
Normally I would try
If Textbox1.text = Richtextbox1.text then
label1.text "Field match"
however this wont work as there are many fields in richtextbox1?
View 6 Replies
May 19, 2010
im making a tile slide game and im stuck . im trying to find out if the images are in the right place. how would i check to see if the images are in there respective picture-boxes?
View 3 Replies