Hi,
I have treeView1 populated with parents nodes, each parent having exactly three (3) childs (children). Each child can have saved a lot of grandchilds.
+Customer1
-Customer2
+FirstCalculator
+SecondCalculator
+ThirdCalculator
-Customer3
-FirstCalculator
Data1
Data2
-SecondCalculator
Data3
Data4
-ThirdCalculator
Data5
Data6
Data7
+Customer4
I created three (3) application (those are children), sort of calculators, each calculating result from given input data. I would like to save:
a/ class populated with inputed data,
b/ some ArrayList and
c/ some text (log),
under child node as a single grandchild node in treeView1 of Form1.
I would not save results, since they will appear after selecting grandchild node from treeView1, in manner that:
-appropriate calculator-application (Form2, or Form3, or Form4) will appear and
-will load saved class, ArrayList and text
-from selected grandchild node, and calculate results.
This sounds complicated to me, but it is basic save/load...
Thanx!