still ur question is not understandable, do u want to open the Record form(child) from Search Form(child), if so
step 1 : create object of record form step 2 : call show or showdialog() method of object created in step 1.
RecordForm _mobjrec;
_mobjrec = new RecordForm(); _mobjrec.show(); or _mobjec.showDialog();
|