Auto Complete Combo Boxes?

Does anyone know of auto-completing combo boxes written in Java? I have a dirty hack that sort of works, but if you type too fast the caret jumps to the end of the text it thinks you are typing instead of selecting the characters that you haven't typed yet.
Any help would be greatly appreciated.

Jrabi,
Below is the code for KComboBoxes. Please be aware that this code comes with NO guarantee. It works for me, but that doesn't necessarily mean that it will work for you. If you have any questions about the code I will be happy to answer them. Make sure that once you create an instance of KComboBox that you set it as editable or the auto complete function won't work.
package pubprint; //make this package whatever your package is
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
* Title: <BR>
* Description: <BR>
* Copyright: Copyright (c) 2002<BR>
* Company: <BR>
* @author Kevin J. Keen
* @version 0.5
public class KComboBox extends JComboBox implements KeyListener {
private ComboBoxModel myModel;
private KeySelectionManager myKeyManager;
private ComboBoxEditor myEditor;
private JTextField txtEditor;
private long timeOfLastEvent = 0;
//Constructors
public KComboBox() {
super();
myModel = super.getModel();
myKeyManager = super.getKeySelectionManager();
myEditor = super.getEditor();
txtEditor = (JTextField)myEditor.getEditorComponent();
txtEditor.addKeyListener(this);
public KComboBox(ComboBoxModel daModel) {
super(daModel);
myModel = super.getModel();
myKeyManager = super.getKeySelectionManager();
myEditor = super.getEditor();
txtEditor = (JTextField)myEditor.getEditorComponent();
txtEditor.addKeyListener(this);
public KComboBox(Object[] items) {
super(items);
myModel = super.getModel();
myKeyManager = super.getKeySelectionManager();
myEditor = super.getEditor();
txtEditor = (JTextField)myEditor.getEditorComponent();
txtEditor.addKeyListener(this);
public KComboBox(Vector items) {
super(items);
myModel = super.getModel();
myKeyManager = super.getKeySelectionManager();
myEditor = super.getEditor();
txtEditor = (JTextField)myEditor.getEditorComponent();
txtEditor.addKeyListener(this);
//Key listener methods
public synchronized void keyReleased(KeyEvent e) {
if(e.getKeyCode() == KeyEvent.VK_SHIFT || e.getKeyCode() == KeyEvent.VK_TAB) {
return;
//This IF/ELSE is necessary because without it
//you can out-type the auto complete and get
//really weird behavior.
if((e.getWhen() - timeOfLastEvent) < 100) {
return;
else {
timeOfLastEvent = e.getWhen();
String temp = txtEditor.getText();
int hashCode = temp.hashCode();
for(int i = 0; i < myModel.getSize(); i++) {
String contents = (String)myModel.getElementAt(i);
if(contents.startsWith(temp)) {
int selectionStart = txtEditor.getCaretPosition();
int selectionEnd = (contents.length());
//Check to make sure that the value in the text field hasn't changed
if(txtEditor.getText().hashCode() == hashCode) {
setSelectedItem(contents);
selectedItemChanged();
txtEditor.setSelectionStart(selectionStart);
txtEditor.setSelectionEnd(selectionEnd);
return;
else {
return;
public void keyPressed(KeyEvent e) {}
public void keyTyped(KeyEvent e) {}
}

Similar Messages

  • How to create Auto complete text box in share point 2010 Visual web part

    Hi All ,
    I am want to use Auto complete text box in share point 2010 Visual web part ,data need to get from share point list how to  create 
    please guide me how to use Auto complete text box
    Thanking you,
    Arun Darly

    Hi Arun,
    Please refer to the following article.
    SharePoint 2010: JQuery Autocomplete Textbox Containing List Items
    http://smarttools.codeplex.com/wikipage?title=Autocomplete%20Text%20Field
    Please don't forget to mark it as answered, if your problem resolved or helpful.

  • Changing Drilldown on Stacked Coulmn Charts with auto-selected combo boxes

    Hello Experts,
    i have a big issue and no idea how to solve it. Hopefully you can help me. I would really appreciate that so thanks for any answer in advance.
    Here my problem:
    I have two stacked column charts and two combo boxes. Each combo box shows filtered row data in one chart. That works fine.
    Now i want to implement drilldown which will change the data of the other chart by clicking. Example: Chart 1 represents the working hours of different staffs, chart 2 represents working hour in different projects. Now, I have a staff A who works in projects A and B. Projects A and B are now the rows in chart 1. By clicking on row project A the second chart should show me the data of project A. In project A there are several members stacked in the chart showing the whole working hours of the project. Now i want to change the perspective by clicking on a row in chart 2 so the data of employee XY is showing up and so on.
    I realized it by drilldowns. however there is no data but the row's name insertion. this cell is my trigger cell for the combo boxes so it will choose the right person/project automatically if i click on a row. In both charts is "No Selection (-1)" activated, in combo boxes is "When Value changes" picked.
    At the beginning i worked fine. my dashboard had displayed the data i wanted by clicking on the rows. but at a specific point my dashboard crashes.
    I figured out that if i drill down once the selection will not disappear. so on two drill downs there is an automatically selection of a specific row and at the end my dashboard crashes and no data is displayed.
    To solve my problem i need something to deselect my selection automatically or a reset for only one graph. i have worked with push buttons but its like the reset button because the row's name disappear too.
    Whether Xcelsius components or excel formulas, i have no idea how to solve my problem.
    Im grateful for every hint.
    Kind regards
    Lars Schmidt

    Well I need to get this thing done by tomorrow. The
    end goal is a program that will take data from text
    boxes, wrap predefined XML tags around them, and
    export them to a XML file. He's also sent me another
    *.java file which creates a XML file, but that also
    doesn't workThat's nice.
    Sun's basic Java tutorial
    Sun's New To Java Center. Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    http://javaalmanac.com . A couple dozen code examples that supplement The Java Developers Almanac.
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's Thinking in Java (Available online.)
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java.
    James Gosling's The Java Programming Language. Gosling is
    the creator of Java. It doesn't get much more authoratative than this.

  • Auto-Suggest feature in Combo-box LOV is not displaying non-unique values

    Hi,
    I have an auto-suggest feature implementation on a combo-box lov that displays the name and email-id of a list of people. There are non-unique names in the back-end, for example :
    Abraham Mason [email protected]
    Abraham Mason [email protected]
    But when I use the auto-suggest feature and type in, say 'Ab', instead of showing both the Abraham Masons the auto-suggest displays only one of the values.
    As in the example above the email-ids of the two Abraham Masons are different and unique.
    If I use the conventional drop down menu of the combo-box then both the values are visible.
    Is the auto-suggest feature implemented in a manner so as to display only unique values?
    This is the implementation of the auto-suggest feature that I have done -
    <af:column headerText="#{bindings.RqmtAtLevel1.hints.Owner.label}"
    id="c23" sortable="true" filterable="true"
    sortProperty="Owner"
    filterFeatures="caseInsensitive">
    <af:inputComboboxListOfValues id="ownerId"
    popupTitle="#{ResourcesGenBundle['Header.SearchandSelect.Searchandselectanobjectusingad']}: #{bindings.RqmtAtLevel1.hints.Owner.label}"
    value="#{row.bindings.Owner.inputValue}"
    model="#{row.bindings.Owner.listOfValuesModel}"
    required="#{bindings.RqmtAtLevel1.hints.Owner.mandatory}"
    columns="#{bindings.RqmtAtLevel1.hints.Owner.displayWidth}"
    shortDesc="#{bindings.RqmtAtLevel1.hints.Owner.tooltip}"
    autoSubmit="true">
    <f:validator binding="#{row.bindings.Owner.validator}"/>
    <af:autoSuggestBehavior suggestedItems="#{row.bindings.Owner.suggestedItems}"/>
    </af:inputComboboxListOfValues>
    </af:column>
    Thanks,
    Anirudh Acharya

    Hi,
    don't find a bug entry about this, so if this indeed is a defect then this has not been filed. Do you have a test case ? If you have please zip it up and send it in a mail to me. My mail address is in my OTN profile (just click on my name until you get to the profile). Pleas rename the "zip" extension to "unzip" and mention the JDeveloper release you work with. The test case should work against the Oracle HR schema.
    If you need to track the issue, I suggest to file a service request with customer support yourself
    Frank

  • Why is the email address in the To: box red when auto-completed from Address Book?

    Linux TB31.0
    Not aware of this problem in prior issues!
    Problem occurs when starting to type receipient in "To" box.
    Have "Home Address Book" no "Personal Address Book" no "Collected Addresses".
    Should I export and rename "Home Address Book" then import it back in as "Personal Address Book" to be properly recognized by the auto-completion "To" entry?

    Have tried to eliminate possibility of corrupt *.mab files by exporting personal address book to another folder as *.ldif, then closed TB, then deleted all *.mab files in profile directory, then restarted TB, then imported the *.ldif into TB as my personal address book.
    TB recognises addresses but auto complete still insists on marking "To" text to red.
    Thanks for responding anyways.
    Partial Fix!!
    The following workaround provides a way to ignore addressbook match:- Go to Edit/Preferences/Advanced/General/Config_Edit Search for 'mail.autoComplete.highlightNonMatches' set it to 'false' This worked for me on Xubuntu.

  • Since upgrading to Firefox 4 I've been unable to select search items from the google drop down box in the toolbar. Instead, I have to retype my search item completely as I also unable to select 'auto-complete' items as they appear.

    Since upgrading to Firefox 4 I've been unable to select search items from the google drop down box in the toolbar. Instead, I have to retype my search item completely as I also unable to select 'auto-complete' items as they appear.

    Known problem with the Google Toolbar extension. <br />
    http://www.google.com/support/toolbar/bin/static.py?page=known_issues.cs

  • How do I correctly use Macro Builder to have a form auto select a TAB depending on a value selected in a combo box?

    I am working in access 2013 to update a database first created in Access 2003. It has been saved as an accdb but I have the same problem in earlier versions.
    I have a Tab Control subform in my MainDataEntry form which has 5 different tabs. Each Tab has its own set of text boxes and combo boxes for data entry. At the top of the MainDataEntry form there is a Text box [Text393], which has a drop down with
    the 5 TAB names, [Mobile Device],[Computer],[Loose Media],[Network] and [Original Device]. When I select one of these values in the Text box, I would like to automatically set focus on the first Textbox or ComboBox inside the corresponding TAB.
    I have tried to do this using the MacroBuilder inside the "After Update" Property for the Text or Combo box that is on the MainDataEntry Form using "If" and "Else If" statements for the "GoToControl" action, however
    I seem to be able to only get one Tab to work. I have tried several different variations of this, putting the If statement first and the action argument second...putting all arguments inside a group, or not grouped....nothing seems to work. What am I
    doing wrong?
    EXAMPLE:
    If [Text393]=[Mobile Device] Then
        GoToControl
             Control Name   Combo471
    Else If [Text393]=[Computer] Then
        GoToControl
    Control Name   Bios_Date
    Else If [Text393]=[Loose Media] Then
        GoToControl
             Control Name   Combo659
    Else If [Text393]=[Network] Then
        GoToControl
             Control Name   User Name
    Else If [Text393]=[Original Device] Then
        GoToControl
             Control Name   Combo814
    End If

    In the Macro Builder's AfterUpdate event for [Text393]:
    GoTo Control
      Control Name =Forms!MainDataEntry.Controls(Text393.Value).Name
    To ensure that the first control on each tab receives the focus, set that control's Tab Index property to zero (0).

  • Auto-filling a Combo Box

    Hi everyone,
    I am working on a form using Developer 6, and I have created a list item that is being populated dynamically. The list item is a combo box. I originally used a poplist, but it did not behave the way I intended. I would like to allow the user to be able to type in the letter 'P' and display the first item 'Pan'. Then if the user types in a 'u' after the 'P' they would get another item 'Purse' displayed in the combo box. I have tried using the LIKE% function with no success. Has anyone been successful doing this? If so, what does the code look like? I would appreciate any help you can give me.
    Thanks in advance.

    It seems as though in my calculation code this line:
    if (a=="") event.value = ""
    conflicts with this line:
    else if(a==0) event.value = "Yes".
    I changed the values in my code so that if a>10 it would return a "No" and if a<10 it would return a "Yes" and it worked perfectly. However, when I use the above code (a==0, it just leaves the box blank. I would take out the first line of code (a==""), but I would like the box to be blank until data has been entered into the form.

  • Embedded Fonts a Combo Box and complete madness

    I have a combo box that has an array of fonts loaded into
    them, not here is my problem. For some reason, when i select the
    fonts in the array, some of them change and some of them dont. I
    have created font symbols like instructed in the live docs, but i
    dont get why they arent showing up..
    i.e. I have 7 fonts loaded into this combo box and i can
    select Arial Bold and my text field will show the text in arial
    bold, but when i select hobo, i get some substitute!
    here's my code, maybe you guys will see something i
    haven't.. the fonts in particular i am having trouble with: Bookman
    Old Style, BrushScript and Hobo.

    there are many points/issues here. here are some:
    1. Your array called fonts contains eight strings such as
    'new Arial()', whereas i think what you were trying to achieve here
    is to create references to the fonts in the library. to do this
    remove the quotation marks.
    2. To be able to create references to the fonts in the
    library, ensure that the font symbols in the library contain class
    names, with base classes of flash.text.Font. do this by selecting
    'Linkage' on your library fonts.
    3. Ensure that your text field is set to embed fonts - either
    in authoring, or with actionscript
    eg.outputTB1.embedFonts=true;
    4. you set up fonts_array with eight font names and then in
    your for loop, you again add eight fonts to this array. this is
    redundant.
    5. in the for loop you have the line: fonts_array.push(new
    String(fonts[ i]));
    this appears to be an attempt at converting a reference to a
    font into a font name. this isn't going to work. if you had set up
    references to fonts to begin with (see point 1), and this line
    wasn't redundant (see point 4), you would extract the font name
    like so: fonts_array.push(fonts[ i].fontName)
    6. maintaining two arrays of fonts is unecessary. i would
    recommend just maintain your fonts array with references to fonts,
    and extract font names from these references. this would look
    something like the code attached below.
    7. One last thing - i notice that you have at least two of
    your fonts - arial and arial bold, probably have different
    formatting. if some are bold and some are not, you will need to
    specify the bold property also. eg. font.bold=true

  • Is this a known problem - Panel text and combo boxes not repainting completely when scrolling in IE?

    Looking for any insight as to what might be going on.  Would appreciate any info if anyone knows about this or similar problems..
    I have a panel with 18 children - text and combo boxes - that does not repaing correctly in IE when scrolling vertically.  The 18 children do not fit in the panel, so a vertical scroll bar appears.  The scroll works perfectly when i run through FireFox.  But it does not work in IE in this case.  The child controls appear as painted over parts of other controls.
    thx.

    Wow ...  wow...  Magic.  Your last suggestion of removing the wmode attribute worked.  The page looks great.  The scroll works flawlessly where before it mangled the child controls on the page making it look like a hurricane scene.
    The html was originally set with wmode as "opaque".  I tried changing it to "transparent" after your first response, but this made no difference.  What fixed the problem was removing the wmode attribute altogether.
    We've built a rather large application.  Is there anything we need to be aware of, or anything we need to look out for by removing the wmode setting?
    Thanks much.

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • ADF: auto complete in tutorial does not work

    Hi all,
    I'm studying ADF tutorials. Developing Rich Web Applications with Oracle ADF tutorial has a sample of Auto-complete property. I followed the tutorial from the first step but cannot go further because At Part 3, Step 3 it is not possible to drag an Autocomplete Behaviour onto Combobox. Futhermore in the screenshots, it seems possible to type into Combobox which i never see such an example before.
    This is the link of the Step that i'm talking about:
    http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_55/jdtut_11r2_55_3.html
    Thanks in advance,

    I finally found a way to correct it. When you drag and drop the whole view, JobID is type of Combo Box but it should be Input List of Values (Combo Box). To solve this you need to only delete that combo box (not the whole structure) and drag and drop the Job ID again. This time select List Of Values so it becomes a combo box with editable area. This part is not mentioned in the tutorial makes the confusion.
    Edit: I just see your edit, the forum link points out the same problem. This is the workaround. Unfortunately one of the basic tutorials of Oracle ADF is confusing.
    Edited by: elmariachi on Jan 4, 2013 12:22 PM

  • Auto complete PJC

    Hi,
    I have Forms 10g R2, I built one form with multirecords I want to implement auto complete feature(like in address bar of IE) in Combo box in list item field, any one know where can I get any PJC which suffice my need.
    Thanks, Khawar

    Hi wfwiii,
    If you're trying to avoid having to type repeating values in a header column, why not give Pop-Up Menu a try? It's now really easy to use, as described here and here.  And it keeps your data cleaner. No typos and capitalization inconsistencies. And it works much better that auto-complete if you ever take documents with you on mobile.
    SG

  • Spaces always sends  to the same Desktop, drop-lists and combo boxes broken

    I have a new behavior that has just started. When I click on the Spaces icon on my dock - it has several weird behaviors. First, no matter what I click on - it will only send me to the upper right desktop. Second, when I move the mouse while using spaces - the animation flickers very strangely. Third, the animation when Spaces opens and closes is VERY VERY slow and it takes several seconds between clicking the Spaces icon in the dock to when the animation is complete and you can select a desktop.
    Possibly related (because it started at the same time) all of the auto-complete menus (i.e. - those menus that help you type faster when you enter text into HTML forms etc.) are now un-usable. They flicker in and out so quickly that I cannot click on them. Ditto for any sort of combo-box or drop list control in any application.
    Has anyone else started experiencing this problem?
    Message was edited by: bmm727
    Message was edited by: bmm727

    I'll throw out some other ideas.
    A. System wide freak-outs can also be caused by bad or duplicate fonts installed or important fonts missing. Open Font Book and see if any fonts have a dot next to them. If you move or change fonts that are necessary for apps you get many problems.Here is a list of necessary fonts. The system fonts will not allow you to move them so it probably is not one of them. You can also try cleaning the system and font caches using Onyx.
    B. Incomplete upgrades can leave your system in a mess. It would be easier to archive and install then to try and figure out what pieces you are missing.
    C. I would also suspect any third party utilities you have installed, especially in the System Preferences or that activate on start up.
    System Prefs:
    • Out of date utilities for your third party mouse. Try updating the utility.
    • Haxies for the system- try turning them off.
    D. Antivirus programs often cause more harm then good. Do you have any installed? On Windows machine I have used when your subscription expires the software cripples your system. The solution is to completely remove it or renew your subscription.
    E. If you are using a wireless mouse check the batteries.
    Kurt

  • How to delete old addresses that appear in auto complete list in iMessage

    Mavericks 10.9.1
    iMessage Version 8.0 (4218)
    MBP Late 2011
    When typing in the name of a contact I want to message, a list of addresses appears as an auto-complete/auto-fill list. 
    One address is no longer used and I would like to delete that particular address. 
    The address is not on the contact card. 
    I'm sending a message via iMessage to another iMessage verified address on an Apple device(s). 
    My iCloud contacts are synced correctly with iphone/ipad/MBP.
    Thanks

    First, search Contacts to make sure the address doesn't appear on any card. If it doesn't, continue.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.iChat
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Quit the application if it's running. Move the selected item to the Trash. Relaunch the application and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

Maybe you are looking for

  • Newest version firefox 33.02.2 32-bit lost all my settings and I mean all of them

    I have Windows 7 Professional 32-bit Service Pack 1 and before new firefox update to 33.02.2 I had all settings in firefox set and working just fine, bookmarks, add-ons and extensions just the way I wanted it to be and customized the menu just the wa

  • Unable to open projects from an external hard drive... Help??

    Ok, so here's the problem.  I recently moved all of my projects onto my external hard drive (G-Drive) and now I am unable to open them in FCP X.  All of the projects were originally created using FCP, opened them using FCP X this morning, saved again

  • Using Resin and Weblogic with Apache

    Hi, Does anybody know if i can use Weblogic to serve JSP and Resin to serve some servlets within Apache? Let me explain the case: We are testing to setup Weblogic with Apache as the webserver. Weblogic will be used to serve the JSP pages so i configu

  • Lock in parameter/select-options field

    Hi, How can we block another user from executing report with the same value of parameter/select-option field entered on screen by user? for example: Report ZZZ, parameter field sales org = A, run by user 1. Another user, say B, attempts to run the re

  • How to handle Webservice

    Hi Experts, I want to know how to handle webservice in web Dynpro Application. I need some documentation regarding this. can any one help me. Advance Thanks, P.J.Balaji