FIX the calculation part in Form1 you will see the "BreakPoint"
The solution supposed output gross profit for the current item by subtracting the cost from the sales price. The total inventory at cost is calculated by multiplying the cost by the quantity on hand. The program should display these output values whenever tile user locates a different record, or updates a record.
Format the calculated values as currency which includes trailing zeros; clearing the control used to display the calculated values when the Add menu Item is clicked.
Also could you add a message Box that asks "are you sure you want to delete" when the user wants to delete a file and give two choices YES or NO, You don't have to do this but if you can do any enhancement to the program I will greatly appreciated
I have also attached "Field Name and profit.doc" which is what the output should look a like
Field Name
|
Description
|
Data Type
|
fldPartNumber
|
Unique Identification Number
|
Long Integer
|
fldDescription
|
Description on part
|
String
|
fldCost
|
Cost of part
|
Single
|
fldSalesPrice
|
Sales price of part
|
Single
|
fldQuantityOnHand
|
Number of items in inventory
|
Integer
|