How to navigate on Java Source in PL/SQL Developer

As I use PL/SQL Developer for development, for the first time I just tried to write and compile a java source.
After you have compiled the source of java successfully, I can see it by selecting it in the system table USER_SOURCE where it is defined as JAVA SOURCE TYPE, but I would like to know where and if it is possible to browse it in the list on the left of the window of the PL/SQL Developer Panel as it happens for the procedures Packages... I want to say is possible to change the source of java created without selecting USER_SOURCE but somehow better as it is possible to procedures in PL/SQL Developer?
Thank you

Yes, it is possible. Select Tools-> browser. Then in the browser you can find.

Tags: Database

Similar Questions

  • How to initialize the Java variable within pl/sql block in the ODi procedure

    I have a step in the procedure of odi that using oracle technology.

    I want to initialize the java variable inside that.

    Please help me for this.

    < @ if (odiRef.getOption ("USE_PUBADMIN_PARAM_TABLE").equals("1")) {@ >}

    DENIZ

    EH_FAILURE_MESSAGE_TEXT VARCHAR2 (4000);

    EH_FIXED_VERSION VARCHAR2 (4000);

    EH_ISSUE_TYPE VARCHAR2 (4000);

    EH_PRIORITY VARCHAR2 (4000);

    EH_SUMMARY VARCHAR2 (4000);

    EH_DESCRIPTION VARCHAR2 (4000);

    EH_PROJECT_ID VARCHAR2 (4000);

    EH_COMPONENT VARCHAR2 (4000);

    EH_AFFECTED_VERSION VARCHAR2 (4000);

    EH_CUSTOMPROPXML VARCHAR2 (4000);

    EH_LOG_JIRA VARCHAR2 (4000);

    EH_CONTINUE_ON_ERROR VARCHAR2 (4000);

    EH_SEND_MAIL_NOTIFICATION VARCHAR2 (4000);

    EH_NOTIFICATION_RECIPENTS VARCHAR2 (4000);

    EH_JIRAJARPATH VARCHAR2 (4000);

    BEGIN

    SELECT

    DECODE ('< % = odiRef.getOption ("FAILURE_MESSAGE_TEXT") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_FAILURE_MESSAGE_TEXT'),' < % = odiRef.getOption ("FAILURE_MESSAGE_TEXT") % >") IN EH_FAILURE_MESSAGE_TEXT.

    DECODE ('< % = odiRef.getOption ("FIXED_VERSION") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_FIXED_VERSION'),' < % = odiRef.getOption ("FIXED_VERSION") % >") IN EH_FIXED_VERSION.

    DECODE ('< % = odiRef.getOption ("ISSUE_TYPE") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_ISSUE_TYPE'),' < % = odiRef.getOption ("ISSUE_TYPE") % >") IN EH_ISSUE_TYPE.

    DECODE ('< % = odiRef.getOption ("PRIORITY") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_PRIORITY'),' < % = odiRef.getOption ("PRIORITY") % >") IN EH_PRIORITY.

    DECODE ('< % = odiRef.getOption ("SUMMARY") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_SUMMARY'),' < % = odiRef.getOption ("SUMMARY") % >") IN EH_SUMMARY.

    DECODE ('< % = odiRef.getOption ("DESCRIPTION") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_DESCRIPTION'),' < % = odiRef.getOption ('DESCRIPTION') % >") IN EH_DESCRIPTION.

    DECODE ('< % = odiRef.getOption ("project") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_PROJECT_ID'),' < % = odiRef.getOption ("project") % >") IN EH_PROJECT_ID.

    DECODE ('< % = odiRef.getOption ("ELEMENT") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_COMPONENT'),' < % = odiRef.getOption ('ELEMENT') % >") IN EH_COMPONENT.

    DECODE ('< % = odiRef.getOption ("AFFECTED_VERSION") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_AFFECTED_VERSION'),' < % = odiRef.getOption ("AFFECTED_VERSION") % >") IN EH_AFFECTED_VERSION.

    DECODE ('< % = odiRef.getOption ("CUSTOMPROPXML") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_CUSTOMPROPXML'),' < % = odiRef.getOption ("CUSTOMPROPXML") % >") IN EH_CUSTOMPROPXML.

    DECODE ('< % = odiRef.getOption ("LOG_JIRA") % >', '0', PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_LOG_JIRA'),' < % = odiRef.getOption ("LOG_JIRA") % >") IN EH_LOG_JIRA.

    Decode('%=odiRef.GetOption("CONTINUE_ON_ERROR") % > ', '0', PBA_PARAM_PKG. ("GET_PARAMETER ('EH_CONTINUE_ON_ERROR'),' < % = odiRef.getOption ("CONTINUE_ON_ERROR") % >") IN EH_CONTINUE_ON_ERROR.

    DECODE ('< % = odiRef.getOption ("SEND_MAIL_NOTIFICATION") % >', '0', PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_SEND_MAIL_NOTIFICATION'),' < % = odiRef.getOption ("SEND_MAIL_NOTIFICATION") % >") IN EH_SEND_MAIL_NOTIFICATION.

    DECODE ('< % = odiRef.getOption ("NOTIFICATION_RECIPENTS") % >', NULL, PBA_PARAM_PKG.) ("GET_PARAMETER ('EH_NOTIFICATION_RECIPENTS'),' < % = odiRef.getOption ("NOTIFICATION_RECIPENTS") % >") IN EH_NOTIFICATION_RECIPENTS.

    PBA_PARAM_PKG. GET_PARAMETER ('EH_JIRAJARPATH') IN EH_JIRAJARPATH

    Double;

    / * I want to start as it is below. idon't want to control user source and control target conecpt.

    Please help me to below concept.

    */

    < @.

    String V_EH_FAILURE_MESSAGE_TEXT = EH_FAILURE_MESSAGE_TEXT;

    String V_EH_FIXED_VERSION = EH_FIXED_VERSION;

    String V_EH_ISSUE_TYPE = EH_ISSUE_TYPE;

    String V_EH_PRIORITY = EH_PRIORITY;

    String V_EH_SUMMARY = EH_SUMMARY;

    String V_EH_DESCRIPTION = EH_DESCRIPTION;

    String V_EH_PROJECT_ID = EH_PROJECT_ID;

    String V_EH_COMPONENT = EH_COMPONENT;

    String V_EH_AFFECTED_VERSION = EH_AFFECTED_VERSION;

    String V_EH_CUSTOMPROPXML = EH_CUSTOMPROPXML;

    String V_EH_LOG_JIRA = EH_LOG_JIRA;

    String V_EH_CONTINUE_ON_ERROR = EH_CONTINUE_ON_ERROR;

    String V_EH_SEND_MAIL_NOTIFICATION = EH_SEND_MAIL_NOTIFICATION;

    String V_EH_NOTIFICATION_RECIPENTS = EH_NOTIFICATION_RECIPENTS;

    String V_EH_JIRAJARPATH = EH_JIRAJARPATH;

    @ >

    END;

    {< @} @ >

    I have corrected this problem. No need to search on that.

  • How to get an output of server in SQL Developer

    I learn to SQL Deverloper and use it in an academic setting and Oracle at Oracle test cases.

    I know my way around SQL some but I am learning just PL/SQL.  I want to run an anonymous block and get an output for elements 'dbms_output.put_line '.

    At school, I enter my block in the worksheet "SQL" and will receive the "anonymous block finished" in the screen "output of the Script.  Then, there is a 3 screen, whose name I don't remember, but I think it's the equivalent of 'out of server.  When I open it, I have to tell him what database I use.  So I see the dbms output lines in this section 3.

    The problem is when I'm with SQL Developer to work, I see only 2 sections: "SQL worksheet" and "output of the Script.

    I looked, but couldn't find an option or a button or a window that is called something like 'exit from server' or 'view output server.'

    Can a more experienced user please help me?

    I use:

    SQL Developer Version 3.1.07

    Build a HAND - 07.42

    Linux x 86-64

    (Oracle internal):

    Instance: http://celalnx38.us.oracle.com:10507 /

    tnsnames: 10500)

    ROFL!  So I went back and looked at it again, just to be sure... and I found the DBMS OUTPUT on the VIEW menu.  LARGE as LIFE, but I've never SEEN it it is before...

  • How to create a new connection on oracle sql developer

    Hello
    I was installed oracle sql program in windows after installation I tried to create a new connection, but I get the error message: the account is locked.
    Oracle dba must install for this connection or else.i was developer sql only oracle installed on my windows machine.






    Thanks and greetings
    Prabhakar

    The account is locked at the database level and Developer SQL cannot get around that.

    You must have dba privileges to unblock, but this isn't a problem SQL Developer.

  • How to display the value of sys_context in SQL Developer?

    Hello
    I can see the results via sqlplus with the following statements:
    SYS_CONTEXT ('empno_ctx', 'empno_attrib') SELECT Empno_attrib FROM DUAL;
    SELECT * FROM SESSION_CONTEXT;
    the two retrieve correct values;
    now, since I mainly work with SQL Developer I wanted to display the results in here too;
    I ran the procedure in SQL Developer via a right click on the procedure-> run;
    He looked like he ran ok.
    However, when I do the queries above nothing is retrieved;
    any suggestions?
    Thank you
    Rgds

    It may be that the two things are running in different sessions.

    What happens if you run them in a spreadsheet?

    Start
    procedure_call;
    end;
    /
    Select sys_context...

  • drop the class java and java source

    Hello

    When I ask user_objects get some java source class and java objects

    Select * from user_objects where object_type like '% of JAVA;

    How to drop these java source and java class of the database objects

    I tried to use the following command

    Drop java class /4a524d89_AutoTransliteratorPk

    travel AutoTransliteratorPkg java source

    But I get the error ORA-29501: invalid or missing Java source, class or resource name

    Please someone help me drop these items

    Thank you
    Saaz

    java originally all in capitals or was it exactly AutoTransliteratorPkg. If its exactly AutoTransliteratorPkg then try this

    drop the java source 'AutoTransliteratorPkg '.

  • Extension of SQL Developer Java does not

    Hello

    I developed a small extension of Java to start the SQL Developer via command line and put some parameters such as the server name, user and password to create a connection when you start.

    THS connection will be deleted when closing.

    This extension was working fine until the 3.0.2 version and does not work with version 4.0.2.

    My question: are there changes in the load of an extension?

    Any help would be appreciated, thanks.


    I developed a small extension of Java to start the SQL Developer via command line and put some parameters such as the server name, user and password to create a connection when you start.

    THS connection will be deleted when closing.

    This extension was working fine until the 3.0.2 version and does not work with version 4.0.2.

    My question: are there changes in the load of an extension?

    Yes - there are MAJOR changes and they include the use of "lazy" loading of extensions.

    See note on the main page of Oracle extension exchange.

    http://www.Oracle.com/technetwork/developer-tools/SQL-Developer/Extensions-083825.html Special Note regarding Extensions developed prior to SQL

    Developer v4.0:

    With the new version of SQL Developer 4.0, an extension that was written for an earlier version of the SQL Developer will no longer work. Developer SQL is based on the JDeveloper Framework. We have updated the framework to be up-to-date with the JDeveloper 12 c version. With JDeveloper 11 g 2, they switched to an OSGI framework. The JDeveloper team issued instructions to update your extensions to be compatible with the new framework and SQL v4.0 developer.

    Note that first sentence than the previous expansions 'won't work' If you use them in 4.x

    It also appears to be bugs or incompatibilities between the extension of JDeveloper published SDK and the "new" version Sql Dev 4.x uses. The public is 12.1.2, and is one that is available for download for use in the development of an extension. SQL Dev uses version 12.1.3 and who has NOT yet been published.

    I have a new thread posted recently to ask about any aspect of this compatibility, but have not yet had all the answers:

    https://community.Oracle.com/thread/3570408

    A few simple extensions, perhaps yours, may only need a small change in the file "extension.xml" use appropriate brackets.

    Other extensions will require additional changes. One of the main changes is the new ESDK of "lazy" loading of extensions use.

    Some additional info is available on the Java.net site:

    https://Java.NET/projects/jdev-extensions/pages/trigger-hooks

  • How to flush the output of the script in sql developer

    Greetings from a newbie,
    How can I empty out the script in sql developer?

    Kind regards
    Valerie

    Flush? You can clear the output pane by pressing 'Clear' (Eraser pencil) icon: the first icon on the mini-bar to the tab tools.

    That answer your question?
    K.

  • How to navigate in one single screen to another?

    Hai, I am a beginner in java development. I need to know how to navigate a single screen to another screen. Someone knows it please help me... Thank you cordially dembele

    Just use after declaration to navigate from one screen to another screen,

    UiApplication.getUiApplication () .pushScreen (New Screen());

    popping a battery usage screen

    UiApplication.getUiApplication () .popScreen ();

  • How can I upgrade a source code?

    I tried to open a project with jdeveloper 11.1.2.2 maded in Jedeveloper 11.1.1.6 and generates this error.
    How can I migrate the source dode corretly?

    ************************************************************************************************************************
    Oracle.JPS.Common:Aug 25, 2012 10:02:10 oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Could not validate the xml content. SchemaLocation: schemaLocation = "http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" value must have even number of URI. Location: not available.
    I did my project in jdev 11.1.1.6 and I tried to open it in jdev 11.1.2.2 then gives this error:


    Oracle.JPS.Common:Aug 25, 2012 10:02:10 oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Could not validate the xml content. SchemaLocation: schemaLocation = "http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" value must have even number of URI. Location: not available.

    Oracle.JPS.Common:Aug 25, 2012 10:02:16 oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Could not validate the xml content. HVAC-complex - type. 2.4.b: the content of the 'propertySets' element is not over. A the "{"http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd": propertySet}' is expected." Location: not available.

    Oracle.JPS.Common:Aug 25, 2012 10:02:16 oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Could not validate the xml content. HVAC-complex - type. 2.4.b: the content of the 'propertySets' element is not over. A the "{"http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd": propertySet}' is expected." Location: not available.

    Calling command: Insert [of CodeEditor] [for (ListaPrecios.jspx, vcVentas.jpr, Ventas.jws)]
    Calling command: delete the previous [CodeEditor] [for (ListaPrecios.jspx, vcVentas.jpr, Ventas.jws)]
    Execution of action (11) record [JspEditor] [for (ListaPrecios.jspx, vcVentas.jpr, Ventas.jws)]
    Call to order: [of JspEditor] [for (ListaPrecios.jspx, vcVentas.jpr, Ventas.jws)]
    Finished CommandProcessor transaction on AWT-EventQueue-1 thread to the batch 0 level
    Run vcVentas.jpr Run action (160) [JspEditor] [for (ListaPrecios.jspx, vcVentas.jpr, Ventas.jws)]
    August 25, 2012 10:09:14 oracle.jdeveloper.jsp.JspConstants isExecutableNode
    SEVERE: Unexpected Exception
    java.lang.NullPointerException

    I tried to open a project with jdeveloper 11.1.2.2 maded in Jedeveloper 11.1.1.6 and generates this error.
    How can I migrate the source dode corretly?

    The installation guide contains a section on "Migrating from an earlier version":
    http://docs.Oracle.com/CD/E26098_01/install.1112/e17074/ojdig.htm#insertedID8

    Edit:
    What happens when you try to compile your application?
    I found something that might be related to your question:
    JDeveloper 11.1.1.6.0 warning ' http://xmlns.oracle.com/oracleas/schema/11/

    Published by: Jang Vijay Singh on 25 August 2012 16:37

  • How to navigate the pages of apps

    Hello

    We do not use the 'java page flow infrastructure' as has been retired, according to the information contained in
    'http://beehive.apache.org/docs/1.0/netui/overview.html '.



    If we want to use Structs framework instead.

    Our problem is to know how to navigate the weblogic underway.


    The problem we face is sailing ever that we do which are to open as a standalone page, i.e. without header, footer, or ant other menus.


    I want to open the page in the same portlet?
    is this possible?

    can someone help us in this matter

    See the next Note, under how build the Struts Portlets"in the following URL:

    Note:
    If you want to browse the WebLogic Portal struts portlet, make sure that your points of portlet to WebLogic Portal tag library, which is specified in the beginning of a JSP file import instructions. If you use a library of WebLogic Portal HTML tab, the page is redirected outside of the portal page. Thus, the portlet JSP page of strut takes up the entire page.

    http://download.Oracle.com/docs/CD/E15919_01/WLP.1032/e14244/building.htm#i1062326

    Brad

  • How can I make java objects in a schema

    Hello.. good afternoon everyone...

    How can I make java objects from a database schema?

    Assume that the credentials are scott/tiger@db1

    One other thing is that... I do cmd (command prompt) because there is no developer plsql or sqldeveloper installed in the machine.

    PLSS help... Thanks in advance...

    Hello
    That's ok. This run just to try

    DROP JAVA SOURCE "javaclass1";

    Kind regards
    Simma...

  • How can I add Java SE 8 of my browser

    I have a www.runthemodel.com/models/2006 application which requires Java to run 8. I have Java 8 is installed on my desktop. When can I access the site, I get a message 'a plugin is required to run the content. When can I access the site on my laptop, I am able to connect to the program without problem.
    Any suggestions

    To test whether Java is installed and enabled in Firefox, visit one of these Java test pages:

       Verify Java Version
       Verify Java Version (alternate)
    

    When you visit these pages, you will normally have to activate Java. How to enable Java on trusted sites, explains how. You can also see a prompt asking you to confirm that you want to run Java to Java security. This safety message isn't Java, Firefox. For more information, see the Java help page what should I do when I see a security prompt from Java?
    Activation of Java

    If Java doesn't work, make sure that the Java plugin is enabled in the Add-ons Manager tab:

       Click the menu button New Fx Menu and choose Add-ons. The Add-ons Manager tab will open.
       In the Add-ons Manager tab, select the Plugins panel.
       Click on the Java(TM) Platform plugin to select it.
       If Java is disabled, click on Never Activate to open its drop-down menu and select the option to activate Java. The recommended (default) option is Ask to Activate, which lets you run Java when prompted.
    

    Note: You only need to activate the "Java (TM) Platform" plugin, if it is disabled. The plugin "Java Deployment Toolkit" is used by Java developers to detect your version of Java and deploy their Java applications and does not need to be enabled for Java to work.
    Troubleshooting

    If Java is installed but does not work, try these solutions:
    Java plugin does not appear in the Add-ons Manager

    If the Java plugin does not appear in the add-on Manager, even if Java is installed, try each of the following values, one at a time and then reopen Firefox to see if that solves the problem:
    Delete the pluginreg.dat file

    With completely closed Firefox, delete (or rename) the file pluginreg.dat is located in the Firefox profile folder (it will be regenerated once you restart Firefox, but other plug-ins that you can have turned off will be activated). See re - initialize the plugins database to get detailed instructions.
    Ensure that Java is enabled in the Java Control Panel

    From Java 7, Java Control Panel includes the security option, 'Enable Java content in the browser', which is selected by default. If this option will prevent Java applets from running in any browser and the Java plugin will no longer appear in the Firefox Add-ons Manager. Make sure that the content for activate Java in the browser is selected in the Security tab of the Panel control Java. See this Java help page for more details.
    Make sure that the 32-bit version of Java is installed

    On 64-bit Windows, if you have the 64-bit version of Java installed, the Java plugin is available. Releases current Firefox are a 32-bit browser, and you need to install the 32-bit version of Java.
    Make sure that the plugin scanning is not disabled

    Mozilla browsers use the plugin scan to locate the plugins installed, so you must ensure that the preference of plugin.scan.plid.all has not been disabled:

       In the Location bar, type about:config and press Enter.
           The about:config "This might void your warranty!" warning page may appear. Click I'll be careful, I promise! to continue to the about:config page.
       Search for the preference plugin.scan.plid.all
       If it's been set to false, right-click on it and select "Reset".
    

    Uninstall if installed JavaFX

    In some cases, after upgrading from a version earlier than Java Java 7 Update 10 or higher, the plugin java (TM) Platform is no more detected. This can be caused by a conflict with Java and a stand-alone JavaFX installation that prevents the Java plugin to be properly registered. To solve the problem, uninstall JavaFX. For more information, see the java.com help page.
    Other solutions

    If Java is installed and enabled (see above) but does not work properly, try the following:
    Remove outdated Java plugin files

    Ensure that multiple versions of the java plugin (TM) Platform are not detected. For example, if 51 Java 7 update is installed, the java plugin (TM) Platform in the tab of the Add-ons Manager should be among the Java (TM) Platform SE 7 U51. If you see other versions of "Java (TM) Platform" listed, uninstall the older versions (see how can I uninstall Java on my Windows computer?) or otherwise remove manually (see manually uninstalling a plugin).
    Check for other software that may block Java

    Even if Java is installed and enabled in Firefox, it may be blocked by other software or Firefox Add-ons, for example:

       The ZoneAlarm Pro software firewall can block Java. For more information on enabling Java through this program, see the ZoneAlarm Pro forum.
    
       The NoScript extension for Firefox will block Java. For more information, see the NoScript FAQ.
    

    Additional resources

       The Java FAQs page at java.com answers some frequently asked questions.
    

    Based on information from Java (mozillaZine KB)

    Share this article: http://mzl.la/KR1fgO

    This article has been useful?

  • How can I allow Java 7.55 on Firefox 29?

    In collaboration with a training site that requires Java. I have the latest version of Java Runtime (55-7), Firefox blocks seem to note specifically on built 25 to 44, but maybe later built as well. My build is blocked.
    I tried a section which describes the release on a trusted site, but can't find how to get the Java icon in the access address bar unlock options.
    Compaq Presario running XP, 2.2 GB of memory, 500 GB disk space, connection ADSL2 + provider.
    The basic problem is the delay and distortion of sounds in games designed to measure the speed of reflex, and blocked Java is the only incompatibility that I can find the published requirements.

    Thank you, Alice. I've been chasing the wrong Hare. In view of the Java plugin platform, it is allowed, and so my core of sound distortion problem is not to do with plugins and maybe not Mozilla. Big step forward.

  • Where is View Source? How can we consider the source code of a Web site?

    Where is View Source? How can we consider the source code of a Web site?

    View the Source used to access via a drop down menu, but is no longer. Why?

    I use Firefox 24.0.

    1.) get in Firefox.
    2.) open any page you want to view the source code.
    3.) after full opening of the page "right-click" then you can see the source view of the page, click on it to see the Source of the page.
    Thank you.

Maybe you are looking for

  • Energy star office 101-303 na support assistant where will I find?

    Hi all I just bought the computer above. My last Office H P had a H P support help ants sitting in the bar waiting to be clicked open tasks. Here, there are different functions for things like automatic updates, fixing problem, support etc. My proble

  • Satellite M100-164, dosen't start, blue flashing light

    Yesterday, after returning home from work, I played my favorite game World of warcraft. I was playing on the bed and I was too lazy to go and put it to load, so I went with the game running on the computer, I wake up the next day and of course the ba

  • Using the 'current default values do' as a control on the front panel

    Hello I'm building a VI that uses a lot of digital controls. I want to use "do current default values" as a control Boolean on the front panel for the user. Is it possible to implement when the program is running? What would be an alternative, if thi

  • Using a MSP430 to control a H-bridge

    Hello I was assigned to a project to use a MSP430 microcontroller to program a PWM ranging from 0.2 to 0.9 to drive an H-bridge and use LabView to change the code. What I'm wanting to do, is create a VI that allows the user to control the range of nu

  • LaserJet 5 C3916A: Driver for windows 10

    Drivers are available for Laserjet 5 on Windows 10