Home » Developer & Programmer » Forms » Combo list item, like Internet Explorer Address bar
Combo list item, like Internet Explorer Address bar [message #387657] Fri, 20 February 2009 03:40 Go to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
Dear Members


I need a list item which i will be able to write i make one list item but its not allow me to write its only allow me to chose. I Simple need a list item which is look like Internet Explorer Address Bar


Hope you guys understand my question


Thanks & Regards

Shahzaib Ismail

[MERGED by LF]

[Updated on: Thu, 26 February 2009 03:43] by Moderator

Report message to a moderator

Re: List Item like internet Explorer Adress bar [message #388016 is a reply to message #387657] Mon, 23 February 2009 00:39 Go to previous messageGo to next message
djmartin
Messages: 10181
Registered: March 2005
Location: Surges Bay TAS Australia
Senior Member
Account Moderator
No.

Please attach a graphic of what you can see in 'Internet Explorer Address Bar' and what you want to see (you will probably have to paste a second image over the first to show what you want).

David
Re: List Item like internet Explorer Adress bar [message #388055 is a reply to message #387657] Mon, 23 February 2009 01:24 Go to previous messageGo to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
@ David (Djmartin)

Thanks for your reply


Well actually i create a list item Like

i create a program unit

PROCEDURE jobname(p_ListName in number, p_SrcBox in number) IS

v_Rg4 RecordGroup;
BEGIN

v_RG4 := Find_Group('jobname');

END;


then i create a trigger

When_new_form_instance


Declare

v_grpid4 recordgroup;
v_rg4 number;

Begin

v_GrpID4 := CREATE_GROUP_FROM_QUERY('jobname', 'SELECT job_name, TO_CHAR(job_name) job_name FROM wjob ORDER BY 1');
v_rg4 := POPULATE_GROUP(v_GrpID4);


IF v_rg4 = 0 THEN
POPULATE_LIST('wstyle.style_job_name', v_GrpID4);
END IF;



Now its working but its not fulfill my requirement Because
there is so much job name available and its very difficult for me to search.

i am also used LOV against list item but LOV is also taking time there for i need a list item where i can found easily job name
as i referred internet explorer address bar

therefor i need a list item like internet explorer address bar because its easy to find job name with a list item like address bar

Hope you understand


Any way

Thanks for your Help


Shahzaib ismail
Re: List Item like internet Explorer Adress bar [message #388485 is a reply to message #388055] Wed, 25 February 2009 00:40 Go to previous messageGo to next message
djmartin
Messages: 10181
Registered: March 2005
Location: Surges Bay TAS Australia
Senior Member
Account Moderator
Use the LOV. If it takes 'too long' then add an index to the table using the columns on which you are sorting the query. IF the list is very long try to make it shorter by using a date range. IF that is not possible then use the 'long' version of the LOV.

David
Re: List Item like internet Explorer Adress bar [message #388515 is a reply to message #387657] Wed, 25 February 2009 02:13 Go to previous messageGo to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
@ David

There is no way to Create a list item like Internet Explorer Address Bar ?


I already short my lov and its working fine but the speed to data entry is very slow due to LOV.


I am using one other module which will create in Visual Basic there is a list item which is like Internet Explorer Address bar. So may be there is an option in Oracle Developer to Create a List item like I mansion Earlier.


Any Way

Thanks for your Advice David


Shahzaib Ismail
Re: List Item like internet Explorer Adress bar [message #388715 is a reply to message #388515] Thu, 26 February 2009 00:23 Go to previous messageGo to next message
djmartin
Messages: 10181
Registered: March 2005
Location: Surges Bay TAS Australia
Senior Member
Account Moderator
I asked you to post an image of "what you can see in 'Internet Explorer Address Bar'". You have not.

Did you try the 'long' version of the LOV? Did you add an index?

David
Re: List Item like internet Explorer Adress bar [message #388736 is a reply to message #387657] Thu, 26 February 2009 00:46 Go to previous messageGo to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
@ David

I Does not want to create a LOV i want a list item. The LOV is working fine rather then List item but i want to know why we not be able to write words in list item? why we always chose data from list.
Quote:

Did you try the 'long' version of the LOV? Did you add an index?



I do not need to try Long version of the LOV? because to create an LOV is not my requirement


In short Internet Explorer Address Bar is also a list item but we are be able to write our website.


Thanks for your reply David


Shahzaib
Re: List Item like internet Explorer Adress bar [message #388738 is a reply to message #388736] Thu, 26 February 2009 00:57 Go to previous messageGo to next message
djmartin
Messages: 10181
Registered: March 2005
Location: Surges Bay TAS Australia
Senior Member
Account Moderator
Try 'combo list'.

David
Need Simple Combo list Example [message #388765 is a reply to message #387657] Thu, 26 February 2009 02:35 Go to previous messageGo to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
Hellow all


I Need a simple combo list example for learn how to create a combo list


Hope you guys help me


Thanks


Shahzaib Ismail
Re: Need Simple Combo list Example [message #388779 is a reply to message #388765] Thu, 26 February 2009 03:38 Go to previous messageGo to next message
ashoka_bl
Messages: 398
Registered: November 2006
Location: Bangalore
Senior Member

Here you go..........

PROCEDURE PopulateBookType IS
rg_id recordgroup;
r number;
BEGIN
     rg_id:=create_group_from_query('RG_NAMES','select type_desc,type_desc from lib_booktype order by type_id');
     r:=populate_group(rg_id);
     populate_list('lst_booktype',rg_id);
END;


Regards,
Ashoka BL
Bengaluru
INDIA
Re: Combo list item, like Internet Explorer Address bar [message #388904 is a reply to message #387657] Thu, 26 February 2009 09:56 Go to previous messageGo to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
@Ashoka BL
Bengaluru
INDIA

Thanks for your help

Do you please provide my any FMB file because i am still not understand its look like a simple List item which populate from program unit


as i mansion earlier


Hope you help me


Thanks


Shahzaib ismail
Re: Combo list item, like Internet Explorer Address bar [message #388916 is a reply to message #388904] Thu, 26 February 2009 11:30 Go to previous messageGo to next message
ashoka_bl
Messages: 398
Registered: November 2006
Location: Bangalore
Senior Member

Shahzaib ismail,

Can you post whatever you have tried so far, so that we can improve upon,

The example which i provided is from the Program Unit only..

Regards,
Ashoka BL
INDIA
Bengaluru
Re: Combo list item, like Internet Explorer Address bar [message #388924 is a reply to message #387657] Thu, 26 February 2009 12:02 Go to previous messageGo to next message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
@ Ashoka BL
INDIA
Bengaluru


Thanks for your reply Ashoka


Please find the attachment of simple list item of emp table i am using developer 6I,


its work perfectly but i do not want to chose employee name from list i want to write emp name in list


hope you understand


Thanks

Shahzaib Ismail
Re: Combo list item, like Internet Explorer Address bar [message #388993 is a reply to message #388924] Thu, 26 February 2009 21:47 Go to previous messageGo to next message
djmartin
Messages: 10181
Registered: March 2005
Location: Surges Bay TAS Australia
Senior Member
Account Moderator
Sigh!!! The item can be a poplist, a combo box, or a Tlist. Play with the different types and see the differences.

David
Re: Combo list item, like Internet Explorer Address bar [message #389007 is a reply to message #387657] Thu, 26 February 2009 23:42 Go to previous message
shahzaib_4vip@hotmail.com
Messages: 410
Registered: December 2008
Location: karachi
Senior Member
Thank you David,ashoka_bl

My problem Solved


Its simple I select combo list in list style


For other guys who are facing this issue i am attach simple emp data block fmb file


Thank you guys for help


Shahzaib ismail
Previous Topic: Webutil on client problem
Next Topic: Table locks and forms operations hanging
Goto Forum:
  


Current Time: Sun Feb 09 11:03:53 CST 2025