Reverse auction software

Charles Purchasing Certification Blog: Reverse Auctions on the Cheap Yesterday, a guest blogger on Spend Matters posted a step-by-step method for conducting a electronic reverse auction – actually, I would consider it more of an online negotiation – without buying any new software. A Big Ten University Saves $675000 Using Reverse Auction to The savings were realized using eDynaQuotes (www.

edynaquote. com) proprietary reverse auction software which enabled this university to procure a coal contract from energy suppliers in a highly competitive process.

The Optimum: Pursuing Software Excellence as a Strategy For example, there was FreeMarkets which tried to move from a strategic sourcing consulting company powered by new reverse auction technology to a software company with the launch of FreeMarkets ES. There was also ATKearney which set up

I want to build a program in visual basic that will prompt a user to state their bill total, and it will let you input the bill total into the program about 6-8 times and will total all bills for that month. I have the code that i started with and I just want to be able to add the total after all bill's have been entered....Can anyone help me with this? If so just lemme know if you'd like to see the code....


I need code or a program that creates an invoice that I can use to create billing invoices to give to clients thanks :) oh and one more thing if it is a program you are all going to provide to me I Don't Want to Pay For It....... I was wondering if anyone could give me a few free program to download that don't have a trial


Somehow I have gotten lost in the 7th week of class. I have an assignment to wrtie a visual basic program and I know how to create the form. Can anyone help? Here it is: A fast food vendor sells pizza slices ($1.75), fries ($2.00) and soft drinks ($1.25). Wrtie a program to compute a customer's bill. The program should request the quantity of each item ordered in a Sub procedure calculate the total cost with a Function procedure and use a Sub procedure to display an itemized bill. I have the form completed and I know I have to define variables for each textbox and for the receipt. I am lost on how to go from there. My internet was down for a few weeks and I missed out on a lot. If anyone can help please help me. I just need a little coaching to get back on track. Thank you for your help. Expertaz - thjis is a great program but we haven't learned the null part yet I have to do it by defining the variables with a Dim statement, then use a sub procedure to get the quantities and function procedure to add the amounts and a sub procedure to make the receipt. Thanks for your help
by expertaziz @ January 1, 2010 5:28 pm
Private Sub cmdCalculate_Click() If IsNull(Me.txtQtyPiza) Or Me.txtQtyPiza = "" Then Me.txtQtyPiza = 0 End If If IsNull(Me.txtQtyFry) Or Me.txtQtyFry = "" Then Me.txtQtyFry = 0 End If If IsNull(Me.txtQtySoft) Or Me.txtQtySoft = "" Then Me.txtQtySoft = 0 End If If Me.txtQtyPiza = 0 And Me.txtQtyFry = 0 And Me.txtQtySoft = 0 Then MsgBox "No Bill for 0 Purchase Value" Me.txtQtyPiza.SetFocus Me.txtQtyPiza = Empty Me.txtQtyFry = Empty Me.txtQtySoft = Empty Exit Sub End If If (Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0) Or (Me.txtQtyFry - Int(Me.txtQtyFry) > 0) _ Or (Me.txtQtySoft - Int(Me.txtQtySoft) > 0) Then If (Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0) Then Me.txtQtyPiza = Empty Me.txtQtyPiza.SetFocus Exit Sub End If If (Me.txtQtyFry - Int(Me.txtQtyFry) > 0) Then Me.txtQtyFry = Empty Me.txtQtyFry.SetFocus Exit Sub End If If (Me.txtQtySoft - Int(Me.txtQtySoft) > 0) Then Me.txtQtySoft = Empty Me.txtQtySoft.SetFocus Exit Sub End If End If Me.txtTotPiza = Me.txtQtyPiza * Me.txtRatePiza Me.txtTotFries = Me.txtQtyFry * Me.txtRateFry Me.txtTotSoft = Me.txtQtySoft * Me.txtRateSoft Me.txtTotalBill = Val(Me.txtTotPiza) + Val(Me.txtTotFries) + Val(Me.txtTotSoft) End Sub Private Sub cmdCalculate_GotFocus() If IsNull(Me.txtQtyPiza) Or Me.txtQtyPiza = "" Then Me.txtQtyPiza = 0 End If If IsNull(Me.txtQtyFry) Or Me.txtQtyFry = "" Then Me.txtQtyFry = 0 End If If IsNull(Me.txtQtySoft) Or Me.txtQtySoft = "" Then Me.txtQtySoft = 0 End If If Me.txtQtyPiza = 0 And Me.txtQtyFry = 0 And Me.txtQtySoft = 0 Then MsgBox "No Bill for 0 Purchase Value" Me.txtQtyPiza.SetFocus Me.txtQtyPiza = Empty Me.txtQtyFry = Empty Me.txtQtySoft = Empty Exit Sub End If If (Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0) Or (Me.txtQtyFry - Int(Me.txtQtyFry) > 0) _ Or (Me.txtQtySoft - Int(Me.txtQtySoft) > 0) Then If (Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0) Then Me.txtQtyPiza = Empty Me.txtQtyPiza.SetFocus Exit Sub End If If (Me.txtQtyFry - Int(Me.txtQtyFry) > 0) Then Me.txtQtyFry = Empty Me.txtQtyFry.SetFocus Exit Sub End If If (Me.txtQtySoft - Int(Me.txtQtySoft) > 0) Then Me.txtQtySoft = Empty Me.txtQtySoft.SetFocus Exit Sub End If End If End Sub Private Sub txtQtyFry_GotFocus() If IsNull(Me.txtQtyPiza) Or Me.txtQtyPiza = "" Then Me.txtQtyPiza = 0 ElseIf Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0 Then Me.txtQtyPiza = Empty Me.txtQtyPiza.SetFocus Exit Sub End If Me.txtTotPiza = Me.txtQtyPiza * Me.txtRatePiza End Sub Private Sub txtQtyPiza_GotFocus() Me.txtRatePiza = 1.75 Me.txtRateFry = 2# Me.txtRateSoft = 1.25 End Sub Private Sub txtQtySoft_GotFocus() If IsNull(Me.txtQtyPiza) Or Me.txtQtyPiza = "" Then Me.txtQtyPiza = 0 ElseIf IsNull(Me.txtQtyFry) Or Me.txtQtyFry = "" Then Me.txtQtyFry = 0 ElseIf (Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0) Or (Me.txtQtyFry - Int(Me.txtQtyFry) > 0) Then If (Me.txtQtyPiza - Int(Me.txtQtyPiza) > 0) Then Me.txtQtyPiza = Empty Me.txtQtyPiza.SetFocus Exit Sub End If If (Me.txtQtyFry - Int(Me.txtQtyFry) > 0) Then Me.txtQtyFry = Empty Me.txtQtyFry.SetFocus Exit Sub End If End If Me.txtTotPiza = Me.txtQtyPiza * Me.txtRatePiza Me.txtTotFries = Me.txtQtyFry * Me.txtRateFry End Sub Private Sub txtQtySoft_LostFocus() Me.txtRateSoft = 1.25 End Sub you can download the sample file from : http://rapidshare.com/files/328863200/YahooAnsVB.zip.html

a fast-food vendor sells pizza slices($1,75), fries ($2.00), and soft drinks ($1.25). write a program to compute a customer's bill. The program should request the quantity of each item ordered in a Sub procedure, calculate the total cost with a Function procedure and use a sub procedure to display an itemized bill. Any help that is given is greatly appreciated. yes, its for a project and I haven't come up with any code as of yet......I'm stumped


Pages: 1 2