ok so if i made a method to call a function called LoadCells where i have various getValue methods, where would i call this in the program because I'm having problems loading data into textboxes when the program opens now.
So i can run my method LoadCurrentState inside the page I want to load cell data but if i try to run this method under public void startApp() i just get errors. e.g -
personalNameCall = new String (myStore.getRecord(1));
personalName.setString(per
only works if i am instide the page with the personalName textbox, if i try going ot the main menu and cannot see these boxes, they dont load?!
Main Topics
Browse All Topics





by: jimmackPosted on 2007-09-05 at 15:59:47ID: 19836407
You'll need to get the data from each cell (using the getValue method) and store it in your record store. When you read it back out to re-populate the table (using the setValue method), you just need to make sure you're reading out in the same order.
Can you post the code you've written so far and explain where you are having problems?