Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Line 63:                 price = (decimal)tbl.Rows[i]["SalePrice"];
Line 64:                 quantity = (decimal)tbl.Rows[i]["SaleQuantity"];
Line 65:                 SystemFunction.GetProductInfo(id, out code, out name, out module, out color);
Line 66:                 DataRow dr = AddNewRow(dt, id, code, name, module, color, price, quantity);
Line 67:                 dt.Rows.Add(dr);


What I have tried:

i am trying to configure aliceerp in visual studio
Posted
Updated 8-May-18 6:22am

1 solution

If you use Visual Studio, you can try right-clicking on "SystemFunction" and see what it suggests; perhaps you are missing a using ...; at the top of your file. If that's not the case, then check that your application has all the necessary references to external libraries, because SystemFunction doesn't seem to be any .NET Framework class.
 
Share this answer
 
Comments
harristars 10-May-18 8:47am    
When I right click "SystemFunction" Visualization Studio does not suggest anything.
Thomas Daniels 10-May-18 8:48am    
What is SystemFunction? Does it come from an external library?
harristars 20-Jun-18 7:00am    
yah
Thomas Daniels 20-Jun-18 11:42am    
Did you add a Reference to said library?
harristars 13-Jul-18 4:22am    
yah but it did not work

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900