|
GotoRecord |
|
package Selection;
import j4d.open.*;
class Examplet {
/* doGotoRecord go to the target record
*/
public void doGotoRecord(opProcess process, int targetTable, int targetRecord) throws opException {
try{
opTable mTargetTable = new opTable(targetTable, targetRecord);
process.GotoRecord(mTargetTable);
}
catch (opException er){throw er;}
}
}
|
GotoRecord |
|