To access the definitions of TaskFlow

Is it possible in the code PhaseListener for discover the Taskflow belong (if any) the view and how to access the definition of the taskflow?

Hello

ControllerContext.getInstance () .getCurrentViewPort () .getTaskFlowContext () .getTaskFlowId)

http://download.Oracle.com/docs/CD/E17904_01/apirefs.1111/e10651/Oracle/ADF/controller/ControllerContext.html

Frank

Tags: Java

Similar Questions

  • access the definitions of point-set up

    for some reason, I just can "t type in my head around manual definitions.

    I would like to implement one of these things for my wireless router.   It lights up in a remote area of the wireless router and plug in a laptop or a pc that does not have wireless capability.  I understand the real con - fig (wep ssid), just not what structure to use.  ad-hoc, infrastructure?

    out on the terrace

    receive the wireless signal

    connect on wireless or portable pc and be connected

    ver 2.8 wap11 access point

    If you want to use the WAP11 as a client device on a PC that doesn't currently have a wireless capability.

    Mode Client AP is the way to go.

    Preconfigure the WAP11 depending on your network.

    The value thwe default gateway IP address of your router.

    Set the WAP11 to AP Client mode and do a study site for you sure have the right MAC address of your router.

    Concerning

    Fred

  • How to access the managed bean taskflow action result?

    Hi all
    I have a requirement where I have two areas of text (username and password) and a SignIn button. When the user clicks login, my action managed bean will run the view object and get the password for this user name. And that's why it will compare the password presented by the user and the password came from the view object. I a taskflow, in which I have two points of view, we're signIn page and other is the home page, and the result of the action is successful.
    The managed bean method here signIn Page for SignIn button.

    public String execute() {}
    String EnteredPassword = PassEncrypt();
    ApplicationModule am = ADFUtils.getApplicationModuleForDataControl ("AppModuleDataControl");
    ViewObject myView1 = am.findViewObject("LogindetailsView1");
    System.out.println ("Usrname is" + this.) (Username);
    myView1.setNamedWhereClauseParam ("v_Username", this.) (Username);
    myView1.executeQuery ();
    DCBindingContainer links =
    (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();
    DCIteratorBinding empIter = bindings.findIteratorBinding("LogindetailsView1Iterator");
    String DBPassword = empIter.getCurrentRow ().getAttribute("Password").toString ();

    System.out.println ("password is" + DBPassword);

    {if (EnteredPassword.Equals (dbpassword))}

    Here, I need to call the result of success, which will allow the user to get access to the display of the home page in taskflow.

    }
    else {}
    FacesMessage fm =
    new FacesMessage (FacesMessage.SEVERITY_ERROR, "Please check your name of user and password",
    "Please check your name of user and password");
    FacesContext.getCurrentInstance () .addMessage (null, fm);
    }
    Returns a null value.
    }

    If this can be done using the method call in taskflow then how could use it in my script?
    Please suggest.
    Thank you.

    you have a rule of navigation between these two pages
    If so, simply return the navigation rule name

    if(EnteredPassword.equals(DBPassword)) {
    return "success";
    }
    
  • Publish all by accessing the data in the row selected in the table of the ADF...

    Hello

    I try to get the data of the selected line in the bean on the change of SelectOneChoice in a column of table of the ADF.

    There are two definitions of node in the iterator. When I try to access the data in the row. I see that the first definition of node data.
    How to access the definition data another node?

    I'm trying to access the "sponsorId" of the iterator. I use the code below. But his return null pointer exception.

    The code I use to access the data in the row:

    DCBindingContainer links =
    (DCBindingContainer) BindingContext.getCurrent () .getCurrentBindingsEntry ();
    DCIteratorBinding = dcItteratorBindings
    bindings.findIteratorBinding ("sponsorIterator");
    ViewObject voTableData = dcItteratorBindings.getViewObject ();
    Line rowSelected = voTableData.getCurrentRow ();
    System.out.println (":" + rowSelected.getAttribute ("sponsorId")); I am able to see the data correctly for sponsorCodeDesc, sponsorPercentage, sponsorStatusDesc

    This is the iterator used for the table (page def):

    < Tree IterBinding = "sponsorIterator" id = "sponsor1" >
    < nodeDefinition DefName = "org.ieee.internal.ws.proxy.conf.types.ConferenceType.Sponsors.Sponsor"
    Name = "sponsor10" >
    < AttrNames >
    < item Value = "sponsorCodeDesc" / >
    < item Value = "sponsorPercentage" / >
    < item Value = lie "sponsorStatusDesc" = "sponsorStatusDesc" / >
    < / AttrNames >
    < accessors >
    < item Value = "sponsorDetails" / >
    < / accessors >
    < / nodeDefinition >
    < nodeDefinition DefName = "org.ieee.internal.ws.proxy.conf.types.SponsorType"
    Name = "sponsor11" >
    < AttrNames >
    < item Value = "sponsorId" / >
    < item Value = "sponsorName" / >
    < item Value = "isIEEE" / >
    < item Value = "isNonProfit" / >
    < item Value = "sponsorAcronym" / >
    < item Value = "sponsorDesc" / >
    < item Value = "sponsorEmail" / >
    < item Value = "sponsorComment" / >
    < item Value = "sponsorTypeId" / >
    < item Value = "sponsorTypeDesc" / >
    < item Value = "sponsorActive" / >
    < item Value = "societyNumber" / >
    < item Value = "businessUnit" / >
    < item Value = "createdBy" / >
    < item Value = "updatedBy" / >
    < / AttrNames >
    < / nodeDefinition >
    < / tree >

    you have not yet a selectionlistener linked to the table... to make the currentrow as the selectedRow...
    Can u please add the selectedRowKeys and the selectionlistener in the table as

    selectedRowKeys = "#{bindings.sponsor1.collectionModel.selectedRow} '"
    selectionListener = "#{bindings.sponsor1.collectionModel.makeCurrent} '"

  • Change the definition of the materialized view while maintaining access for users uninteruupted

    Hello

    We have a system report and the need to change the report definition mv access - like to do it without interruption.

    Is this possible?

    the sql behind mv was change picks up so column of another table.

    Have you heard but not used for dbms_redefinition tables

    Thank you

    It is built in the Oracle solution for this one, where you can edit the definition WITHOUT interruption. You can drop the materialized view existing with the clause "save table" and rebuilt the view materialized on 'predefined table'. I googled this example for you

    create materialized view mv1 as select dept , count(*) as cnt from scott.emp;

    We want to change the statement so that only dept more 5 will be calculated

    drop materialized view mv1 preserve table;
    

    Notice that PRESERVE TABLE clause - mv1 table is not droped - single layer mview.

    desc mv1
    

    now, we create the mview with a different query on top of the existing table

    create materialized view mv1 on prebuilt table as  select dept , count(*) as cnt from scott.emp where dept > 5;
    

    Notice that on prebuilt table the mview uses the existing object clause.

    exec dbms_mview.refresh_mview('mv1');
    

    http://StackOverflow.com/questions/18085894/redefine-MATERIALIZED-view-with-no-downtime

    http://Arup.blogspot.com/2009/01/ultra-fast-MV-alteration-using-prebuilt.html

  • Find the definition of a word in Mail.app

    If you right-click a Word when you compose an e-mail message, the previous versions of Mac OS x would provide a dictionary definition. With macOS Sierra, he spots a wikipedia article which is often unnecessary, for the purposes of the definition of a dictionary. The dictionary has disappeared or is at - it another way to access?

    Arrived on demand > dictionary > Preferences, then drag your dictionary preferred upward. You can also turn off Wikipedia by unchecking the checkbox.

  • Want to 700-230: how to access the BIOS on machine with wireless keyboard and no keyboard on the PC port

    Hi all

    I have a HP Envy 700-230 which has a wireless keyboard

    How am I supposed to access the BIOS that the keyboard drivers are not loaded until after the machine and there is no normal keyboard connects on this PC for a wired keyboard

    With this kind of computor how am supposed to access the BIOS

    Obviously to start the reports a keyboard error and suggest I press ESC to access the BIOS that I can't because at startup, there is no current keyboard.

    Thanks for any help on this.

    Jeanette

    While not a definitive answer, but try a wired USB keyboard instead wireless.  There may be a setting in the BIOS to change the way the keyboard interacts at the start but, of course, you need to enter the BIOS.  Looking at the other comments on this issue, if you happen to have a keyboard PS/2 and a PS/2 to USB adapter, then this seems to be a better choice.  Plug the PS/2 on the PS/2 keyboard to USB adapter and then try that at startup to access the BIOS.  Then, find the setting to allow the keyboard to be recognized at startup.  Another solution is to move the USB port, the wireless keyboard use.  If the rear ports, move forward, if forward move backward.

    Let me know if one of these help.

  • How to access the Bios setting?

    Anyone know how to access the Bios definition please?

    Thanks in advance for your help.

    Hello

    First of all, it would be very interesting to know what unit you have.
    Generally, it should be possible to get into the BIOS by pressing ESC then F1.
    Try it.

    Good bye

  • How can I access the groups selected in DisplayNewUserDialog?

    I'm developing a user for a Deployment Manager so that the production manager can add users they are formed. I changed the simple IO to add a button 'Manage users', which is implemented as a VI.

    I have this pretty much work except when I add a user using the DisplayNewUserDialog, I see no way to access the groups that can be selected in the dialog box. Select a group in the dialog box apparently does nothing. I save the user sent to the dialog box object and "sticking". But group selection doesn't fit or I see nothing to access the selection. With the help of the DisplayEditUserDialog on the same user object correctly records the group memberships selected without having to make an additional call.

    I see that in the example CreateDeleteUsers.seq, it is a step 'Add the user to the group' who up the group by the name chosen by the user. To paraphrase the steps:

    1. Add a new user: RunState.Engine.UsersFile.UserList.SetPropertyObjectByOffset (0, 0 x 1, Locals.User)
    2. Add the user to the Group (defines the privileges): RunState.Engine.GetUserGroup (Locals.GroupName). Members.SetValStringByOffset (0, 0 x 1, Locals.User.AsUser.LoginName)

    I don't see how I can retrieve this group name ("Locals.GroupName" above) the box of dialogue, or of the user object that is returned from the dialog box programmatically. Is this a bug?

    Hi Gizmogal,

    Your application will definitely work.  Access to the RunState.Engine.UsersFile.Data.UserTemplates well I have mentioned, we must use a search string:

  • "0x80072eff", that's what I get when I try to access the windows update site. cannot go further. any ideeas?

    "0x80072eff", that's what I get when I try to access the windows update site. cannot go further. any ideeas?

    Thank you

    I think that your machine feed some MS, blocking of malware.

    Hard & more difficult scanning with multiple AV programs (not at the same time)

    You can access Kaspersky or Norton site? If this isn't the case, then you definitely a virus blocking area.

    These pages might be useful:

    http://support.Microsoft.com/kb/962007

    Run the malicious software removal tool:

    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Try to use another uninfected machine to see these articles & download latest anti programs anti-virus & updates in offline mode. Then those of the infected machine transport of optical disc.

    Don't use USB drives because the virus will try to put a back to itself on your storage device USB that will infect the machines in the future or infect your newly developed system in shape again.

    In the worst cases, or for beginners full disk HARD formatting & at the same time the formatting of USB storage are more protective defense.

    S.Chatterjee

  • to access the variables in a page in another page qml

    Hey gang,

    I've been watching some of the other problems autour to access the variables from one page on another page qml qml, and I can't get this to work.

    I have a page, main.qml with a NavigationPane.  The NavPane has a Page and some containers.

    I have a property defined in the NavigationPane like this:

    NavigationPane {
        id: mainNav
        backButtonsVisible: true
        property int customInt: 2
    
        onCustomInt: {
            console.log("  -------------> App: customInt");
        }
    

    I have a ComponentDefinition for next page, called SettingsPage.qml.  In the settings, I have two drop-down lists and a slider.

    Page {
        actionBarAutoHideBehavior: ActionBarAutoHideBehavior.HideOnScroll
        id: pgSettings
    
        ScrollView {
            id: pageScroller
            scrollViewProperties.initialScalingMethod: ScalingMethod.AspectFit
            Container {
                topPadding: 25
                bottomPadding: 25
                rightPadding: 25
                leftPadding: 25
                Label {
                    text: "Settings"
                    textStyle.fontSize: FontSize.XLarge
                }
            Container {
                id: dropDown1
                topPadding: 25
                bottomPadding: 25
                rightPadding: 25
                leftPadding: 25
                DropDown {
                       id: ddOption1
                       title: "Option 1"
                       verticalAlignment: VerticalAlignment.Center
                       horizontalAlignment: HorizontalAlignment.Center
                      Option {id: o1o1; text: "One"; }
                      Option {id: o1o2; text: "Two"; }
                      Option {id: o1o3; text: "Three"; selected: true; }
                      Option {id: o1o4; text: "Four"; }
    
                    onSelectedIndexChanged: {
    
                        switch (selectedIndex){
                            case 0:
                                //
                                console.log(" -->App: Option 1 Selector, On");
                                customInt = 0;
                                break;
                            case 1:
                                //
                                console.log(" -->App: Option 1 Selector, Off");
                                customInt = 1;;
                                break;
                            case 2:
                                //
                                console.log(" -->App: Option 1 Selector, Top (default)");
                                customInt = 2;
                                break;
                            case 3:
                                //
                                console.log(" -->App: Option 1 Selector, Bottom");
                                customInt = 3;
                                break;
                        }
                    }
                }
            } }
    

    I look forward to the the statement will change the level property NavPane, called customInt, but it doesn't.

    the output of the console shows that the ' App: Option 1 selector "gets selected in the dropdown list selected index changes, but the onCustomInt() funtion slot never gets called.

    I tried "mainNav.customInt = X" too, but the parameters cannot solve the mainNav.  I get "unknown symbol 'mainNav'" error with alittle bulb.

    what I am doing wrong?

    When you call the second page, SettingsPage.qml, set it as an object.

    Don't do the following:

    attachedObjects: [
    
        ComponentDefinition {
            id: settingsPageDefinition
            source: "SettingsPage.qml"
        }
    ]
    

    Follow these steps:

    attachedObjects: [
        // Definition of the second Page, used to dynamically create the Page above.
        ComponentDefinition {
            id: settingsPageDefinition
            Settingspage{
    
            }
        }
    ]
    

    Then the second page main navigation page in the IDE.  I had the same problem with a multi-page application, I created.

  • Can not access the context in QML property

    So I have an arraydatamodel in the CPP file, I use qml-> setContextProperty (...) to set it up to allow QML to access, the strangest part is, no matter if I put it in navigationPane Page or a container, it keeps saying can't find not variable, but in the same QML in ListView, they can access it without a problem. The other weird part, it is an another QML is able to access it in the tag of the page, the same model.

    By default of the Jun 02 9000 REVIEWS asset:///main.qml:24 09:12:59.416 com.example.IntervalTimer1.testDev_ervalTimer1a7a2c2e2.427733134: ReferenceError: can't find variable: eventsModel
    By default of the Jun 02 9000 REVIEWS asset:///main.qml:110 09:12:59.416 com.example.IntervalTimer1.testDev_ervalTimer1a7a2c2e2.427733134: ReferenceError: can't find variable: eventsModel

    Here is my code

    import bb.cascades 1.0
    
    NavigationPane {
        id: navigationPane
        backButtonsVisible: false
        // Javascript definition
        function udpateTotalTimeLabel() {
            console.log("In updateTotalTimeLabel function");
            var totalHour = 0, totalMinute = 0, totalSecond = 0;
            // To debug javascript object print function
            var print = function(o) {
                var str = '';
    
                for (var p in o) {
                    if (typeof o[p] == 'string') {
                        str += p + ': ' + o[p] + '; 
    '; } else { str += p + ': {
    ' + print(o[p]) + '}'; } } return str; } console.log("EventsModel: " + eventsModel.size()); for (var i = 0; i < eventsModel.size(); i ++) { var currentEvent = eventsModel.data([ i ]); console.log("EventsEvent: " + currentEvent["EventName"]); totalHour += currentEvent["EventHour"]; totalMinute += currentEvent["EventMinute"]; totalSecond += currentEvent["EventSecond"]; } if (totalHour < 10) totalHour = "0" + totalHour; if (totalMinute < 10) totalMinute = "0" + totalMinute; if (totalSecond < 10) totalSecond = "0" + totalSecond; totalTimeLabel.text = totalHour + ":" + totalMinute + ":" + totalSecond; } function onDataReady() { console.log("Received DataReady signal"); navigationPane.udpateTotalTimeLabel(); newEventSheet.close(); } Page { id: root titleBar: TitleBar { title: "Interval Timer" } ..... onCreationCompleted: { navigationPane.udpateTotalTimeLabel(); console.log("No of EventsModel: " + eventsModel.size()); console.log("In sheet creationCompleted"); mainObj.dataReady.connect(navigationPane.onDataReady); } }

    In the PRC

    // Default empty project template
    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include "CountdownTimer.hpp"
    
    using namespace bb::cascades;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app)
    : QObject(app)
    {
        // create scene document from main.qml asset
        // set parent to created document to ensure it exists for the whole application lifetime
        QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);
    
        // Initialize the Array Data Model for holding events
        this->eventsModel = new ArrayDataModel();
        // For Testing only
        QVariantMap event;
        event["EventName"] = "Event1";
        event["EventHour"] = "00";
        event["EventMinute"] = "01";
        event["EventSecond"] = "02";
        this->eventsModel->append(event);
    
        // create root object for the UI
        AbstractPane *root = qml->createRootObject();
    
        // Registering the QTimer type to QML
        qmlRegisterType("TimerLibrary", 1, 0, "CountdownTimer");
    
        // Setting the access for QML to member variable
        qml->setContextProperty("eventsModel",this->eventsModel);
        qml->setContextProperty("mainObj",this);
    
        // set created root object as a scene
        app->setScene(root);
    }
    
    .....
    
    void ApplicationUI::refreshData()
    {
        emit dataReady();
    }
    

    Thank you.

    The fixed.

    You must call setContextProperty before calling createRootObject.

  • We have created a responsibility custom to access the Collection of quality RESP results, we get an error - you have enough privileges for the operation. Please contact your system administrator.

    Hi all

    We have created a responsibility custom to access the results of Collections only HTML page.

    Details of the liability and the Menu are also less

    Name of the RESP: XX QUALITY

    Application: Quality custom

    Menu: XXQA_QUALITY

    and there is no attached grp applications.

    Definition of menu:

    Menu name: XXQA_QUALITY

    Description of function for the submenu SEQ invites

    10 quality Workbench results results collection begins Page quality Workbench results Start Page

    quality of view finds quality results 20 results display quality results

    We show only this specific user responsibility and whenever it tries to access the page "Results from the Collection" he gives us an error.

    "You have enough privileges for the operation." Please contact your system administrator.


    If we attribute an RESP of super user of quality to this user, it allows to access the form.


    Can you kindly help us to find a solution to this problem.


    Thank you

    Maury

    Hi all

    I guess I found the answer,

    I need to join all the submenus that are part of the HTML Page.

    Results from the collection Results of quality Workbench Start Page
    Nonconformities Quality Workbench nonconformities homepage
    Corrective actions Quality Workbench action homepage
    Consultation of lots of Skip Lot of Skip quality Workbench Start Page

    Have they added those. and it worked.

    Thank you

    Maury

  • An error in the initializer of taskflow prevent other navigation

    Hello world

    Let's say I have a BTF and on this, there are two JSFF and another BTF. The two JSFF have a navigation button to access the other and one of them has a navigation button to go to the BTF. When I click on the button that makes the navigation for the other BTF, if an error occurs during the initializer of workflow, I can't do more navigation. I stay on the same page, the error is displayed in an alert box, and if I click on the navigation button to go to the other page, nothing happens.

    Looks like I need to reset or do something special, if an error occurs during a taskflow initializer. Does anyone have an idea?

    Thank you

    Guillaume

    I have it!

    I added in my model of taskflow BTF, in addition to the default exception handler, a return taskflow and an action "doReturnFromException" and in my ExceptionBean, I check if the exception is an instanceof ActivityLogicException and begins with ADFC-06015, if yes, I do "doReturnFromException" navigation and it does the trick!

    Guillaume

  • Cannot access the value of parameter task flow when type java.lang.string

    Hi all

    I use Jdev 11.1.1.6.0 version.

    Here's the scenario. I enclose the workspace.

    A taskflow (testScope1TF) simply have 2 obligatory parameters corresponding type is String and ArrayList.

    This stubborn taskflow placed as a region in a pop up (p1) in a fragment (testScope2Fragment.jsff).

    Have a command to link to testScope2Fragment.jsff and from there, I'll put the value of the parameter.

    Pop until I can access the value of the ArrayList, but for string, it is show null. However all these setting set the same bean. What is the reason for the string parameter showing null?

    Can anyone help to understand this strange behavior.

    Here is the link to sample workspace

    https://drive.Google.com/file/d/0b-8Suq_hutEhNE01blZFUnlQdzQ/view?USP=sharing

    To run the example - ScopeTestPage.jspx run-> click on commandLink 1 -> press the commandButton control pop up 1.

    In output integrated wls console like below.

    ------------------------------------------------------------------------

    Table list size: 2

    String value parameter: null

    Here's the code-testScope2Fragment.jsff.

    <? XML version = "1.0" encoding = "UTF - 8"? >

    " < = xmlns:jsp jsp:root ' http://Java.Sun.com/JSP/page "version ="2.1" "

    ' xmlns:af = ' http://xmlns.Oracle.com/ADF/faces/rich "" "

              xmlns:f=" http://Java.Sun.com/JSF/core ">

    < af:panelStretchLayout id = "PSL1" >

    < f: facet name = "center" >

    < af:panelGroupLayout layout = "scroll".

                               xmlns:af=" http://xmlns.Oracle.com/ADF/faces/rich "" "

    ID = "pgl1" >

    < af:commandLink text = ' commandLink 1 ' id = 'cl1' partialSubmit = 'true '.

    actionListener="#{viewScope.TestScope2Bean.tesctScope2Method}"/ >

    < af:popup id = binding = "#{"p1"viewScope.TestScope2Bean.viewScopePopUp}" >

    < af:dialog id = "d1".

    title = "Pop of the scope on the view upwards the Value: #{viewScope.TestScope2Bean.testScopeView String}" >

    < af:region value = "#{bindings.testScope1TF1.regionModel}" id = "r1" / > "

    < / af:dialog >

    < / af:popup >

    < / af:panelGroupLayout >

    <!-id = "af_one_column_stretched"->

    < / f: facet >

    < / af:panelStretchLayout >

    < / jsp:root >

    public class TestScope2Bean {}

    String testScopeView = null;

    ArrayList < String > testScopeViewList = new ArrayList < String > ();

    Private RichPopup viewScopePopUp;

    public TestScope2Bean() {}

    Super();

    }

    public void tesctScope2Method (ActionEvent actionEvent) {}

    Add the code in the event here...

    this.setTestScopeView (In ViewScope Test");

    testScopeViewList.add ("sjdjshdsj");

    testScopeViewList.add ("cdsfdsfsf");

    RichPopup.PopupHints applyHoldspopUpHints = new RichPopup.PopupHints ();

    this.getViewScopePopUp () .show (applyHoldspopUpHints);

    }

    {} public void setTestScopeView (String testScopeView)

    this.testScopeView = testScopeView;

    }

    public String getTestScopeView() {}

    Return testScopeView;

    }

    {} public void setViewScopePopUp (RichPopup viewScopePopUp)

    this.viewScopePopUp = viewScopePopUp;

    }

    public RichPopup getViewScopePopUp() {}

    Return viewScopePopUp;

    }

    {} public void setTestScopeViewList (ArrayList < String > testScopeViewList)

    this.testScopeViewList = testScopeViewList;

    }

    public ArrayList < String > getTestScopeViewList() {}

    Return testScopeViewList;

    }

    }

    Thanks in advance.

    I took as look at your code. The problem is that you use a popup in the region and regions have a bit different (refer to http://www.oracle.com/technetwork/developer-tools/adf/learnmore/67-queryform-in-popup-253861.pdf) in the regions. Must be addressed the refreshment of the ifNeeded region to make your sample (see image below):

    Timo

Maybe you are looking for

  • Is available for Equium P200-1ED optical drive firmware update?

    Y at - it upgrade for the HL-DT-ST DVDRAM GSA-T20N because I can't find as of ve and tried the 3 that appears for this model, but it bad and I need to update to the last. Any help with this would be great thank you.Dale

  • M9U93PA: problem wih usb driver for my laptop

    need driver for my usb driver.,. the hardware id is below. pls send the driver PCI\VEN_8086 & DEV_22B5 & SUBSYS_80C5103C & REV_21PCI\VEN_8086 & DEV_22B5 & SUBSYS_80C5103CPCI\VEN_8086 & DEV_22B5 & CC_0C0330PCI\VEN_8086 & DEV_22B5 & CC_0C03

  • printer spooling

    I'm having a printer queue problem & he looked up on your sight & have already done what they say to do and yet, I can't print. GNAT, Westmont, it E-mail address is removed from the privacy *.

  • How to get connected serial port information

    Hi all My mobile phone is connected with two activate the bluetooth device. Can anyone know how to get the port for each instrument (means which device is connected to which port)? While I can open this port directly.

  • CSM4.1 frame a policy locked by an activity that does not exist

    Hi all Had a CSM4.1 with part of politics locked by an activity - there is no activity opened well - is anyway to reset the political lock James