Based on another selection LOV LOV

Hello

Apex Version: 4.2

I struggled to get a LOV to be based on the selected value of an another LOV on the same page without submitting the page.

For example. I have two LOV ' page.

The first is a LOV region and the second is a LOV box.

I want the list returned by the LOV area to include only the areas of the region which has been taken from the area of LOV.

Is this possible without having to submit the page?

I'd appreciate any help.

Concerning

Dominic

Maguzzi wrote:

Apex Version: 4.2

I struggled to get a LOV to be based on the selected value of an another LOV on the same page without submitting the page.

For example. I have two LOV ' page.

The first is a LOV region and the second is a LOV box.

I want the list returned by the LOV area to include only the areas of the region which has been taken from the area of LOV.

Is this possible without having to submit the page?

Integrated support in cascade LOV is addressed in the documentation.

Tags: Database

Similar Questions

  • Dynamically update list of Val, based on another selection list?

    4.2.1

    Hello world

    We have two LOVs. Both were static values. LOV1 has values static 1,2,3,4.  LOV2 has values static 10,20,30,40 and some texts. Now when the user selects 2 and 4 of LOV1, then LOV2 should display only 10 and 20.

    I know there are waterfall LOV in 4.0 from, but I think that works very well for the table based LOV query? You are not sure if they can be used for static ones? Any help or suggestions on how to do it?

    Thank you

    Ryan

    ryansun wrote:

    4.2.1

    Hello world

    We have two LOVs. Both were static values. LOV1 has values static 1,2,3,4.  LOV2 has values static 10,20,30,40 and some texts. Now when the user selects 2 and 4 of LOV1, then LOV2 should display only 10 and 20.

    I know there are waterfall LOV in 4.0 from, but I think that works very well for the table based LOV query? You are not sure if they can be used for static ones? Any help or suggestions on how to do it?

    Use the built-in support in cascade LOV by converting the static LOVs for dynamic queries, including the relevant restrictions in the WHERE clause in LOV2:

    LOV1

    select '1' lov_label, '1' lov_value from dual
    union all
    select '2', '2' from dual
    union all
    select '3', '3' from dual
    union all
    select '4', '4' from dual
    

    LOV2

    select '10' lov_label, '10' lov_value from dual
    union all
    select '20', '20' from dual
    union all
    select '30', '30' from dual where :p1_lov1 not in ('2', '4')
    union all
    select '40', '40' from dual where :p1_lov1 not in ('2', '4')
    
  • change LOV based on another field value

    I have a need to change the LOV selection list element of a page based on the selection in the selection list on the page another element. In other words, for a page element that is a selection list, so I need to use a LOV normally and a different LOV if the value of a different page element is set to X.

    Dynamic action would be useful here (change where select list 1 = x), but I do not know how to take the measurements of the evolution of the LOVsfor select list 2 based on this action.

    Thanks in advance!

    John

    Assuming you are using apex 4.0 or later...

    Article P23_GEAR

  • Select P23_GEAR_TYPE as "LOV cascade.
  • Place the items P23_SEASON, P23_FIELDOFFICE as "Page Elements should send"
  • Put the SQL query

    select distinct gear_code d, gear_code r
    from gear_lk
    WHERE :P23_GEAR IS NULL OR :P23_GEAR != 'S'
    UNION
    select distinct gear_code d, gear_code r
    from season_gear_office_lk
    where season_code = :P23_SEASON
    and field_office_code = :P23_FIELDOFFICE
    and  :P23_GEAR = 'S'
    

    It will be useful.

    Kind regards
    Hari

  • Checkbox validation based on the selection of the values LOV

    I'm trying to validate a checkbox custom on the opportunity page, based on the selection of the values LOV.

    For example only when the user selects 'rating = A', the box should be able to select and save.

    If the user selects other that 'A' in the field assessment, the box should not save.

    or

    Is it possible to do, the READ ONLY checkbox, enable only when the side 'A' is selected.

    Any thoughts / help on this.

    Thank you, Kumar

    Edited by: user10833334 may 4, 2010 06:43

    There is no function to make a read-only field based on the contents of another field, it is not an option. I will list my thoughts on how you might handle this below.

    -Option 1: I recommend that you use validation to manage it. I don't know exactly to your needs, but you could write a field validation that checks to see if the flag is checked and rating <>has and sends an error message to the user, if it is not. The user would not be able to save the file until it Unchecks the box or sets the side = A.
    Advantages: User gets a message explaining the problem with the data and is forced to fix it before you save it.
    Cons: Requires interaction from the user to save and if they do not pay attention, the data may be lost if they cancelled without saving the changes.

    -Option 2: Another option would be to use the workflow to validate the registration. In this scenario, you can create a workflow that determines whether the field is out of adjustment, and if it is not correctly set, the workflow would update the box accordingly. In this scenario, you would use the 'Actions if Condition is False' also to inform the user that the flag cannot be controlled unless the side =. Then, you must set the Action "Update the values" update the uncontrolled field.
    Pros: Manages the work without user interaction.
    Cons: The con in this case, is that there is no workflow 'Before NEW record saved' trigger, so it is likely that the user sets the value incorrectly when creating the folder and it would stay like that until they update the record again.

    Some people might argue that there is another option that uses the functionality of dynamic page layout to make the field read-only, but this isn't a good option. You would need to convert using the Type of the opportunity in a way that would make use of the possibilities of lourdes for your users and I mention it only to you recommend to avoid his review completely.

    Good luck and let me know if you have any questions.
    Thom

  • Dynamic report query table based on selected LOV

    Hello

    Need some suggestions and Tips how to query dynamically table via lov to report.

    Scenario:

    Table, TABLE_LIST, a tablename (table in DB) and filter (for where clause) column. The TABLENAME_LOVE is derived from the table TABLE_LIST.
    D SELECT TABLENAME TABLENAME TABLE_LIST R


    On Page 2, a select list item, page P2_TABLENAME use TABLENAME_LOV
    All data tables in the table_list has an identical structure (columns, triggers, primary key and so on).

    I want to have the query area of the report of the table based on selected LOV.

    Example,

    TableName Filter
    WBR
    CD2 ACTIVE = 'Y '.

    When select TB1, regin report ask TB1 on the base.
    When select CD2, will interview the report based on CD2 regin WHERE ACTIVE = 'Y '.


    Question:
    How can I query function & P2_TABLENAME. WHERE & P2_FILTER.
    As
    Select col1, col2 from P2_TABLENAME WHERE & P2FILTER

    Appreciate any suggestions and tips.

    Tigerwapa

    Hello
    You should always put your version of the Apex, version of DB and such other information as suggested in the FAQ.
    And now wherever you are referring to report, you need to answer if it's IR or classic.

    Regarding your query, have you explored the kind of statement "SQL Query (body of function from PL/SQL returning SQL query)"?
    This could be a good target for what you're trying to reach.

    Kind regards

  • Oracle apex selection lov 5.0

    I created a form in the apex.

    A region for the address field where I fill in all the details of the address and insert them into the table.

    So, Created a LOV in this form region.

    Values LOV is static.

    say

    value: Home

    Return type: 1

    Office of the value:

    return type: 2


    Now,.

    I have a (address) table based on the selection of the HOUSE or in the OFFICE of address LOV should be inserted in to the table.

    created an extra column in the table called TYPE.

    so if the user selects the Lov HOUSE then all values will be inserted in table during the click on the button where TYPE = home page.

    Pranav.Shah wrote:

    good,

    step 1:

    -> A created a form (table on the form)

    --> Region: two (one for LOV (static), secondly for the data in the table)

    Page 5 contains only an area of static content, called 'Selection '.

    step: 2 (what i need)

    --> the user can fill out information when the form is displayed.

    --> user can select what product he needs lov. (option three are new, old, classic vintage)

    Step 3:

    --> After that he selected selection all data should be inserted in to the table (called product)

    --> Including what he chooses to lov (vintage (only he can select) new, classic, classic)

    Step 4:

    --> I create the TYPE column in the PRODUCT table for her.

    Error Msg:

    ORA-00001: unique constraint (TESTDUMP. PRODUCT_PK) violated

    This error occurs because the page contains 2 unconditional deals with the process of PRODUCT line automatic line (DML) treatment. When the second process is run using the same values of session state the first, duplicate the value of ID violates the constraint of PK on PRODUCT.ID, throw the exception and reduce the first insertion. There are also 2 processes to clear the conditional State of Session to reset the page . Remove the process double and the page works as required.

    Step 5:

    ---> If someone cannot always get my questions then feel free to log into the demo app.

    No one possibly could have identified the nature of the problem of the information provided. It's so rare that he could not be seen in the page definition or a debug trace.

    It seems that you have run the wizard in the region to create the form twice. Do not do this. If you need to add items after the creation of the original area, use the wizard to create an element, not the region to create. If the item is based on a database column, set the Type of Source to the database column and the value of the Source element to the column name in the last page of the wizard.

  • How do you define a value for a list item select (LOV) with Javascript?

    I am trying set the values for a group of elements in a dynamic way, based on a selection of a report. Everything works fine, but the selection list.  What I have so far is the following:

    get var = new htmldb_Get (null, $v ('pFlowId'), 'APPLICATION_PROCESS is REFRESH_LIMIT_TYPE', $v ('pFlowStepId'));
    var gReturn = get.get ();
    $x('P10014_LIMIT_TYPE').value = gReturn;

    My guess is that a Select list of an LOV is more complicated than a text or a single display element.

    Thanks in advance for your help,

    Jim

    Thank you user - placed you me in the correct district-

    $s ('P10014_LIMIT_TYPE', gReturn); -This update value, but not the displayed value.

    Apparently LOVs require two values ('P10014_LIMIT_TYPE', return_value, display_value) $s;    Then I changed my code-

    ".. gReturn a = 44001, now = ' 44001, ASSUMPTION..."

    var args = gReturn.split(",");

    var r = args [0];

    var d = args [1];

    $s ('P10014_LIMIT_TYPE', r, d);

  • Problem with a field display only based on a dynamic LOV

    I have a field element / which is based on a dynamic LOV:

    Select the DESCRIPTION display_value, STATUSID return_value
    of CTCXFRREQS_STATUS_LOV
    order by 1

    .. .and I need to be only display on the page. However, if I do a field display only, the return value is displayed, not the display value. If I change it is a selection list field, the display value is shown, as I expect and need.

    The area is based on a static LOV before, and it worked perfectly then.

    Has anyone seen this before and have suggestions on how to get around?

    Hello

    In the item to change

    Display in the form: Display only
    Save Session State: Yes
    Based on: Display value for the list of values
    Named LOV: YOUR_LOV

    Kind regards

    Patel Kartik
    ------------------------------------------------------------------------
    http://patelkartik.blogspot.com/
    http://Apex.Oracle.com/pls/Apex/f?p=9904351712:1

  • Fill a combobox based on the selection of another

    Hi all

    I have a combobox that is filled dynamically. I want to fill an another combox based on the selected item in the combobox first. I use PHP to manage the connection to the database. The drop-down list box cbDivision fills very well.

    Can someone point me in the right direction?

    Here is my code:
    [Bindable]
    public var selectedItem:Object;

    [Bindable]
    private var datalist: ArrayCollection collection;
    private void resultHandler(event:ResultEvent):void {}
    DataList = event.result.data.row;
    }
    [Bindable]
    private var datalist2:ArrayCollection;
    private void resultHandler2(event:ResultEvent):void {}
    Datalist2 = event.result.data.row;
    }

    "" < mx:HTTPService url = " http://127.0.0.1/getDivisions.php"
    ID = "xmlGetDivisions".
    showBusyCursor = "true".
    result = "resultHandler (Event)" "
    method = 'GET' / >

    "" < mx:HTTPService url = " http://127.0.0.1/getFacilities.php"
    ID = "xmlGetFacilities".
    showBusyCursor = "true".
    result = "resultHandler2 (Event)" "
    method = "POST" >
    < mx:request xmlns = "" >
    < DivisionValue >
    {selectedItem.Division}
    < / DivisionValue >
    < / mx:request >
    < / mx:HTTPService >

    "< mx:ComboBox ="116"x ="60"id ="cbDivision"editable ="false"active = 'true' prompt = 'Please select' close ="selectedItem = ComboBox (event.target) .selectedItem, xmlGetFacilities.send ();"initialize =" getDivisions () "dataProvider ="{datalist}"= 'Division' labelField >
    < / mx:ComboBox >

    < mx:ComboBox = "413" x = "60" id = "cbFacility" editable = "false" enabled = "true" initialize = "xmlGetFacilities.send (); ' prompt = "Please sΘlectionner" dataProvider = "{datalist2}" labelField = "Name" > < / mx:ComboBox >


    Thank you in advance!

    No need to answer. I have it working now. It turns out that it was a problem with my PHP code.

  • How can we make a visible element on the screen based on the selection of an existing menu in the same screen

    February 2015 release OPA

    How can we make a visible element on the screen based on the selection of an existing menu in the same screen.

    I have a list box and a text box in the same screen.

    I have a visibility rule on the text box saying that it is only available for one of the selection in the menu dropdown.

    problem is now unless I hit the button next to the screen and return to the original screen the text box does not appear.

    Is there a solution to more to come this problem.

    Please help me

    The feature you describe is called "dynamic visibility" (http://documentation.custhelp.com/euf/assets/devdocs/february2015/PolicyAutomation/en/Default.htm#Guides/Policy%20Modeling%20User%20Guide/Interviews/Screens/Add_questions_to_screens.htm#Dynamic). It allows to control the visibility of another article on the same screen, without writing a separate rule of visibility and click on Submit.

    Using out-of-the-box functionality, you can have dynamic visibility based on Boolean values and value lists (but not regular drop-down lists).

    The example in the February 2015 User Guide based on a Boolean value on the same screen. See slide 27 of the bridge-features and benefits for an example of what it looks like to a list of value: http://www.oracle.com/technetwork/apps-tech/policy-automation/overview/opafeb2015featuresbenefits-2431219.pdf

    If you are wondering what is a list of values, see here: http://documentation.custhelp.com/euf/assets/devdocs/february2015/PolicyAutomation/en/Default.htm#Guides/Policy Modeling User Guide/Value_lists/What_is_a_value_list.htm

    See you soon,.

    Jasmine

  • Display list items based on another element of the list

    Hi all

    I want to display the list item based on another element of the list, but his does not work.

    This is my code:


    / * WHEN-NEW-FORM-INSTANCE * /-his work.
    DECLARE

    rg_district recordgroup;

    rg_name VARCHAR2 (40): = "district";

    vtemp NUMBER;

    BEGIN

    rg_district: = FIND_GROUP (rg_name);

    IF ID_NULL (rg_district)

    THEN

    rg_district: =.

    CREATE_GROUP_FROM_QUERY (rg_name,

    'select dist, dist district_mas.

    );

    vtemp: = POPULATE_GROUP (rg_district);

    POPULATE_LIST ('BLOCK3.) Of RIDING ", rg_name);

    END IF;

    END;

    * / CHANGED AFTER a - list * /-does not work. Cannot complete the list based on the list

    DECLARE

    rg_branch recordgroup;

    rg_name1 VARCHAR2 (1000): = "branch";

    vtemp NUMBER;

    BEGIN

    rg_branch: = FIND_GROUP (rg_name1);

    IF this is ID_NULL (rg_branch)

    THEN

    DELETE_GROUP (rg_name1);

    rg_branch: =.

    CREATE_GROUP_FROM_QUERY

    ("rg_branch",

    "SELECT FROM dist_branch WHERE district IN branch (DIST DISTRICT_MAS WHERE DISTRICT = SELECT').

    || : BLOCK3. DISTRICT OF

    );

    vtemp: = POPULATE_GROUP (rg_branch);

    POPULATE_LIST ('BLOCK3.) Branch of THE ', rg_branch);

    END IF;

    END;

    Table:

    CREATE TABLE DISTRICT_MAS

    (

    DIST VARCHAR2 (100 CHAR)

    );

    CREATE TABLE DIST_BRANCH

    (

    NEIGHBORHOOD VARCHAR2 (100 CHAR),

    DIRECTORATE GENERAL OF THE VARCHAR2 (100 CHAR)

    );

    Values:

    insert into district_mas values ('chennai');

    insert into district_mas values ('coimbatore');

    insert into dist_branch values ('chennai', 'chennai_north');

    insert into dist_branch values ('coimbatore', 'Podanur');


    Concerning

    Nassik M

    I tested the code below when the list has changed


    DECLARE

    rg_branch recordgroup;

    rg_name1 VARCHAR2 (1000): = "branch";

    vtemp NUMBER;

    QT VARCHAR2 (10): = "';

    BEGIN

    rg_branch: = FIND_GROUP (rg_name1);

    IF this is ID_NULL (rg_branch)

    THEN

    DELETE_GROUP (rg_name1);

    END IF;

    rg_branch: =.

    CREATE_GROUP_FROM_QUERY

    (rg_name1,

    'SELECT branch, branch OF THE DISTRICT WHERE the dist_branch =' | QT | : BLOCK3. DISTRICT OF | QT);

    vtemp: = POPULATE_GROUP (rg_branch);

    POPULATE_LIST ('BLOCK3.) Branch of THE ', rg_branch);

    END;

    Hope it's work...

    Hamid

  • Calculate the value based on the selection of the checkbox

    People from g ' Day,.

    I have myself a little stuck on a job that I have here, this javascript Gets the better of me.

    The idea is that this script takes the total sub and adds a surcharge for credit card (in percentage) based on a selection of the checkbox, then spit out the value to be entered in another field.

    If someone could have a quick look over what follows and let me know where I went wrong, it would be appreciated.

    ---

    Subtotal var = this.getField("SubTotal").value;

    var mastercardTick = this.getField ("MasterCard");

    var visaTick = this.getField ("Visa");

    var amexTick = this.getField ("Amex");

    Var extra = this.getField("CreditSurcharge").value;

    card credit var = this.getField("PayCredit").value;

    If (creditcard.value = 'Off') {}

    Event.Value = 0;

    } else {}

    If (mastercardTick.value = 'Yes') {}

    overload. Value = (1,2 / 100) * subtotal.value;

    } ElseIf (visaTick.value = 'Yes') {}

    overload. Value = (1,2 / 100) * subtotal.value;

    } ElseIf (amexTick.value = 'Yes') {}

    overload. Value = (3.75 / 100) * subtotal.value;

    } else {}

    Event.Value = 0;

    }

    }

    ---

    For lines like these:

    overload. Value = (1,2 / 100) * subtotal.value;

    If it should not be as:

    Event.Value = (1,2 / 100) * subtotal.value;

    The variable supplement is defined at the beginning of the script to the value of the field, so the surcharge.value parameter is not any sense.

  • Choose field from the joined table based on another field?

    Hello!

    Is it possible to select a field in a row of attached table based on another field? Consider the following data in the CVALUES table:
    ID  C1   C2    C3    C4    C5    C6
    T1  9.6  10.3  12.4  19.6  19.6    0
    T7  9.6  10.4     0     0     0    0
    T3  8.2   9.9  11.4  19.6  19.6    0
    T8  8.3  10.7  13.5  20.7     0    0
    T5  9.4  10.3  12.7  22.9  19.6    0
    ...
    And the following data in the table MDETAIL:
    ID           MDATE        CNUM     ...
    T1  03/28/2012 18:00:00    4
    T1  03/28/2012 18:00:00    1
    T8  03/29/2012 06:00:00    6
    T8  03/29/2012 06:00:00    5
    ...
    I want to get the column corresponding to the VALUE field in the table MDETAIL CVALUES. I'm doing this:
    SELECT m.t1, m.mdate,
           CASE WHEN m.cnum = 1 THEN c.c1
                WHEN m.cnum = 2 THEN c.c2
                WHEN m.cnum = 3 THEN c.c3
                WHEN m.cnum = 4 THEN c.c4
                WHEN m.cnum = 5 THEN c.c5
                WHEN m.cnum = 6 THEN c.c6 END AS cvalue
      FROM mdetail m
      JOIN cvalues c ON m.id = c.id
    The CVALUES table records are unique; only one line by ID.

    This method works and it's fast, but it's messy code and I think there must be a better way to do it. I use cvalue value in several calculations so each calculation that I use is this giant glob of CASES inside!

    Hello

    With a decoding it would be easier, but as ugly :-)

    SELECT m.t1, m.mdate,
           DECODE( m.cnum , 1 , c.c1, 2, c.c2, 3, c.c3, 4, c.c4, 5, c,c5, 6, c,c6) cvalue
      FROM mdetail m, cvalues c
      WHERE m.id = c.id
    

    Success!

    FJFranken

  • Quarter filter based on the selected month

    Hi all

    I need to filter the report with quarter based on a period in the report guests.

    The user selects the name of month in prompt report, the report should show the information of quarter data falling from the chosen month. I used the subreport that provide a quarter of the month. This degrades performance report, so I need a solution to find a quarter of the month in the filter of the report itself. Can anyone provide an idea on that?

    Well, now that I know the syntax, it should work for you:

    Assumptions: "month" is in the format "LUN - AA' (DEC-11); quarter is in the format "YYYY Q M" (2012 Q 2);

    Here are the pieces of the CASE statement...

    LEFT (' @{pv_month}', 3)... allows at least 3 letters ("Jan", "Feb", etc.) of the selected month...

    .. Right('@{pv_month}',2) .save the month selected two-digit year...

    Cast (Right('@{pv_month}',2) AS INTEGER)... .converts as a whole two-digit year. It is how we use the year in a calculation to determine the correct exercise when the month is September, October, November or December. In this case, (11) two-digit year is less than the tax (2012) year.

    Here are the facts:

    Q-11 MAY 2011 3 MAR-11
    JUN-11 AUGUST - 11 2011 Q 4
    SEVEN.-11 TO 11 - NOV 2012 Q 1
    DEC-11 TO 12 FEBRUARY 2012 Q 2
    etc...

    The above represents an exercise. As you can see, for the months from March to August, the exercise is the same as the selected year (all that is needed is to convert the year to two digits of a four-digit year).
    When the month is seven, Oct or Nov, the year must be incremented by 1. Month Jan and Feb, exercise is identical to the year chosen, but Dec must be dealt with separately, because even if exercise is the same as Jan and Feb (2) year should be incremented.

    Gather all this logic, you get the following:

    BOX WHEN IN LEFT('@{pv_month}', 3) ('SEP', 'OCT', 'NOV') THEN '20'. Cast (Cast (Right('@{pv_month}',2) AS INTEGER) + 1 AS CHAR). "Q 1'
    OTHER CASES WHEN leash (' @{pv_month}', 3) = 'DEC' THEN '20'. Cast (Cast (Right('@{pv_month}',2) AS INTEGER) + 1 AS CHAR). "Q 2'
    On the OTHER BOX WHEN IN LEFT('@{pv_month}', 3) ("JAN", "FEB") THEN '20'. Right('@{pv_month}',2) | "Q 2'
    OTHER CASE WHEN LEFT('@{pv_month}', 3) IN ('MAR', 'April', 'MAY') THEN '20'. Right('@{pv_month}',2) | "Q 3'
    ANOTHER BOX WHEN IN LEFT('@{pv_month}', 3) ("JUN", "JUL", "Aug") THEN '20'. Right('@{pv_month}',2) | "Q 4'
    END END END END END

    This will give you a quarter based on the selected month. You can use in the filter (Advanced > convert this SQL filter) and apply it on your column 'quarter '.

    WARNING: I did at home in order to check the syntax...

  • Delete based on another column dublicate records

    How can I remove duplicate records, based on another column.

    the table structure
    CREATE TABLE IA_EXPORT_LEVEL
    (
    A_NO VARCHAR2 (22 BYTE),
    IM VARCHAR2 (18 BYTE),
    ctn_level NUMBER (2)
    )

    reviews
    A_NO IM ctn_level

    S1 S1 1
    S1 M1 2
    S1 h1 3
    H2 S2 1
    S2 h2 2
    S3 h1 2
    S3 h1 3
    S4 h6 4
    S4 h6 5

    I want to delete all records other than the minimum value of the ctn_level

    output should like below
    S1 S1 1
    H2 S2 1
    S3 h1 2
    S4 h6 4

    Published by: OraFighter on December 16, 2011 13:44
    DELETE FROM IA_EXPORT_LEVEL where rowid IN
    (select rid from
    (select rowid rid, row_number() over (partition by A_NO,IM order by ctn_level) rn from IA_EXPORT_LEVEL )
    where rn > 1 )
    /
    

    Hope your question.

Maybe you are looking for

  • can assume that new tapes of series 2 will fit original Apple Watch?

    ??

  • Portege M800 - noise and HWSetup does not start

    Hello I use a Portege M800-116 under XP - SP3. Problem 1:Connection Line-Out to a stereo system and play music with Winamp or WinMediaPlayer works fine on battery.As soon as I connect the power adapter, a whistle loud high frequency and UM static dis

  • Please help me good people.

    The guy uses a presar io CQ58 NOTEBOOK PC... The PC told me three times to create a backup one i made, then aftr three days, the PC was stop by a display message wit a blue background. Then I ddnt read as wel wel very messege bt it was somthng like r

  • filmmaker will not grab my sony handycam

    I use firewire to connect the camcorder to the pc but when I shoot to the top of Movie Maker it says there is no device that I'm doing wrong?

  • IE 8 does not connect to internet

    I've looked through the different answers here and couldn't really find something that takes care of my question. I have never really used IE and I only found it does not work, because one of my games cannot connect to patch (Age of Conan). Someone o