473,383 Members | 1,818 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

Need help!

1
I need help writing some code for this procedure:
Inventory – Add to Item Listing menu item (15 points). Application users will use this menu as part of the process of entering inventory information. The steps for entering inventory information are: (1) select an existing inventory item from the Select Item ComboBox control, (2) enter the wholesale cost of the item and quantity in stock, (3) click the Inventory menu, Add to Item Listing sub menu.



Because menu items do not have a CausesValidation property and do not properly trigger ErrorProvider errors, you will take a different approach to validating data for the form. The Click event for this menu item must call a function named ValidData that validates the following business rules. The ValidData function code is given to you here. It validates three business rules and if a business rule is violated, displays an appropriate message box. The data must not be processed if a business rule is violated.

* Business rule #1: An inventory item type has been selected from the itemComboBox control.
* Business rule #2: The wholesaleCostTextBox control contains a numeric value greater than zero.
* Business rule #3: The quantityTextBox control contains a numeric value greater than zero.



Private Function ValidData() As Boolean

'Validate the business rules—assume the data is not valid initially.

ValidData = False



If Me.itemComboBox.SelectedIndex = -1 Then

'Violates business rule #1

MessageBox.Show("You must select an inventory item.", "Item Selection Error", MessageBoxButtons.OK, MessageBoxIcon.Error)

Me.itemComboBox.Focus()



ElseIf IsNumeric(Me.wholesaleCostTextBox.Text) = False OrElse _

Decimal.Parse(Me.wholesaleCostTextBox.Text) <= 0 Then

'Violates business rule #2

MessageBox.Show("Price must be a number greater than zero.", "Price Error", MessageBoxButtons.OK, MessageBoxIcon.Error)

Me.wholesaleCostTextBox.Focus()

Me.wholesaleCostTextBox.SelectAll()



ElseIf IsNumeric(Me.quantityTextBox.Text) = False OrElse _

Integer.Parse(Me.quantityTextBox.Text) <= 0 Then

'Violates business rule #3

MessageBox.Show("Quantity must be a number greater than zero.", "Quantity Error", MessageBoxButtons.OK, MessageBoxIcon.Error)

Me.quantityTextBox.Focus()

Me.quantityTextBox.SelectAll()



Else

'Data is valid, return a true.

ValidData = True

End If

End Function



* Your code must properly call the ValidData function and if the data is valid, complete these additional computing tasks.

* Calculate the Item Value (quantity times price) and store this value to a decimal variable.
* Display (Add) a string consisting of the Item (from the ComboBox) + Item Value (not the wholesale cost) as a string item to the itemListBox control as illustrated in the figure of the form shown earlier.
* Accumulate (Add) the Item Value to a module-level variable that will store the total inventory value of all items counted during an inventory session, and then update the display of the running total inventory value to the Total Inventory Value TextBox control at the bottom of the form. Note that an inventory counting session almost always consist of counting more than one item. Also, the same type of item may be stored in more than one location in the store so the same item may appear more than once in the itemListBox.
* Clear the text property for each of the itemComboBox, wholesaleCostTextBox, and quantityTextBox controls. Unselect the itemComboBox item. Set the focus to the itemComboBox.
* Items listed in the itemListBox control should NOT be sorted.
Apr 14 '08 #1
2 1450
daniel aristidou
491 256MB
im confused is the code above code you have been provided with or your own attempt?
Apr 14 '08 #2
lotus18
866 512MB
Use code tags for ease of viewing. And post your question just one by one.

Rey Sean
Apr 15 '08 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.