extract all lines if condition is met

Hi all, consider the following data.
WITH table1 AS 
(
  SELECT 1 amt, 'dummy' txt, 'R' txt2 , '1X' pid FROM dual UNION ALL
  SELECT 123 amt, 'CATS' txt, 'P' txt2, '1X' pid FROM dual UNION all
  SELECT 145 amt, 'CAR' txt, 'PR' txt2, '1X' pid FROM dual UNION all
  SELECT 165 amt, 'NAME' txt, 'P' txt2, '1X' pid FROM dual UNION ALL
  SELECT 166 amt, 'NAME' txt, 'PK' txt2, '1X' pid FROM dual UNION all


  SELECT 100 amt, 'dummy' txt, 'R' txt2, '2X' pid FROM dual UNION ALL
  SELECT 13 amt, 'CATS2' txt, 'P' txt2, '2X' pid FROM dual UNION all
  SELECT 15 amt, 'CAR2' txt, 'PR' txt2, '2X' pid FROM dual UNION all
  SELECT 15 amt, 'NAME2' txt, 'P' txt2, '2X' pid FROM dual 

)
I want to display the following result
AMT  TXT    TXT2  PID
========================
1    DUMMY  R     1X
123  CATS   NO    1X
145  CAR    NO    1X
165  NAME   NO    1X
166  NAME   PK    1X


100 DUMMY   R     2X
13  CATS2   P     2X
15  CAR2    PR    2X
15  NAME2   P     2X
the logic behind this output is as follows:
When I find a line whose amount is 1 or - 1 and txt = dummy, I want to take the pid of this line value and find all lines with this pid where txt2 (p, PR) and set the txt2.
If txt2 is not in P or PR, and then set the column to the current value

for example. the first line of data above has amt = 1 and txt = model. I'll take the pid of this line, which is 1 X and find all the other lines with this value of pid and txt2 in P, PR
in this case I found the line with amt = 123, 145, 165. I display the rows in output but txt2 change no.

If you notice, line with amt = 166 wasn't the change as txt2 = PK. in the second series of data, I view the data, as is since I couldn't find a line with amt in(1,-1) and txt = model


can someone help me write a query to display the above output?

Hello

Here's one way: use the function SUMMARY, with a CASE expression:

SELECT       amt
,       txt
,       CASE
          WHEN  txt2  IN ('P', 'PR')
          AND   0 < COUNT ( CASE
                                   WHEN  amt     IN (1, -1)
                          AND   txt     = 'dummy'
                          THEN  1
                               END
                             ) OVER (PARTITION BY pid)
          THEN  'NO'
          ELSE  txt2
       END     AS txt2
,       pid
FROM       table1
;

Tags: Database

