hi,
friends please tell me how to create a spreadsheet in java.if possible give me the code also
Printable View
hi,
friends please tell me how to create a spreadsheet in java.if possible give me the code also
This is not a code generator.You must see tutorial first,then if problems in executing then post here.
hello ujjal i have done a java program to generate the spreadsheet in java but unfortunately it was not working thats why i asked you people to generate a error free program ok then i will you the code that which i have used in the next post
thanks for your support bye.............................:D
A spreadsheet is a DAG (Directed Acyclic Graph); a vertex V has an outgoing edge to a vertex W is vertex W has a component in its formula that is represented by vertex V. Vertexes without incoming edges are the atomic values such as numbers or strings. Vertexes without outgoing edges are the cells on which on other cell depends. The graph needs to be acyclic because circular references are not defined in a spreadsheet, e.g. the following definitions are incorrect:
This limitation makes the creation of recurrent expressions impossible. Evaluations starts at the vertexes without incoming edges and stops at the vertexes without outgoing edges. All the rest is 'view' business and not very interesting. Asking for all the code is just too much to ask for.Code:A1= A2+1
A2= A1+1
kind regards,
Jos