1) Why the function SetValueAt Doesn't Working ???
2) Why i cant active my AI?
codes:
1)MF = where the table is defined
g= AI type
int Row1 = MF.table.getRowCount();
int Col1 = MF.table.getColumnCount();
Object data1 [][]=g.Dtable;
for(int i=1;i<Row1;i++){
for(int j=1;j<Col1;j++){
MF.table.setValueAt(data1,i,j);
}
}
}
2)
DD.g = new Bina(DD);
dd=my main class with all the info
g= Bina Type
Bina = AI