Similar Questions

  • The query results: extract all lines?

    I was looking for a feature that will allow me to choose to return "all records" in the query results window. The current behavior is fetching 50 files at a time (for example fetch 50 records when you scroll the results = s-l-o-w). What I would do, that is 'Recover all lines' and then use for the scroll bar to scroll "smoothly" to the last record. For example, the 8.0.6 Query Builder version has this feature and SQL Developer 3.0, if I right click on the results. I choose 'Count lines... ". ", looks like it would be a perfect place to put an option"retrieve all rows.

    If your application is to be able to quickly reach the last record in a query you can press Ctrl + Page Down (with emphasis in the grid of results) and you will automatically position your view to the last record in the query automatically go get all the results in the process.

    You have no need to do anything with the mouse scroll is actually the fastest way to reach the desired line.

  • Sale report std Oracle to extract all lines out of stock orders

    Hello Experts,

    Y at - it no Oracle standard reports that can provide us with the details of all out of stock lines in all levels of sales? Pls advise.

    Kind regards

    Viviane

    There is a report entitled "Report to detail in suffering" under the execution of shipping.

  • How do to return a single line or all lines if condition satisfied or not satisfied?

    Database: 10.2.0.4

    I have data like this:
    with tab as
    (
    select 'id1' as id, 'b' as atype from dual union all
    select 'id1' as id, 'h' as atype from dual union all
    select 'id2' as id, 'b' as atype from dual union all
    select 'id2' as id, 'a' as atype from dual union all
    select 'id2' as id, 'v' as atype from dual
    )
    select * from tab;
    
    id1     b
    id1     h
    id2     b
    id2     a
    id2     v
    I want result, identification with atype = 'h', then this line should be returned; If an ID is atype = 'h' then returns all of the rows for this ID. Thus, the sample above should return:
    id1     h
    id2     b
    id2     a
    id2     v
    Can I do this in SQL only? The table has about 2 million lines with several other columns

    Thank you
    SC

    Something like:

    with tab as
    (
    select 'id1' as id, 'b' as atype from dual union all
    select 'id1' as id, 'h' as atype from dual union all
    select 'id2' as id, 'b' as atype from dual union all
    select 'id2' as id, 'a' as atype from dual union all
    select 'id2' as id, 'v' as atype from dual
    )
    select  id,
            atype
      from  (
             select  id,
                     atype,
                     sum(case atype when 'h' then 1 else 0 end) over(partition by id) h_indicator
               from  tab
            )
      where atype = 'h'
         or h_indicator = 0
    /
    
    ID  A
    --- -
    id1 h
    id2 a
    id2 v
    id2 b
    
    SQL> 
    

    SY.

  • How to extract all the drives SAS/SATA and Ethernet port speed of the link command line?

    Hello

    Do you know if supports Windows OS built in order to extract all the SAS/SATA drives and ports Ethernet link speed?

    i.e. for SATA3 drive it show 6 Gbps, for DIS3 drive it will show 12 Gbps, to present the current link speed.

    i.e. for Ethernet 10 G, it will show 10 Gbit/s while the current connection speed is at 10 Gbps.

    I need the command to create a batch file to run bike test to check all connection speeds are correct in each cycle the system power runs, if the Windows operating system does not support built in order to achieve this, please send us any tool of 3rd - party with the support of the command line to do this.

    Thanks in advance.

    Jacky

    Hello

    This is a forum for Windows and you can't find the experts here, so your question will better suit in the TechNet forum where members of the community who have the expertise to help you. Check out the link and post your query:

    https://social.technet.Microsoft.com/forums/en-us/f4a3a72b-21e4-45fc-b623-eb1d99215c79/command-prompt-and-bat-files?Forum=w7itprogeneral

  • Hide the button until all Conditions are met?

    Please help!  I am creating a forklift safety training module. There are 12 buttons on the first slide (see screenshot 1); However, only 11 are visible at the beginning of the slide.  The 12th button is a "continue" button that appears only after all the content slides (slides 2-12) were considered by the learner.  I used a conditional action to hide the button (something I learned from @Lilybiri) until all the conditions are met.


    The problem:

    The "Continue" button does not always appear once the content slides have been read.  I found I can do appear to ebb in each slide content, show the slides a few seconds more before returning to the main slide- which seems certain conditions which tells Captivate to display the button "continue".  Of course, I don't want the learners to face to the challenge of trying to understand why they cannot continue. I just want to visit the pages relating to each key to all conditions met.


    Screenshot 1: the initial screen (actions related to the change of color of button below)

    forklift_screenshot1.jpg


    Screenshot 2: chronology of the page main interaction

    forklift_screenshot2.png


    Screenshot 3: conditional Action to display the button CONTINUE (created as a decision 2nd out of action of 'Transport').

    My expectation was that OnEnter, slide would be recognized as read and count for the condition that all 11 pages of content would be considered before that appear the continue"" button.  I set the time to s 3.0 (see screenshot above) on all content slides.  No transition, no effect.

    forklift_screenshot3.png


    Screenshot 4: each slide content is returned to the slide main interactivity by an OnSuccess: jump to the command of the slide.  Nothing special here.  I tried to reduce all the content slides to 1.5 s nothing works.

    forklift_screenshot4.png


    Screenshot 5: an example of the page interaction BEFORE all the content slides were read and before 'CONTINUE' button appears (ignore the footer buttons; it was just me to experiment with styles of button).

    forklift_screenshot5.png


    That's a lot, I know.  I wanted to cover the entire base.  I would appreciate your thoughts and your expertise.  Thank you in advance!


    Michael

    How about what is probably very close to what you have already made... (After double checking all of your shares advanced for bugs)

    Each main menu button sets the variable 'consulted' 1, hides the active button, show visited button, then jump to the content. Alternatively, you can put the action on the close button for each slide as you did.

    Then in your main menu, you will have the conditional action on enter that verifies that each variable 'seen' is 1. If it is true, then it will show your button continue.

    I use this method with almost all of the modules that are non-linear. I use it to display a button quiz start, tab summary etc...

    To check your programming that I'm down in a text caption that has all the variables, you will have to look and make sure that they change to 1 as it should. As soon as something does not change probably you have found your problem. Also make sure that none of your actions changed to continue if you have accidentally deleted an object or something similar.

    Also BTW: If you want to increment a variable, you use the action "expression" rather than "assignment." If you keep just assign 1 to a variable, all that you will ever get is 1. example: If the variable = 7 and you assign 1 then now variable = 1.  If you use the variable expression variable = + 1 then you will be able to increment. Also be careful if a user visits an article more than once because it increments the new variable unless you have a control to see if the content has been seen before, and then past increment. Otherwise they could visit the same section 11 times and then have the button continue become visible.

  • "All the conditions are met" - not exactly?

    Hello again! I'm experimenting a little, set up a mock up of the slightly more complicated project of Captivate to help some of my practice of co-workers with Captivate. I am under a problem but with one of my examples:

    I put a map of the world and six text entry areas to invite a user to name the continents (except Antarctica). I attributed to each box TE an associated variable where it is placed, that is the entrance area of text on Europe is associated with linked a variable titled 'in Europe. I want the slide does not advance until all mailboxes of YOU are properly labelling of each continent.

    Currently, for each main entry text box, rather than by a single shipment, a peak action occurs which assigns the associative variables with a literal name. For example, for action advanced in North America, marked NA_Check, it has an action to display a caption saying 'okay' and assign the NorthAmerica variable with a literal: "North America".

    An advanced global action runs when a user is trying to push a "Continue" button that checks the State of the variables. The conditional action because its properties 'if' that all the conditions are met with Asia = 'Asia', Africa = 'Africa', etc. of all human beings "AND". I assumed that with all of them being 'AND' they must all be true for this check properly. However, I have separate legends for the success or failure, and for some reason all I have to do is to get two correct and I can go forward as if I was 100% correct.

    I thought that maybe it had to do with the variables being assigned prematurely, so I made an action on enter which assigns each variable with "0" so that the entry in the text box would be the only way to make the correct variables. This doesn't seem to work. Any thoughts? Why only do two of the 6 conditions for success when I list all necessary?

    I'm not sure. Maybe a bug in the code of Captivate?

    I think I might rather assign some values to variables and do some calculations, and proceed only if the result is equal to a specific value.

    But that's just me... Rick

  • Create a table of values for which a condition is met

    I have exactly this problem, however connected solution is no longer valid: Re: table to automatically generate values if the condition is met,

    Basically I have a table (named 'Master Sheet') that has two columns, one with project names with a status ('Active' or 'pending'). I want a separate table that automatically fills the project names of the leaf of the master for which the status is 'Active '.

    For example, from this table:

    Project

    Status

    Red

    PENDING

    Orange

    ASSETS

    Yellow

    ASSETS

    Green

    ASSETS

    Blue

    PENDING

    I want to automatically generate this table, which contains only values whose status is 'Active' (not 'pending' and without values null):

    Project

    Status

    Orange

    ASSETS

    Yellow

    ASSETS

    Green

    ASSETS

    Please note that using the filter function does not work in this case, as I need to be able to freely add new lines to the two tables.

    Hi Kath,

    Here is a pair of similar solutions.

    That on background uses a writing ('ACTIVE') of the value in the formula in the master-1 table to create the index in column C.

    Above who gets the value of the cell in row 1 (A1) of the table of the single column and lists him only the names of any State were brought to the project.

    Index columns can be hidden.

    Formulas:

    Master: C2 IF (B = C$ 1, ROW (), 999)

    Table 1::A3: IF (SMALL (Master: $C, LINE () −2) = MAX (Master: $C),"", INDEX (Master: $A:$ B, SMALL (Maste r: $C, ROW (−2)), COLUMN ()))

    Master - 1:C2: IF (B = "ACTIVE", ROW (), 999)

    Table 1 - 1:A2: IF (SMALL ("Master-1': C, LINE (−1) ') = MAX ('Master-1': C),' ', index (" Master-1': b, SMA LL('Master-1'::C,ROW()−1),COLUMN()))) ")")

    All forms filled up to the last line of their respective columns.

    Filled with formulas in column A of the table of two columns to right of column B.

    Single column table must be no more than a longer column of its master table.

    Double table column must be as long as his master table or less.

    Kind regards

    Barry

  • Easy way to extract the line of two-dimensional array?

    Y at - it an easy way to extract a two table row Dimensions? I have two lists of table to a dimension that I consider a pine table, where each pin list is a table of numbers. I want to go through it and to extract a line at a time to send in a vi. Currently, I'm looking to do a bit of a long way, and I was wondering if there was an easier way. The long way:

    GetArrayBounds (Locals.ArrayOfPinsToTestAtOnce, Locals.BogusString, Locals.ArrayBounds), / / enter the quantity of lines and columns Locals.ArrayBounds
    Locals.ElementsPerList = Val (Mid (Locals.ArrayBounds, 1, 1)), //Get number of bowling by list
    Locals.NumberOfLists = Val (Mid (Locals.ArrayBounds, 4, 1)), //Extract number lists
    SetArrayBounds (Locals.OneRow, "[0]", "[" + Str (Locals.ElementsPerList) + "']" ") //Set table defines for a line chart
    < locals.numberofgroups;="" i++="" )="" would="" be="" done="" in="" teststand="" step,="" just="" for="" easy="">
    {
    < locals.elementsperlist;="" j++)="" also="" would="" be="" done="" in="" teststand="">
    Locals.OneRow [j] = ArrayOfPinsToTestAtOnce [j] [i]
    PERFORM STEP HERE (Locals.OneRow)
    }

    Thanks for the tips!

    In all honesty, I just want to do in LabVIEW.  You can try to add to the list in this idea.

  • "Extract all...". "request password on some files inside the zip, but no password was used to create the zip file

    I created a zip of a directory tree file using "send to...". "'Compressed (zipped) folder '. When I try to "extract all...". ", he asks me a password for some (not all) of the files in the zip file. I does not have a password for the zip file. I didn't even know it was possible to have a password on a specific file in a zip! Needless to say, I can not give the password because I don't know what it is.

    I tried the following:

    (1) created with "send to...". "Excerpt from" compressed (zipped) folder ', with 'extract all... '. ». Result: request password.
    (2) created with "send to...". "" Compressed (zipped) folder ", extract with 7 - zip. Result: No password query. All the files extracted intact.
    (3) created with 7 - zip, extract with "extract all...". ». Result: request password.
    (4) created with 7-zip, extract with 7 - zip. Result: No password query. All the files extracted intact.

    What I find most interesting is (3).

    Does anyone have an idea of what's going on? Is there some kind of security on the files meta-data that could / should cause this behavior?

    System information:

    XP Pro 2002 SP3 on MS network (I have no idea what server, etc..)

    Hi ruborg,

    Your Windows XP question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the forum TechNet for assistance:

    http://social.technet.Microsoft.com/forums/en/itproxpsp/threads

    Hope the helps of information.

  • Extract the lines of VO

    Hi all

    I'm dealing with a question about extraction of VO lines. My situation is as below:

    I run VO1 and serched about 20 records, but a single page display 10 records. When I updated the first 10 records, then I update next 10 records. Then I click the button Save.

    But I found only 10 next set records up-to-date.

    I used the row [] rowall = vo.getAllRowsInRange () to fecth all lines. But I found it just go get next 10 records. So, how can I get all the ranks?

    Thank you and best regards

    Allen

    Hi Amey,

    Thanks for your reply. I use pagination to go to the next page. And I used vo.setRangeSize(-1) to get all the lines. and it works.

    Kind regards

    Allen

  • MERGE statement - delete all lines?

    Hi all

    I am using Oracle 11 g and in my application, I need to update several existing records in a table in the Production environment. For this, I wrote a SQL logic using the "MERGE INTO" statement.

    Here's the SQL logic that I used.

    merge into the tar of the target

    a_l'_aide_de)

    Select

    EC.prim_id,

    CSM.Cptr,

    CSM.prm,

    CSM.scnd,

    CSM. PTXT,

    CSM.entn,

    CSM. ENPR,

    CSM.sevr

    t2 t1 ec cat inner join

    on ec.x = cat.y

    inner join s t3

    on ec.p = q.a.

    inner join t3 b

    on ec.m = b.n

    inner join t4 csm

    on)

    (lower (replace (cat.xn, b.sname |))) ((('-', ")) = lower (csm.xn))

    and (below (replace (s.yn, b.sname |))) ((('-', ")) = lower (csm.yn))

    and (lower (b.rn) = lower (csm.rn))

    )

    where ec.cptr is null

    and ec.prm is null

    and ec.scnd is null

    and ec.ptxt is null

    and ec.stxt is null

    and ec.entn is null

    and ec.enpr is null

    and ec.sevr is null

    ) CBC

    on)

    SRC.prim_id = tar.prim_id

    )

    When matched then update

    Set tar.cptr = src.cptr,

    tar.PRM = src.prm,

    tar.scnd = src.scnd,

    tar. PTXT = src.plcy_txt,

    tar. MID = "offline."

    tar.entn = src.entn,

    tar. ENPR = src.enpr,

    tar.sevr = src.sevr

    I doubt here, that is, if the condition WE in education MERGE gets failed then is it insert/delete all records in/to from the target table. But I think that it won't happen because I'm not specify the statement as 'WHEN DO NOT MATCHED THEN' right? Or default oracle will insert/remove all lines if the condition does not. ???

    Your help is very appreciated.

    Thanks in advance

    If your question is addressed, then close this thread.

  • line break conditional regions

    Hello!

    Is it possible to use conditional regions without adding a line break if the condition is met?

    What I use is a simple:

    <? If: STATUS = "IN_PLAN?" > Some Text <? end if? > Some Other Text

    and he always breaks the line after 'Some Text'...

    BR Paul

    Can you send me the xml file and the model RTF to [email protected]? I can take a look.

    Thank you
    Bipuser

  • htmlText remove all line breaks

    In my program, a user can enter any type of text using a RichTextEditor. The entered text has all its illegal xml characters replaced (< with & lt ;) etc.) This string is placed in an xml document. A component is custom, then receives the xml document, converts the html code in its original form and the applicable as the htmlText of a property control of text. This used to work properly. I need string conversions because there are some "metaStrings" which is not replaced according to certain criteria... which is the string {$DATE} would get replaced by the effective date when loading at a later date. As I said, used to work, and I had no problem display of text exactly as the user who created it. Now, for some reason, when I set the htmlText property, all line breaks are removed, of any type. < here > < p > < / p > < /li > < li > for fleas. Remains of formatting, has increased the font size, color, etc., but there is no line breaks.

    I have my chiseled loading code and the following output:

    public static void loadHtmlText(textControl:Text,_textData:XML,_replaceMeta:Boolean_=_false):void
    {
    trace ("loading text html in a text component, loading", textData);
    var html:String = textData.Html.toString ();
    trace ("after parsing a string", html);
    If (replaceMeta)
    {
    trace ('replacing');
    HTML = html.replace(/\{\$DATE\}/,textData.Date);
    Add sequences additional meta here for replacement
    }
    trace ("after the replacement", html);
    textControl.htmlText = html;


    textControl.validateNow (); force a commit
    trace ("value that was set', textControl.htmlText");
    }

    and the following output:

    text html in a text component loading, loading
    < data >
    < html > & lt; TEXTFORMAT LEADING = "2" & gt; & lt; P ALIGN = "LEFT" & gt; & lt; FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = "0" KERNING "0" = & gt; Line 1 & lt; / FONT & gt; & lt; /P & gt; & lt; / TEXTFORMAT & gt; & lt; TEXTFORMAT LEADING = "2" & gt; & lt; P ALIGN = "LEFT" & gt; & lt; FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = "0" KERNING "0" = & gt; Line 2 & lt; / FONT & gt; & lt; /P & gt; & lt; / TEXTFORMAT & gt; & lt; TEXTFORMAT LEADING = "2" & gt; & lt; P ALIGN = "LEFT" & gt; & lt; FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = "0" KERNING "0" = & gt; Line 3 & lt; / FONT & gt; & lt; /P & gt; & lt; / TEXTFORMAT & gt; < / Html >
    NotSet < date > < / Date >
    < / data >

    after parsing a string
    < TEXTFORMAT LEADING '2' = > < P ALIGN = "LEFT" > < FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 1 < / POLICE > < /P > < / TEXTFORMAT > < TEXTFORMAT LEADING '2' = > < P ALIGN = "LEFT" > < FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 2 < / FONTS > < /P > < / TEXTFORMAT > < TEXTFORMAT LEADING = "2" > < P ALIGN = "LEFT" > < FONTS FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 3 < / POLICE > < /P > < / TEXTFORMAT >

    After replacing
    < TEXTFORMAT LEADING '2' = > < P ALIGN = "LEFT" > < FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 1 < / POLICE > < /P > < / TEXTFORMAT > < TEXTFORMAT LEADING '2' = > < P ALIGN = "LEFT" > < FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 2 < / FONTS > < /P > < / TEXTFORMAT > < TEXTFORMAT LEADING = "2" > < P ALIGN = "LEFT" > < FONTS FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 3 < / POLICE > < /P > < / TEXTFORMAT >
    set < TEXTFORMAT LEADING = "2" > < P ALIGN = "LEFT" > < FONT FACE = "listFont" SIZE = "10" COLOR = "#0B333C" LETTERSPACING = '0' KERNING '0' = > line 1Line, 2Line 3 < / POLICE > < /P > < / TEXTFORMAT >



    Uh, oops, all the strings wordwrapped, makes it impossible to read. There were three blocks < P > < / p > adopted in
    each of them said line 1 line 2 and line 3, respectively, and each of them must be on its own line.

    After forcing the validation of the text control after setting this string, it has that one tag < P > < / p > with all the text inside... 2Line 1Line line 3.


    Any ideas?

    It worked before, I did was move the parameter text in its own function, insead of a function called by the method of my custom component's data provider.

    Thanks for the help.

    Wow, almost three months later, when my work schedule allows me actually to take over this problem, and I have the solution :-). It turns out, I don't know why, or if same Adobe knows about the bug, but if you have fonts using style sheets for all controls on your application, that is, I have a style statement request where I placed the police then redering text html of the text control is bug, usually just remove all line breaks. Why, I have no idea, he is simply. However, the same bug does not occur in the TextArea component. Still, I don't know why, seems silly to me, but as the solution to this problem, simply create a component TextArea, backgroundAlpha styles set to 0, its borderStyle to 'none', set the editable to false and boom, you have a component of scrolling text, which doesn't render the text html incorrectly.

  • lost my 'extract all' in the documents

    When I tried to unzip a folder asked me what program I want to use to open with. Has been given the choice of internet explore and something else. I clicked on internet explore and the screen started blinking on and off for a certain time. Then, all my files zipped turned to white and there was no more any and no excerpt zipped folder. What should I do to get my back zipped folders and choosing "extract all"? Thanks for your help.

    Hello

    You are welcome

    The problem is simply to do with the file being modified association, the best way to solve this problem maybe run the Windows system restore.

    Try the following.

    First of all, if you have Norton Internet Security installed, you should disable Norton Protection Tamper as shown in the link below.

    Norton self-protection.

    Once you are done, turn off the PC.  Windows system restore is usually better run in Mode without failure.  Tap away at f8 that you start the PC to enter the Windows Recovery Console.  Use the arrow keys to select Safe mode and press ENTER.  When it has loaded, on the Start Menu, click principally made programs, accessories, click System Tools and run the system restore.  Choose a restore point at least 24 hours before the file association for .zip files has been modified and then proceed to the restoration.  When you are finished, Windows will restart normally.

    Best regards

    DP - K

