If this is still active, should the "License" be updated to be the GNU GPL (1,2,3) or restated as a Google Public License? The text "GPL (www.google.com)" can be misinterpreted....
Also, my compliments for facing down the demons of awt and friends! ;-)
Hi All, I have a issue to solve.
I already have an application from where I'd love to call your table code to show some values. The problem is that I need to generate an executable file to run on other machines without Matlab installed. To do this I use the mbuild -setup command, choose my compiler (Microsoft Visual C/C++ version 6.0) and the mcc -m command. It seems that the gui_sheet.m uses java, so I wonder know how I could generate this executable that gather all my files along with the one you made available on net.
Thanks in advance,
Breno
To: Wojciech Chojnowski
Yes, you have to set the table object as editable.
From the code:
% setting the behaviour of the table (can be found in java awt documentation, or methods of java table)
b.setExcelMode(1);
should do the trick.
I don`t know if something changed in java AWT in Matlab 2006b, but presumably not.
Try to debug the application and see the methods/properties of the object "b", which is the java AWT Table object instance. There should be something like "editable" property.
Hint:
debug,
stop at the point b.setExcelMode(1);
and in the matlab command line press:
b.<Tab>
I hope this helps if not, blame mathworks for it :-)
Comment only