|
|
|
How i want to call form from tree menu ??? [message #643394 is a reply to message #643310] |
Wed, 07 October 2015 00:39 |
|
limon
Messages: 20 Registered: October 2015 Location: Dhaka, Bangladesh
|
Junior Member |
|
|
Please help me ... how i want to create oracle tree menu ? and how i want to call form from oracle tree menu ?
create table parrents
(
p_id number(10),
p_name varchar2(100)
);
create table childs
(
c_id number(10),
p_id number(10),
c_name varchar2(100)
);
insert into parrents values (1,'Bascic');
insert into childs values (101,1,'Student Information');
insert into childs values (102,1,'Student Profile');
insert into parrents values (2,'Bank');
insert into childs values (102,2,'Bank');
insert into childs values (103,2,'Govt.Bank');
insert into childs values (104,2,'Private Bank');
in this form.... i can't not call form from oracle tree menu ......... please help me ?????
## Use 6i form developer and 10g database ##
[Updated on: Wed, 07 October 2015 01:58] Report message to a moderator
|
|
|
|
|