Have a table which pop up on screen any time

Hi there. I have a problem, would be happy if someone will help me. Most of time i got table which pop ups on my screen, useing explorer or watching movie, thats really anoying..... please help!!!

Hi there ,  I did more research on the pop up you are getting. You had responded and said that you get no error messages in Safe Mode which was the biggest hint that confirmed my thought process on what you were getting.  Even though the third party sites below are not affiliated with HP at all, I felt the need to share my findings with you. Here are a couple of documents I would like you to read over and use to troubleshoot what is happening on your Notebook.  1. What is wscript.exe? - This document says "Important: Some malware camouflages itself as wscript.exe. Therefore, you should check the wscript.exe process on your PC to see if it is a threat. We recommend Security Task Manager for verifying your computer's security."  2. How can you fix “How do you want to open this type of file (.js) ?” error message ? - This site gives you steps to try and fix the malware. It also gives you links to other websites for more research if you would like to do some on your own as well. It explains what it is, how to fix it, and how you may have received this type of malware.  If all else fails, you could try to do a System Refresh. Windows 8 includes a feature called Refresh your PC that allows you to refresh your computer without affecting your files. This can be useful to recover from a problem. The Refresh option is primarily a repair method - a way to return your computer to a known good state. I hope this helps! 

Similar Messages

  • Join 2 tables which are not related with any primary-foriegn key constraint

    Hello,
    How to join 2 tables which are not related with any primary key foreign key constraint.
    Ex.Consider Table A has 5 columns->A_ID,A_Name,A_Address,A_City,A_Pin(Total 10 rows)
    Table B has 5 columns->B_ID,B_Name,B_Adress,B_City,B_City(Total 30 rows)
    From both the table i want the data,which i need to use in curosr to display finally as "Address Label".
    Both the table are entirely different,but there can be some names of Table A which may come in Table B also,if the name,address and city is also same.That means same person in both the table.
    So finally i want total number of distinct records(distinct data of Table A which is not in B+all the data of table B) to come under Address Label.
    How can i write the select query for this condition?
    Thanks
    Swapna

    Hi, Swapna,
    user11018268 wrote:
    Hello,
    How to join 2 tables which are not related with any primary key foreign key constraint.
    Ex.Consider Table A has 5 columns->A_ID,A_Name,A_Address,A_City,A_Pin(Total 10 rows)
    Table B has 5 columns->B_ID,B_Name,B_Adress,B_City,B_City(Total 30 rows)
    Both the table are entirely different,but there can be some names of Table A which may come in Table B also,if the name,address and city is also same.That means same person in both the table.I think you want a UNION, not a join.
    If you have 10 rows in table_a, and 30 rows in table_b, then
    SELECT       A_ID,          A_Name,     A_Address,     A_City,     A_Pin
    FROM      table_a
    UNION
    SELECT       B_ID,          B_Name,     B_Adress,     B_City,     B_City
    FROM      table_b
    ORDER BY            2,               4          
    ;will produce up to 40 rows; 40 if there are no duplicates. (UNION implies DISTINCT.)
    The corresponding column types should be similar, if not exactly the same.
    There's no problem if A_Name is VARCHAR2 (50) and B_Name is CHAR (30).
    However, there will be a problem if A_ID is a NUMBER and B_ID is a TIMESTAMP.
    You must have the same number of columns in all branches of the UNION.
    If you want an ORDER BY clause, put it at the very end, after the last branch of the UNION.
    You can use positional notation (where 2 means the 2nd column) like I did, or you can use names from the first prong of the UNION (such as A_Name).
    From both the table i want the data,which i need to use in curosr to display finally as "Address Label".
    So finally i want total number of distinct records(distinct data of Table A which is not in B+all the data of table B) to come under Address Label.I'm not sure what your mean about "Address Label".
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables, and the exact results (formatted) that you want from that data.
    You can concatenate all 5 columns into one VARCHAR2 column, if you want to.
    You'll probably want to use RPAD (or simillar functions) to make the output line up nicely.
    If any of the columns are not strings, use TO_CHAR to make string versions of them.
    For example:
    SELECT  TO_CHAR (A_ID, '9999999')
         || '   '          -- leave a little space between the left-justified a_id and the right-justified a_name
         || RPAD (A_Name, 25)
         || RPAD (A_Address, 50)
         ...Edited by: Frank Kulash on Nov 14, 2009 10:11 AM

  • Can i get the time capsule to automatically back up my file from my Mac Book Air but have certain files which are only stored on the time capsule and not the computer? Then can i access these files only on the time capsule without connecting it?

    Can i get the time capsule to automatically back up my file from my Mac Book Air but have certain files which are only stored on the time capsule and not the computer? Then can i access these files only on the time capsule without connecting it?

    igonneau wrote:
    Can i get the time capsule to automatically back up my file from my Mac Book Air but have certain files which are only stored on the time capsule and not the computer?
    You can, but how are you going to back up those other files?  When (not if) your Time Capsule fails, you risk losing them.  See #Q3 in Using Time Machine with a Time Capsule for details.
    Then can i access these files only on the time capsule without connecting it?
    Not sure what you mean.  You have to connect a computer, either via Ethernet cable or wirelessly, to read or write to the disk. 

  • I have a table which shuffles cells, can i add hyperlink to each cell?

    I have a table containing 8 different names. I have a shuffle code which randomly shuffles the cells around within the table. However i want to have a hyperlink to each name in each cell, is this possible?
    I am an amateur at dreamweaver! all help would be greatly appreciated.
    here is my code so far:
    <html>
    <head>
    <!--***************
    CSS section
    ****************-->
    <style type="text/css">
    body {
                 background:white; color:black;
                 font-family:Georgia, Times New Roman, Times, serif;
    .tableItem {
       position: relative;
       background: #ffffdd;
       color: rgb(255,0,0);
       border: 1px solid black;
       font-size : xx-large;
       text-indent: 1em;
       padding-right: 1em;
    </style>
    <!--***************
    Javascript section
    ****************-->
    <script language="javascript">
    var names = new Array();
    var offset = 0;
    var numPlayers = 8;
    var maxShuffle = numPlayers -1;
      names[0] = {id:'Monet', pic:'flower0.png'};
      names[1] = {id:'Renoir', pic:'flower1.png'};
      names[2] = {id:'Manet', pic:'flower1.png'};
      names[3] = {id:'Gaugin', pic:'flower1.png'};
      names[4] = {id:'Cezanne', pic:'flower1.png'};
      names[5] = {id:'Morisot', pic:'flower1.png'};
      names[6] = {id:'Picasso', pic:'flower1.png'};
      names[7] = {id:'Matisse', pic:'flower1.png'};
    function initialise(){
      for (i=0; i<numPlayers; i++) {
         document.getElementById('cell_'+i).innerHTML = "<div class = \"tableItem\">"+names[i].id;
    function changeText(){
      offset++;
      for (i=0; i<maxShuffle; i++) {
         document.getElementById('cell_'+i).innerHTML = "<div class = \"tableItem\">"+names[(offset+i)%maxShuffle].id;
    </script>
    </head>
    <body onLoad="initialise();">
    <p> </p>
    <table width="240" border="0" cellspacing="0" cellpadding="0" >
      <tr>
        <td id="cell_0"><div class = "tableItem">  </div></td>
        <td id="cell_6"><div class = "tableItem">  </div></td>  </tr>
       <tr>
        <td id="cell_1"><div class = "tableItem">  </div></td>
        <td id="cell_5"><div class = "tableItem">  </div></td>  </tr>
        <tr>
        <td id="cell_2"><div class = "tableItem"> </div></td>
        <td id="cell_4"><div class = "tableItem"> </div></td>  </tr>
       <tr>
        <td id="cell_3"><div class = "tableItem">  </div></td>
        <td id="cell_7"><div class = "tableItem"> </div></td>  </tr>
    </table>
    <p> </p>
    <a href="javascript:changeText()">Shuffle</a>
    </body></html>

    Maybe this will help.
    http://alt-web.com/DEMOS/CSS-Clickable-Table-Cells.shtml
    Nancy O.

  • Identify tables which are not used in any access seq.

    Hi
    Need to identify those tables (A500 - A999) which are NOT used in any access sequence (table T682I).
    Not sure how to do this.
    Thanks for the help

    Hi Karen,
    if you don't want to use SE11 and see it on one glance, you could use the following coding:
    DATA: it_t682i TYPE TABLE OF t682i,
          wa_t682i TYPE t682i,
          it_missing TYPE TABLE OF t682i,
          wa_count TYPE kotabnr VALUE 499.
    SELECT * FROM t682i INTO TABLE it_t682i
                  WHERE kvewe = 'A'
                  AND  kotabnr BETWEEN 500 AND 999.
    DO.
      ADD 1 TO wa_count.
      READ TABLE it_t682i INTO wa_t682i
                 WITH KEY kotabnr = wa_count.
      IF sy-subrc <> 0.
        CLEAR wa_t682i.
        MOVE wa_count TO wa_t682i-kotabnr.
        APPEND wa_t682i TO it_missing.
      ENDIF.
      IF wa_count = 999.
        EXIT.
      ENDIF.
    ENDDO.
    BREAK 'your user'.
    The table it_missing is just a quicky solution, you could use a table with just one field or use write to print the result.
    Hope that helps!
    Regards
    Nicola

  • Why does Firefox now have a bar which pops up with "Allow" on it? No matter how many times I click on Allow, it just keeps coming back, stuffing some logins

    I don't know enough to know why it's doing this, or what to do about it. That's why I asked the question!

    There are a few different bars you could see that have an "Allow" button: page wants to redirect, pop-up window was blocked, page wants to install software... Can you be more specific about which message you're seeing?

  • TS1362 Everything works except the **** thing won't play. I push the play arrow or instruct it to play and it stays eternally paused. No problem buying things from these dogs,just can't play the when everthing pops up on screen.Any ideas for a hopeless ol

    Everything works on ITunes except play function.I can select as song I want but cannot get it off "pause."I tried going to controls and instructing it to play(no go) and clicking again and again on play arrow(which flips it to pause...).Any ideas for a very old,very frustrated non-tech guy???
    Please!! Thnaks!!!

    Replying to myself. Kept trying different areas of the ipod this evening, clicking various buttons, including some I'd never used before. All of a sudden I could see my Nano in iTunes. I quickly clicked on Restore before iTunes changed its mind about recognizing the iPod. Moved some songs onto it and it appears to be back to normal.  Keeping my fingers crossed. 

  • HT1555 I lost my remote and now i have no idea how to navigate the screens. any help?

    I found an old apple tv (1st Gen), and it works perfectly. I just dont have a remote, and without the remote i cant do anything. Any help?

    that's an absolutely useless help to him/her if he/she has lost the remote. the apple tv can ONLY be paired with one remote at a time.
    a far more useful solution would be to use the apple remote app for the phone, touch or ipad ... except itunes 11 and/or ios7 has that all botched up now, so ... that's useless for the foreseeable future.
    to OP, in essence, you're hosed for right now.

  • HT203477 My final cut pro is so strange. It didn't allow me to create  project then there was message popping up constantly saying that the files have been moved. this pops up more than 60 times in a minute. I don't move files as I know how to edit.

    My Final cut pro is very disapointing it is n ot allowing me to create a new project. Also a strange message comes up saying that the files have been mooved or permission not allowed. It is totally a faulty message. Now it totally crashed and not allowing me to open.

    Thank you Karsten. I am forwarding the spec and hope you can understand the situation.
    I mac 27 inches. Procesor 3.4 GHz Intel core i7.
    16 GB 1333 MHz DDr3
    Graphica. AMD Radeon HD 6970m 2048mb
    Software OSX mountain Lion
    i am using the latest version of FCP.

  • Sorting a table which is used as a reference

    Hi,
    I am not 100% sure that i have all the terminology correct here so please excuse me if i am calling "things" by there wrong name.
    I have a table which has a list of racing car numbers which are not in any particular order.
    !http://img571.imageshack.us/img571/4305/screenshot20100602at122.png!
    I then have lots of smaller tables looking at this list, for instance, table 1 looks at the first car number cell then table 2 looks at the second car number cell etc..
    So before the list of car numbers is sorted table 1 looks at the list and takes the first number off the list, in this example 5, and table 2 looks at the list and takes the second number off list, in this example 3. etc.....
    so table 1 has a 5 in it and table 2 has a 3 in it.
    to look this number up i use this formula
    =IF(ISBLANK(Race 1::Data :: A6),"",Race 1::Data :: A6)
    which if the cell it looks at is blank then it does not show anything.
    The problem I have is that when I sort my list of car numbers into numerical order( 1,2,3,4,5,6,7,8,9,10) the table 1,table 2 etc do not sort.
    So after sorting table 1 still as 5 in it and table 2 still has 3 in it.
    How can i do it so after sorting the list of car numbers table 1 has 1 in it and table 2 has two in it.
    I have tried making the cells in table 1, table 2 to absolute row/column but this did not work.
    Thanks
    Charlie

    Charlie,
    When your smaller table uses an expression like your "=IF(ISBLANK(Race 1::Data :: A6),"",Race 1::Data :: A6)", it will continue to access the same data even if you move that data about by sorting or other means. Numbers does this, as do all the other spreadsheet programs. They do it by tracking the movement and adjusting the references.
    A way to avoid this is to use another form of addressing, such as indirect or indexed addressing. For example, you could have used:
    =IF(ISBLANK(OFFSET(Data :: $A$1, 5,0)),"",OFFSET(Data :: $A$1, 5,0))
    Now this particular expression will always grab the content of Race 1::Data :: A6.
    Regards,
    Jerry

  • Retaining row selection in a new  table which uses the same model.

    hi can anybody help me
    actually i have a table which allows multiple selections.like it allows to select row1 & row 4 if
    there are 5 rows.Now on click of a button i show a dialog with another table but with the same model
    applied to it.
    now my problem is that iam not able to make the selction of 1 & 4 rows in the new table.
    if i use a selectSingleRow in a for loop only 4rth row is getting selected.
    if i use a selection interval method it selects all the 4 rows from 1 to 4.
    is there any way i could select only the 1st and the 4rth row ?

    import javax.swing.*;
    import java.awt.*;
    import javax.swing.table.*;
    class Testing
      public void buildGUI()
        JTable table = new JTable(10,3);
        JScrollPane sp = new JScrollPane(table);
        sp.setPreferredSize(new Dimension(300,200));
        JFrame f = new JFrame();
        f.getContentPane().add(sp);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
        table.changeSelection(1,0,true,false);
        table.changeSelection(4,0,true,false);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • To select table which has TAB as data column with in

    Hi All
    I have a table which has column type defined as TAB type. When I try selecting the table in PL/SQL developer, I got below error.
    What should I do? Even SQL* Plus shows the same error!
    SQL> select *
      2  from my_tab_cap
      3  /
    from my_tab_cap
    ERROR at line 2:
    ORA-00904: : invalid identifierThanks in advance.
    Message was edited by:
    guru paran
    Changed the table name.

    You probably want to help us out with all your ddl:
    create table tab2 (my_tab_col my_type ) nested table my_tab_col store as my_tab;
    create type my_type as table of varchar2(100);
    declare
    v_type my_type := my_type();
    begin
    v_type.extend(4);
    v_type(1) := 'I like table types1';
    v_type(2) := 'I like table types2';
    v_type(3) := 'I like table types3';
    v_type(4) := 'I like table types4';
    insert into tab2(my_tab_col) values (v_type);
    end;
    select * from tab2;
    MY_TAB_COL                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
    VARCHAR(I like table types1,I like table types2,I like table types3,I like table types4)     

  • Is it possible to NOT have 'Restore Previous Session' option come up automatically every time you start Firefox?

    A large envelope pops up mid-screen every time I start Firefox, asking if I want to restore previous session. I don't want all users after me to have this option, but don't want to keep an empty history either. Can I deselect this option somewhere? Looked around, but found nothing.

    Unfortunately changing the options found under "Completely disable session restore" does not make any difference to this problem.

  • I have an iphone5 which is currently off ( network I use to have with sprint) but now I'm using wifi. All of my apps work fine except my safari (web). When I'm ready to search suggestions won't pop up and my screen will freeze and go blank. HELP PLS

    I have an iphone5 which is currently off ( network I use to have with sprint) but now I'm using wifi. All of my apps work fine except my safari (web). When I'm ready to search suggestions won't pop up and my screen will freeze and go blank. Even my bookmarks won't load. I don't know what the problem is can someone please help

    I have an iphone5 which is currently off ( network I use to have with sprint) but now I'm using wifi. All of my apps work fine except my safari (web). When I'm ready to search suggestions won't pop up and my screen will freeze and go blank. Even my bookmarks won't load. I don't know what the problem is can someone please help

  • Function module / table which lists screen numbers in module pool program

    Hi everyone,
    I wish to make a list of all screen numbers used in my module pool program Is there any FM / table which maps module pool program name with all the screens used in it?
    For example, if my module pool is SAPMZPROG and it has screens 9001, 9002 and 9003, then I want to have a report as follows:
    Input to the report (selection screen): SAPMZPROG
    Output:
    9001
    9002
    9003
    Thanks,
    Shailesh

    Hello
    Try tables D020S, D020T

Maybe you are looking for