Home » Developer & Programmer » Forms » How i want to call form from tree menu ???
How i want to call form from tree menu ??? [message #643310] Sun, 04 October 2015 03:08 Go to next message
limon
Messages: 20
Registered: October 2015
Location: Dhaka, Bangladesh
Junior Member

How i want to create oracle tree menu... ? and how i want to call form from oracle tree menu..in oracle 6i form and 10 g data base...please help me ...........
Re: oracle tree menu...... [message #643313 is a reply to message #643310] Sun, 04 October 2015 09:36 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
>in oracle 6i form and 10 g data base

both Forms 6 & DB 10g are obsoleted & unsupported now
Re: oracle tree menu...... [message #643345 is a reply to message #643310] Mon, 05 October 2015 11:04 Go to previous messageGo to next message
CraigB
Messages: 386
Registered: August 2014
Location: Utah, USA
Senior Member
limon wrote on Sun, 04 October 2015 02:08
How i want to create oracle tree menu... ? and how i want to call form from oracle tree menu..in oracle 6i form and 10 g data base...please help me ...........

There are numerous examples/demos/tutorials on the Internet for creating a Hierarchical Tree using Forms 6i. Search: "Oracle Forms Hierarchical Tree" using your favorite search engine.
How i want to call form from tree menu ??? [message #643394 is a reply to message #643310] Wed, 07 October 2015 00:39 Go to previous messageGo to next message
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

Re: How i want to call form from tree menu ??? [message #643404 is a reply to message #643394] Wed, 07 October 2015 02:02 Go to previous messageGo to next message
Littlefoot
Messages: 21806
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
Limon,

as it appears that you don't read private messages (or ignore what you were told), here you are, in public: you've opened far too many messages with the same problem. All of them have been deleted, but the last one.

You have to understand that this is just a forum. People - volunteers - are happy to assist when they have knowledge and some free time to spare. Therefore, be patient. If you are in a hurry, consider hiring a consultant.

In order to prevent you from flooding the forum with the same message all over again, you are banned for 1 day.
Re: How i want to call form from tree menu ??? [message #643435 is a reply to message #643404] Wed, 07 October 2015 08:56 Go to previous message
CraigB
Messages: 386
Registered: August 2014
Location: Utah, USA
Senior Member
To further add to LittleFoot's comment, no one here will "Spoon Feed" you. Do the Internet search I suggested. There are hundreds of examples on the Internet that demonstrate how to do what you want.
Previous Topic: simple calculator in oracle form builder
Next Topic: ..Background Color of Text and text item
Goto Forum:
  


Current Time: Fri Mar 29 09:44:58 CDT 2024