Maybe you are looking for

  • Media buttons do not work in Satellite P300-21st using Win 7

    Hello After the turning off my laptop, last week, the buttons of media suddenly stopped working.The strange thing is that they are flashing all the time, even when the laptop is turned off. I downloaded the toshiba Web site VAP (although the version

  • A value of 24GB SSD is a charge?

    I was watching the IdeaPad Y410P and it has an option for a 24GB SSD with a 1 TB HARD drive, but it costs $100 more than the model without the SSD. So is it worth paying $100 extra for the SSD, it improves cell phone that much?

  • TestStand and LabVIEW treat differently polymorphics with instances with bodies of private classes.

    I have a class of LabVIEW and the class contains a method that is a polymorphic VI, and that polymorphic instances has. If I put the scope of Private, and the polymorphic bodies access to the public, then I can force developers who use the class to u

  • USB-6211 - digital output not supported?

    Hi all I can't use the USB6211 device port... I use daqmx with Delphi7 API functions. First of all, I tried this: DAQmxCreateTask('', @TaskDO);DAQmxCreateDOChan (TaskDO, PChar('Dev1/port0'), ", DAQmx_Val_ChanForAllLines);DAQmxWriteDigitalU8 (TaskDO,

  • run without end c - dll and use GUI in parallel

    Hello I want to start a function from a c - DLLs in LabVIEW (which works fine) and during execution of this function (it can be run for very long time), I want to collect entries from the interface (e.g., a change in a digital control) LabVIEW. I put