Where is the JavaDoc for depreciated API classes

I have a v3.2.3 wizard that I'm trying to convert to v9.0.2.
It uses the ClassPickerPanel class. I get
Warning (175,21): constructor ClassPickerPanel ()
in class oracle.jdeveloper.common.ClassPickerPanel has been deprecated.
Where is the JDeveloper Javadoc (on-line, downloadable or in the Help system) so I can try to update the code (remove all the Borland JBuilder imports)?

We're working on the answer.
In the meanwhile, here is some code sample to address your need:
==================== file SampleTen.java ====
package jdevextensions.sampleten;
import oracle.ide.addin.Addin;
import oracle.ide.addin.Context;
import oracle.ide.addin.ContextMenuListener;
import oracle.ide.addin.Controller;
import oracle.ide.ContextMenu;
import oracle.ide.Ide;
import oracle.ide.IdeAction;
import oracle.ide.MainWindow;
import oracle.ide.model.Element;
import oracle.jdeveloper.model.JProject;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JMenuItem;
import javax.swing.JSeparator;
import oracle.bali.ewt.dialog.JEWTDialog;
import oracle.ide.dialogs.OnePageWizardDialogFactory;
import oracle.ide.dialogs.WizardLauncher;
import java.awt.Component;
import javax.swing.JPanel;
import oracle.ide.controls.tree.JMutableTreeNode;
import oracle.ide.controls.tree.JTreeCellData;
import java.util.Enumeration;
import oracle.ide.util.TriStateBoolean;
import oracle.ide.model.Document;
import javax.swing.JOptionPane;
public final class SampleTen
implements Addin,
Controller
public static final int JPR_DIALOG_CMD_ID = Ide.newCmd("IdeMenu.JPR_DIALOG_CMD_ID");
public SampleTen()
oracle.jdeveloper.common.ClassPickerPanel cpp = new oracle.jdeveloper.common.ClassPickerPanel();
public Controller supervisor()
return null;
public boolean handleEvent(IdeAction action, Context context)
int cmdId = action.getCommandId();
if (cmdId == JPR_DIALOG_CMD_ID)
Element element = ((context==null)?null:context.getElement());
if (element != null)
if (element.getClass().getName().equals("oracle.jdeveloper.model.JProject"))
// Get Current Project
JProject jpr = (oracle.jdeveloper.model.JProject)Ide.getActiveProject();
// Show Dialog
TreePanel treePanel = new TreePanel(jpr);
if (showTreeDialog(treePanel, null, "Project files"))
// Do the job if OK has been clicked
JMutableTreeNode root = treePanel.getRoot();
Enumeration children = root.children(); // We have only one level here...
String mess = "";
while (children.hasMoreElements())
JMutableTreeNode jmtn = (JMutableTreeNode)children.nextElement();
JTreeCellData data = jmtn.getModel();
TriStateBoolean selected = data.getCheckBoxState();
if (selected == TriStateBoolean.TRUE)
mess += (((Document)data.getUserObject()).getURL().toString() + "\n");
JOptionPane.showMessageDialog(null, mess, "Selected", JOptionPane.INFORMATION_MESSAGE);
return true;
private static boolean showTreeDialog(JPanel panel, Component defComp, String title)
JEWTDialog dlg = OnePageWizardDialogFactory.createJEWTDialog(panel, defComp, title);
dlg.setDefaultButton(JEWTDialog.BUTTON_OK);
dlg.setOKButtonEnabled(true);
return WizardLauncher.runDialog(dlg);
private static final void LogMessage(String msg)
oracle.ide.Ide.getLogManager().showLog();
oracle.ide.Ide.getLogManager().getMsgPage().log(msg + "\n");
static boolean EnableJPRInfo(Context context)
Element element = (context != null ? context.getElement() : null);
boolean bEnable = ((element != null) && (element instanceof oracle.jdeveloper.model.JProject));
System.out.println("EnableJPRInfo : " + bEnable);
return bEnable;
public boolean update(IdeAction action, Context context)
int cmdId = action.getCommandId();
if (cmdId == JPR_DIALOG_CMD_ID)
action.setEnabled(EnableJPRInfo(context));
return true;
return false;
public void checkCommands(Context context, Controller activeController)
this.supervisor().checkCommands(context, activeController);
protected static IdeAction eiAction; // Element Info Action
private static JMenuItem CreateTableInfoMenuItem(Controller ctrlr)
if (eiAction == null)
Icon mi = new ImageIcon(SampleTen.class.getResource("spy.gif"));
eiAction = IdeAction.create(JPR_DIALOG_CMD_ID, // int cmdId,
null, // String cmdClass,
"Project Tree", // String name,
new Integer('P'), // Integer mnemonic,
null, // KeyStroke accelerator,
mi, // Icon icon,
null, // Object data,
true // boolean enabled
eiAction.setController(ctrlr);
JMenuItem menuItem = Ide.getMenubar().createMenuItem(eiAction);
return menuItem;
//private static IdeAction actionTM;
public void shutdown()
// Do any necessary cleanup here
public void initialize()
Controller ctrlr = this;
final NamedContextMenu CMenus[] =
new NamedContextMenu("Project Tree", null), // Manual Override!
// new NamedContextMenu("Table Explorer", Ide.getExplorerManager().getContextMenu()), // OK = Structure Pane
for (int i = 0; i < CMenus.length; i++)
NamedContextMenu nmcm = CMenus;
ContextMenu menu = nmcm.getMenu();
String menuName = nmcm.getName();
ctxMenuListener cml = new ctxMenuListener(ctrlr,
menuName);
if (menu == null)
final Class nodeClass = null; // Passing in the appropriate class
// where you want this context menu to appear on will optimize this operation
Ide.getNavigatorManager().addContextMenuListener(cml, nodeClass);
else
menu.addContextMenuListener(cml);
MainWindow.View.add(CreateTableInfoMenuItem(ctrlr));
public float version()
return 1.0f;
public float ideVersion()
return oracle.ide.Ide.IDE_VERSION;
public boolean canShutdown()
return true;
private static final class ctxMenuListener implements ContextMenuListener
private Controller ctrlr;
private String clsName;
// Simple Menu Item
private static JSeparator miSeparator = null;
private JMenuItem miTableInfo = null;
ctxMenuListener(Controller controller, String className)
ctrlr = controller;
clsName = className;
public void poppingUp(ContextMenu popup)
Context context = (popup == null) ? null : popup.getContext();
if (context == null)
return;
if (miSeparator == null)
miSeparator = new JSeparator();
// popup.add(miSeparator);
// Insert Simple MenuItem in the Menu
if (EnableJPRInfo(context))
// If it should be enabled, then display it!
// Otherwise, dont bother showing gray menu!
if (miTableInfo == null)
miTableInfo = CreateTableInfoMenuItem(ctrlr);
popup.add(miTableInfo);
return;
public void poppingDown(ContextMenu popup)
// Do any necessary clean up!
public boolean handleDefaultAction(Context context)
return false;
private static final class NamedContextMenu
private String nm;
private ContextMenu cm;
NamedContextMenu(String nm, ContextMenu cm)
this.nm = nm;
this.cm = cm;
String getName() { return nm; }
ContextMenu getMenu() { return cm; }
======================== File TreePanel.java =============
package jdevextensions.sampleten;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import javax.swing.JScrollPane;
import oracle.ide.controls.tree.CustomJTree;
import oracle.ide.controls.tree.JMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import java.net.URL;
import oracle.ide.controls.tree.JTreeCellData;
import oracle.jdeveloper.model.JProject;
import java.util.HashSet;
import oracle.ide.model.Document;
import javax.swing.Icon;
import oracle.ide.util.TriStateBoolean;
import oracle.jdeveloper.deploy.common.SelectedProjectFiles;
import oracle.jdevimpl.deploy.common.JProjectSelectionFilter;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Comparator;
import oracle.ide.model.Element;
import java.util.Collections;
public class TreePanel
extends JPanel
BorderLayout borderLayout1 = new BorderLayout();
JScrollPane scrollPane = new JScrollPane();
JMutableTreeNode root = new JMutableTreeNode();
DefaultTreeModel treeModel = new DefaultTreeModel(root, true);
CustomJTree customJTree = new CustomJTree(treeModel);
JProject prj = null;
private HashSet spfFiles;
private SelectedProjectFiles spf;
private ArrayList filtersList;
private JProjectSelectionFilter[] filtersArray;
public TreePanel()
this(null);
public TreePanel(JProject jpr)
this.prj = jpr;
try
jbInit();
catch(Exception e)
e.printStackTrace();
public JMutableTreeNode getRoot()
{ return this.root; }
private void jbInit() throws Exception
this.setLayout(borderLayout1);
scrollPane.getViewport().add(customJTree, null);
this.add(scrollPane, BorderLayout.CENTER);
customJTree.setRootVisible(true);
root = getTreeNode(prj);
filtersArray = null;
spfFiles = null; // Release reference for gc.
treeModel.setRoot(root);
root.descendingUpdateNodes();
private boolean canBeSelected(Object object)
if (filtersArray != null)
return JProjectSelectionFilter.canBeSelected(object, filtersArray);
else if (filtersList != null)
return JProjectSelectionFilter.canBeSelected(object, filtersList);
else
return JProjectSelectionFilter.canBeSelected0(object);
private JMutableTreeNode getTreeNode(Document document)
final Icon icon = document.getIcon();
final String text = document.getShortLabel();
final TriStateBoolean checkedState;
if (spfFiles != null)
final URL documentURL = document.getURL();
if (documentURL == null)
checkedState = TriStateBoolean.FALSE;
else if (spf.isAutoInclude())
checkedState = spfFiles.contains(documentURL)?TriStateBoolean.FALSE:TriStateBoolean.TRUE;
else
checkedState = spfFiles.contains(documentURL)?TriStateBoolean.TRUE:TriStateBoolean.FALSE;
else
checkedState = TriStateBoolean.TRUE;
final JTreeCellData treeCellData = new JTreeCellData(icon, text, true, checkedState);
treeCellData.setUserObject(document);
final JMutableTreeNode treeNode = new JMutableTreeNode(treeCellData);
final ArrayList listOfChildren = new ArrayList();
final Iterator childrenIter = document.getChildren();
if (childrenIter != null)
while (childrenIter.hasNext())
listOfChildren.add(childrenIter.next());
// Sort children by short label.
final Comparator childComparator = new Comparator()
public int compare(Object o1, Object o2)
final Element e1 = (Element) o1;
final Element e2 = (Element) o2;
final String l1 = e1.getShortLabel();
final String l2 = e2.getShortLabel();
if (l1 == l2) { return 0; }
else if (l1 == null) { return -1; }
else { return l1.compareTo(l2); }
Collections.sort(listOfChildren, childComparator);
final Iterator iter = listOfChildren.iterator();
while (iter.hasNext())
final Object child = iter.next();
if (canBeSelected(child))
final JMutableTreeNode childNode = getTreeNode((Document) child);
treeNode.add(childNode);
return treeNode;

Similar Messages

  • Where are the JavaDocs for the Thor.API.Operations.XXClient classes?

    I am not seeing any of the JavaDocs for the actual Client classes that should be available for use in OIM. The Interfaces are nice but without documentation of the Client classes we are left to guess how to use the Interfaces.
    Has anyone developed some guidelines on how to use the ReportOperationsClient class? I did the following:
    Defined all of the inputs for the ReportInput class constructor.
    Created the ReportInput instance with these inputs.
    Set the stored procedure name.
    Created an instance of ReportOperationsClient
    Called getPagedReportData with my ReportInput instance.
    No luck.

    Martin,
    I am aware of the documentation location and am looking at the Thor.API.Operations JavaDocs right now.
    The Intf Interfaces are all there but there are no JavaDocs for the Clients.
    Here is the listing from the JavaDocs:
    Interface Hierarchy
    Thor.API.Operations.AttestationDefinitionOperationsIntf
    Thor.API.Operations.AttestationOperationsIntf
    Thor.API.Operations.ConnectorInstallationOperationsIntf
    Thor.API.Operations.ErrorOperationsIntf
    Thor.API.Operations.GCOperationsIntf
    Thor.API.Operations.RemoteManagerOperationsIntf
    Thor.API.Operations.ReportOperationsIntf
    Thor.API.Operations.TaskDefinitionOperationsIntf
    Thor.API.Operations.tcAccessPolicyOperationsIntf
    Thor.API.Operations.tcAdapterOperationsIntf
    Thor.API.Operations.tcAuditOperationsIntf
    Thor.API.Operations.tcDeploymentUtilityOperationsIntf
    Thor.API.Operations.tcEmailOperationsIntf
    Thor.API.Operations.tcEntitlementsOperationsIntf
    Thor.API.Operations.tcExportOperationsIntf
    Thor.API.Operations.tcFormDefinitionOperationsIntf
    Thor.API.Operations.tcFormInstanceOperationsIntf
    Thor.API.Operations.tcGroupOperationsIntf
    Thor.API.Operations.tcHelpOperationsIntf
    Thor.API.Operations.tcImportOperationsIntf
    Thor.API.Operations.tcITResourceDefinitionOperationsIntf
    Thor.API.Operations.tcITResourceInstanceOperationsIntf
    Thor.API.Operations.tcLocationOperationsIntf
    Thor.API.Operations.tcLookupOperationsIntf
    Thor.API.Operations.tcObjectOperationsIntf
    Thor.API.Operations.tcOrganizationOperationsIntf
    Thor.API.Operations.tcPasswordOperationsIntf
    Thor.API.Operations.tcPermissionOperationsIntf
    Thor.API.Operations.tcPropertyOperationsIntf
    Thor.API.Operations.tcProvisioningOperationsIntf
    Thor.API.Operations.tcQueueOperationsIntf
    Thor.API.Operations.tcReconciliationOperationsIntf
    Thor.API.Operations.tcRequestOperationsIntf
    Thor.API.Operations.tcRulesOperationsIntf
    Thor.API.Operations.tcSchedulerOperationsIntf
    Thor.API.Operations.tcUserOperationsIntf
    Thor.API.Operations.tcWorkflowDefinitionOperationsIntf
    Here is a listing from the Jar file:
    [bea@xxxxxxxxx lib]$ jar tf xlAPI.jar | grep Thor | grep API | grep Operations
    Thor/API/Operations/
    Thor/API/Base/tcUtilityOperationsIntf.class
    Thor/API/Operations/AttestationDefinitionOperationsClient.class
    Thor/API/Operations/AttestationDefinitionOperationsIntf.class
    Thor/API/Operations/AttestationOperationsClient.class
    Thor/API/Operations/AttestationOperationsIntf.class
    Thor/API/Operations/ConnectorInstallationOperationsClient.class
    Thor/API/Operations/ConnectorInstallationOperationsIntf.class
    Thor/API/Operations/ErrorOperationsClient.class
    Thor/API/Operations/ErrorOperationsIntf.class
    Thor/API/Operations/GCOperationsClient.class
    Thor/API/Operations/GCOperationsIntf.class
    Thor/API/Operations/RemoteManagerOperationsClient.class
    Thor/API/Operations/RemoteManagerOperationsIntf.class
    Thor/API/Operations/ReportOperationsClient.class
    Thor/API/Operations/ReportOperationsIntf.class
    Thor/API/Operations/TaskDefinitionOperationsClient.class
    Thor/API/Operations/TaskDefinitionOperationsIntf.class
    Thor/API/Operations/tcAccessPolicyOperationsClient.class
    Thor/API/Operations/tcAccessPolicyOperationsIntf.class
    Thor/API/Operations/tcAdapterOperationsClient.class
    Thor/API/Operations/tcAdapterOperationsIntf.class
    Thor/API/Operations/tcAuditOperationsClient.class
    Thor/API/Operations/tcAuditOperationsIntf.class
    Thor/API/Operations/tcDeploymentUtilityOperationsClient.class
    Thor/API/Operations/tcDeploymentUtilityOperationsIntf.class
    Thor/API/Operations/tcEmailOperationsClient.class
    Thor/API/Operations/tcEmailOperationsIntf.class
    Thor/API/Operations/tcEntitlementsOperationsClient.class
    Thor/API/Operations/tcEntitlementsOperationsIntf.class
    Thor/API/Operations/tcExportOperationsClient.class
    Thor/API/Operations/tcExportOperationsIntf.class
    Thor/API/Operations/tcFormDefinitionOperationsClient.class
    Thor/API/Operations/tcFormDefinitionOperationsIntf.class
    Thor/API/Operations/tcFormInstanceOperationsClient.class
    Thor/API/Operations/tcFormInstanceOperationsIntf.class
    Thor/API/Operations/tcGroupOperationsClient.class
    Thor/API/Operations/tcGroupOperationsIntf.class
    Thor/API/Operations/tcHelpOperationsClient.class
    Thor/API/Operations/tcHelpOperationsIntf.class
    Thor/API/Operations/tcITResourceDefinitionOperationsClient.class
    Thor/API/Operations/tcITResourceDefinitionOperationsIntf.class
    Thor/API/Operations/tcITResourceInstanceOperationsClient.class
    Thor/API/Operations/tcITResourceInstanceOperationsIntf.class
    Thor/API/Operations/tcImportOperationsClient.class
    Thor/API/Operations/tcImportOperationsIntf.class
    Thor/API/Operations/tcLocationOperationsClient.class
    Thor/API/Operations/tcLocationOperationsIntf.class
    Thor/API/Operations/tcLookupOperationsClient.class
    Thor/API/Operations/tcLookupOperationsIntf.class
    Thor/API/Operations/tcObjectOperationsClient.class
    Thor/API/Operations/tcObjectOperationsIntf.class
    Thor/API/Operations/tcOrganizationOperationsClient.class
    Thor/API/Operations/tcOrganizationOperationsIntf.class
    Thor/API/Operations/tcPasswordOperationsClient.class
    Thor/API/Operations/tcPasswordOperationsIntf.class
    Thor/API/Operations/tcPermissionOperationsClient.class
    Thor/API/Operations/tcPermissionOperationsIntf.class
    Thor/API/Operations/tcPropertyOperationsClient.class
    Thor/API/Operations/tcPropertyOperationsIntf.class
    Thor/API/Operations/tcProvisioningOperationsClient.class
    Thor/API/Operations/tcProvisioningOperationsIntf.class
    Thor/API/Operations/tcQueueOperationsClient.class
    Thor/API/Operations/tcQueueOperationsIntf.class
    Thor/API/Operations/tcReconciliationOperationsClient.class
    Thor/API/Operations/tcReconciliationOperationsIntf.class
    Thor/API/Operations/tcRequestOperationsClient.class
    Thor/API/Operations/tcRequestOperationsIntf.class
    Thor/API/Operations/tcRulesOperationsClient.class
    Thor/API/Operations/tcRulesOperationsIntf.class
    Thor/API/Operations/tcScheduleTaskOperationsClient.class
    Thor/API/Operations/tcScheduleTaskOperationsIntf.class
    Thor/API/Operations/tcSchedulerOperationsClient.class
    Thor/API/Operations/tcSchedulerOperationsIntf.class
    Thor/API/Operations/tcUserOperationsClient.class
    Thor/API/Operations/tcUserOperationsIntf.class
    Thor/API/Operations/tcWorkflowDefinitionOperationsClient.class
    Thor/API/Operations/tcWorkflowDefinitionOperationsIntf.class
    As I described in my original post, and as you can plainly see, there is a Client class that is the "worker" class for each of the Interfaces. Without these worker classes, we would be at our own devices to determine how to implement these Interfaces, so I am thankful they are being provided, but the issue is that I am needing documentation for them, since specifically the ReportOperationsClient does not seem to work based on my interpretation of the Interface.
    Thanks for your interest. If the source code for the Operations Clients does not have embedded JavaDocs, that would explain the issue. In that case I would need to have the source code so I can troubleshoot the issues I am having with this class. I opened an SR Friday but have not had any response yet.

  • Javadoc for Bluetooth API?

    Where can I download the Javadoc for Bluetooth API?

    the javadoc is available with SUN WTK2.5 (<wtk_folder>/docs/api/jsr082)

  • Where can I find the javadocs for HTTPClient.jar

    Hi,
    Where can I find the javadocs for HTTPClient.jar shipped with the WLP4.0.
    Does this support https?
    Thanks
    Dalia

    In the API Reference we can get the Java Docs for the classes you looking for.
    As per previous post the reference link is http://download.oracle.com/docs/cd/E22630_01/Platform.1002/apidoc/index.html

  • Where can I get the javadocs for javax.midroedition.sip ?

    I downloaded and installed the Wireless ToolKit. It appears to contain the jar files for JSR180 (SIP) but there are no javadocs for SIP.
    Where can I download the javadocs for javax.microedition.sip ??

    The driver should be already included with your OS.
    Canon drivers are here.
    EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
    Photoshop CS6, ACR 9, Lightroom 6

  • How & where to get Javadoc for CRM ISA 5.0?

    Hi, SDN Fellows.
    I read a forum blog, knowing that to get the javadocs of CRM ISA applications, I should perform this step: when building the internet-sales-ear-file, the sources are included as zip-file within the ear-file. after unzipping the sources you can generate javadocs on your own.
    In fact, what I really want is the Javadocs for the standard delivered CRM package, i.e. the default BOM, BaseAction classes (com.sap.isa.core.InitAction, com.sap.isa.core.BaseAction, com.sapmarkets.isa.isacore.action.EComBaseAction, com.sap.isa.isacore.action.IsaCoreBaseAction, com.sap.isa.core.UserSessionData), jsp, UILayout tags, message classes, and config-file javadocs.
    Can anyone point me where I can get this?
    Thanks,
    Kent

    Hi Kent,
    If you have the Java Component of ISA, then you can extract the javadoc which is supplied in it.
    Please check whether you have the SAPSHRJAV<version>.sca, if not download it from SAP Market Place.
    You need to open this software component using Winzip and inside it you will another zip file by name, "crmshrjavadoc.zip"
    When you open it you'll see a javadoc.ppa file  rename it to javadoc.zip and extract it within a folder.
    In the extracted folder you'll find all the required Javadocs along with API's and Interfaces.
    Hope you'll find the required documents inside it.
    Regards,
    Prashil

  • How do I link the javadoc for one jar to another?

    I'm starting to work on the javadocs for my project. It consists of three JAR files. The problem is I haven't figured out is how to link the javadoc for one JAR to that for another jar. So if JAR A declares class X and JAR B has class Y extend class X, they need to be linked. But the javadoc output only has plain text there. What am I doing wrong? Something like @see com.u3e.tests.tools.X is output as text, not a link. I have the same problem for any @see pointing to part of the JDK. @see java.lang.Object is text.
    My project is NetBeans IDE based.  Do I need to manually specify something on the command line?  I see the -sourcepath and -classpath command line options, but don't know if those would help or not.  Ideally, there would be a place directly in the Documentation portion of the properties for each JAR to list that, but I don't see it.  The various JARs are listed under the libraries section as needed to satisfy dependencies.

    The best way IMO is to sync each iPad with your computer. Having all your stuff backed up on a computer is a good idea anyway. Just read how many folks here are trying to recover lost stuff that could easily be copied back from either backup or iTunes on the computer.
    Sync both iPads to the computer. Transfer all photos to the same computer. Then sync again selecting which items you want on each iPad.

  • Where is the jar for me to import?

    import javax.servlet.http.*; <--- showing error
    import kr.pe.okjsp.util.*;
    import com.oreilly.servlet.MultipartRequest;
    public class WriteServlet extends HttpServlet {  <--- showing error
    long long time ago, there was
    server.jar
    but in java 5.0, where is the jar for me to import?
    It would be really appreciated. Do I have to download j2ee for this?
    My memory is fuzzy...
    Thanks -

    Yes, it is part of EE not SE. Or you can get it/them from your application server's lib dir (which may or may not be a better choice).

  • How to download the Javadoc for Java 7

    I can't find the download for the Javadoc for Java 7. This is needed for the NetBeans auto help function. Where is it please?

    This might help - http://download.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html
    HTH
    Srini

  • Javadoc for oracle java classes

    Hi there!
    Is there anywhere a Javadoc for all Oracle Java Packages? I've found a Javadoc for oracle.forms.Jdapi, but it would be useful to get a Javadoc for all Oracle classes
    thx
    Christian

    Hi,
    some of teh JavDocs are contained in the JDeveloper online help, others are available in the documentation
    http://download-uk.oracle.com/docs/cd/B31017_01/web.htm
    If you are aftre Forms related Javadocs, the Oracle Forms UI docs are not published
    Frank

  • Where are the drivers for HP LaserJet 5P for Windows 8.1 (64bit)?

    Had been using HP LaserJet 5p printer with HP LaserJet 5p printer driver, but had printer disconnect for a few months due to not have black toner.  Now I want to use the printer and my control panel does not show HP Laser 5p printer for my tablet but shows it for my laptop.   I can not find the driver on the HP support list and the support list does not recognize  HP LaserJet 5p.   
    Where are the drivers for HP LaserJet 5p for windows 8.1 (64bit)??????

    Hi,
    Basic print drivers are available for the HP Laerjet 5P via Windows Update.
    Follow these steps to install the printer drivers on Windows 8.1:
    http://h20564.www2.hp.com/hpsc/doc/public/display?docLocale=en_US&docId=emr_na-c03470332#N100AA
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • I have a 4g classic iPod.Suddenly almost all my games won't play and I get a message to go to the site but there is nothing there for me. Where are the games for my iPod and what has changed to make my games no longer Play?

    Most of the games on my iPod classic 4g will not play anymore. I get a message that is of no help and when i synced the games they disappeared. What is going on and where have the games for iPods on iTunes gone ?

    Apple removed the clickwheel games from the iTunes Store back in September. 
    Have you tried a hard reset of the iPod to see if that helps resolve the issue of not being able to play the games?  To do this, first make sure the Hold Switch is in the OFF position, then press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    B-rock

  • By mistake I uninstalled my Acrobat someting, which gave me the opportunity to print .pdf and color-mark text. My licence key is [removed by moderator]. What is the name of the product? Where is the link for download and reinstall? Please help me r

    By mistake I uninstalled my Acrobat someting, which gave me the opportunity to print .pdf and color-mark text. My licence key is [removed by moderator - never disclose publicly]. What is the name of the product? Where is the link for download and reinstall? Please help me rapidly, Best regards / Stefan

    Sign in to your Adobe account online and look in the Plans/Products sections to see which program it might have been.

  • Where is the button for HP Director in Windows 7?

    Where is the button for HP Director in Windows 7?  Trying to find the printer cartridge ink levels.  This is very easy to do on Canon printers.  Hopefully I can accomplish the same thing on an HP in at least a day.  I've been looking for about an hour, so far.
    Very frustrated.

    One ? should suffice, and why the capital letters?  Try to remain calm.  I know Photoshop can be frustrating, but In the grand scheme of things your inability to find a control in an application you're using really doesn't need such emphasis...  Please look up "netiquette" when you have a chance.
    Try hovering your cursor over things and look at the ToolTip help balloons that pop-up.
    You can add a Layer Mask by choosing Layer - Add Layer Mask from the menus.
    If you're seeking the icon on which to click to begin painting on a Layer Mask, this is the one you want:
    If you are talking about making layers visible or invisible, that's the little eyeball icon at the left of each layer in the Layers palette.
    -Noel

  • Where are the bullets for adobe. im creating a document and they are not in the toolbar

    where are the bullets for adobe. im creating a document and they are not in the toolbar

    ADOBE PRO   I JUST GOT IT A FEW MONTHS AGO

Maybe you are looking for

  • How can I import 100s of *.ics individual calendar events & todo's from SL into ML Calendar?

    Hi, This question is RE a clean install of ML ... moving from SL (which I did a while back when the HDD with SL died - luckily I had a TM backup). I have a number of calendar events (including to-do's) that I need to transfer to the new ML operating

  • Free and premium BC Templates

    Hi everyone, I wanted to introduce our marketplace of Business Catalyst Templates and to invite you to share your ideas for new BC Templates. Template Bay is a marketplace of free and premium Business Catalyst Templates. After designers submit their

  • Ringer jack on headphones need help

    I've read the discussion groups on the iphone locking into the headset position. I plugged and unplugged the headset multiple times... Didn't work... And the help line at Apple Care told me to do a total reboot of the iphone. I've done this three tim

  • Runtime Control Creation

    Hi, I want to create Check-Boxes or Radio-Buttons on Forms at runtime while having certain conditions... How can I create those on Runtime? Any help will be appreciated. Thanks.

  • "Scale to Frame Size" option - won't I lose quality?

    Hello, I have a sequence in 720p and I have most of the videos in 1080p. I want to scale all of them once, so I select them all, go to Clip->Video Options->Scale to Frame Size. But, the Scale Size shows all the time as a 100%, even after the clips ar