Foreign key not working in a table control set on a pop-up window

Hi Experts,
I have created a table control using EEWB on BUPA object. I have moved this table control using BUCO transaction to address view. As the address is displayed in BP transaction as a pop-up window, when the error message from the foreign key verification should raise the pop-up window is closed and nothing happens. What I want is the error doesn,t let the window to be closed and show an error message.  Any suggestion to achieve that?
Thanks in advance.
Rosa

Hi,
Please check demo program DEMO_DYNPRO_TABLE_CONTROL_2.
Try to copy to custom program and make the following line changes.
MODULE CHECK_ALL INPUT.
  CASE OK_SAVE.
    WHEN 'ALLM'.
      LOOP AT ITAB.
*       IF itab-mark = 'X'.
*         MESSAGE i888 WITH 'Zeile' sy-tabix 'markiert'.
*       ENDIF.
        ITAB-MARK = 'X'.
        MODIFY ITAB.
      ENDLOOP.
Hope this will help ...
Regards,
Ferry Lianto

Similar Messages

  • Title & Menu Buttons not working correctly on remote control/ set top player but work in preview.

    Title & Menu Buttons not working correctly on remote control/ set top player but work in encore preview. This only happens for a Blu ray project. When a user presses the menu button it should go to the previous menu they were on but it goes to the main menu. When they press the title button they should go to the main menu but it doesn't do anything. My DVD projects work as expected.I've tried creating a new "test" project with different footage and still get the same undesirable results.
    Overrides grayed out and set to "not set" for timelines and menus.Project settings and build are set to blu ray. Also I've noticed when I preview a Bluray project the preview window shows a red colored disc next to the Title button when viewing the timelines and green when playing the menus but not so for a DVD project it displays red if motion menus and or timelines are not rendered/encoded. I'm not using motion menus and all the media is encoded according to the project specs.
    I've searched this forum but couldn't find the answer. Any help or redirects to a solution would be appreciated. Working with CS5. Thanks.

    I found out on my Samsung Blu ray player the remote has a tools button on it that brings up audio, angle, chapter selection etc.and also title selection which is actually the menus and the timelines unfortunately. It's not as easy or direct as last menu selected but it's a workaround at least. I also plan on using a pop up menu. I'll let you know.

  • Composite primary key as foreign key not working

    i want have two tables
    in one table i make a composite primary key
    and in the other table i refer one of the column of the composite key from the above table as foreign key in this table but this didn't work.
    eg:
    create table temp1
    ( name char2(10),
    ssn# number(10)
    address varchar2(10)
    constraint (cons_1)primary key(name,ssn#) );
    create table temp2
    ( name1 char2(10) references temp1(name),
    add varchar(20));
    this didn't work....can't create temp2 table it's giving error

    The following includes some corrections and some suggestions. Your original code had several problems: missing comma, invalid name, invalid data type, no unique key for the foreign key to reference. The following fixes all of those and adds some meaningful names for the constraints and formats it so that it is easier to read.
    CREATE TABLE temp1
      (name       VARCHAR2 (10),
       ssn#       NUMBER   (10),
       address    VARCHAR2 (10),
       CONSTRAINT temp1_name_ssn#_pk
                  PRIMARY KEY (name, ssn#),
       CONSTRAINT temp1_name_uk
                  UNIQUE (name))
    Table created.
    CREATE TABLE temp2
      (name1      VARCHAR2 (10),
       address    VARCHAR2 (20),
       CONSTRAINT temp2_name1_fk
                  FOREIGN KEY (name1)
                  REFERENCES temp1 (name))
    Table created.

  • Recreating foreign key not working? two proc one to drop constraint and another to recreate foreign constraint in database?

    CREATE PROC [dbo].[SP_DropForeignKeys] 
    AS
    BEGIN
    DECLARE @FKTABLE_OWNER SYSNAME, @FKTABLE_NAME sysname, @FK_Name sysname
    DECLARE Cursor_DisableForeignKey CURSOR FOR  
    SELECT   schema_name(schema_id), object_name(parent_object_id), name
    FROM   sys.foreign_keys
    OPEN Cursor_DisableForeignKey
    FETCH NEXT FROM   Cursor_DisableForeignKey  
    INTO  @FKTABLE_OWNER  , @FKTABLE_NAME, @FK_Name 
    DECLARE @SQL nvarchar(max)
    WHILE @@FETCH_STATUS = 0   
    BEGIN  
    SET @SQL  = 'ALTER TABLE [' + @FKTABLE_OWNER + '].[' + @FKTABLE_NAME   
               + ']  DROP CONSTRAINT [' + @FK_NAME + ']'  
    select @sql
    EXECUTE (@SQL)
    FETCH NEXT FROM   Cursor_DisableForeignKey INTO @FKTABLE_OWNER, @FKTABLE_NAME, @FK_Name
    END  
    CLOSE Cursor_DisableForeignKey
    DEALLOCATE Cursor_DisableForeignKey
    END
    create proc [dbo].[SP_CreateForeignKeys]
    as
    DECLARE @schema_name sysname;
    DECLARE @table_name sysname;
    DECLARE @constraint_name sysname;
    DECLARE @constraint_object_id int;
    DECLARE @referenced_object_name sysname;
    DECLARE @is_disabled bit;
    DECLARE @is_not_for_replication bit;
    DECLARE @is_not_trusted bit;
    DECLARE @delete_referential_action tinyint;
    DECLARE @update_referential_action tinyint;
    DECLARE @tsql nvarchar(4000);
    DECLARE @tsql2 nvarchar(4000);
    DECLARE @fkCol sysname;
    DECLARE @pkCol sysname;
    DECLARE @col1 bit;
    DECLARE @action char(6);
    SET @action = 'CREATE';
    DECLARE FKcursor CURSOR FOR
        select OBJECT_SCHEMA_NAME(parent_object_id)
             , OBJECT_NAME(parent_object_id), name, OBJECT_NAME(referenced_object_id)
             , object_id
             , is_disabled, is_not_for_replication, is_not_trusted
             , delete_referential_action, update_referential_action
        from sys.foreign_keys
        order by 1,2;
    OPEN FKcursor;
    FETCH NEXT FROM FKcursor INTO @schema_name, @table_name, @constraint_name
        , @referenced_object_name, @constraint_object_id
        , @is_disabled, @is_not_for_replication, @is_not_trusted
        , @delete_referential_action, @update_referential_action;
    WHILE @@FETCH_STATUS = 0
    BEGIN
              BEGIN
            SET @tsql = 'ALTER TABLE '
                      + QUOTENAME(@schema_name) + '.' + QUOTENAME(@table_name)
                      + CASE @is_not_trusted
                            WHEN 0 THEN ' WITH CHECK '
                            ELSE ' WITH NOCHECK '
                        END
                      + ' ADD CONSTRAINT ' + QUOTENAME(@constraint_name)
                      + ' FOREIGN KEY ('
            SET @tsql2 = '';
            DECLARE ColumnCursor CURSOR FOR
                select COL_NAME(fk.parent_object_id, fkc.parent_column_id)
                     , COL_NAME(fk.referenced_object_id, fkc.referenced_column_id)
                from sys.foreign_keys fk
                inner join sys.foreign_key_columns fkc
                on fk.object_id = fkc.constraint_object_id
                where fkc.constraint_object_id = @constraint_object_id
                order by fkc.constraint_column_id;
            OPEN ColumnCursor;
            SET @col1 = 1;
            FETCH NEXT FROM ColumnCursor INTO @fkCol, @pkCol;
            WHILE @@FETCH_STATUS = 0
            BEGIN
                IF (@col1 = 1)
                    SET @col1 = 0
                ELSE
                BEGIN
                    SET @tsql = @tsql + ',';
                    SET @tsql2 = @tsql2 + ',';
                END;
                SET @tsql = @tsql + QUOTENAME(@fkCol);
                SET @tsql2 = @tsql2 + QUOTENAME(@pkCol);
                FETCH NEXT FROM ColumnCursor INTO @fkCol, @pkCol;
            END;
            CLOSE ColumnCursor;
            DEALLOCATE ColumnCursor;
            SET @tsql = @tsql + ' ) REFERENCES ' + QUOTENAME(@schema_name) + '.' + QUOTENAME(@referenced_object_name)
                      + ' (' + @tsql2 + ')';           
            SET @tsql = @tsql
                      + ' ON UPDATE ' + CASE @update_referential_action
                                            WHEN 0 THEN 'NO ACTION '
                                            WHEN 1 THEN 'CASCADE '
                                            WHEN 2 THEN 'SET NULL '
                                            ELSE 'SET DEFAULT '
                                        END
                      + ' ON DELETE ' + CASE @delete_referential_action
                                            WHEN 0 THEN 'NO ACTION '
                                            WHEN 1 THEN 'CASCADE '
                                            WHEN 2 THEN 'SET NULL '
                                            ELSE 'SET DEFAULT '
                                        END
                      + CASE @is_not_for_replication
                            WHEN 1 THEN ' NOT FOR REPLICATION '
                            ELSE ''
                        END
                      + ';';
            END;
        PRINT @tsql;
        IF @action = 'CREATE'
            BEGIN
            SET @tsql = 'ALTER TABLE '
                      + QUOTENAME(@schema_name) + '.' + QUOTENAME(@table_name)
                      + CASE @is_disabled
                            WHEN 0 THEN ' CHECK '
                            ELSE ' NOCHECK '
                        END
                      + 'CONSTRAINT ' + QUOTENAME(@constraint_name)
                      + ';';
            PRINT @tsql;
            END;
        FETCH NEXT FROM FKcursor INTO @schema_name, @table_name, @constraint_name
            , @referenced_object_name, @constraint_object_id
            , @is_disabled, @is_not_for_replication, @is_not_trusted
            , @delete_referential_action, @update_referential_action;
    END;
    CLOSE FKcursor;
    DEALLOCATE FKcursor;
    GO
    exec [dbo].[SP_DropForeignKeys] 
    exec [dbo].[SP_CreateForeignKeys]
    droped proc worked perfect but when i execute [dbo].[SP_CreateForeignKeys] and try to see again foreign key constraints but result is empty?
    can anybody suggest me what's wrong with these script?

    droped proc worked perfect but when i execute [dbo].[SP_CreateForeignKeys] and try to see again foreign key constraints but result is empty?
    Well, if you have dropped the keys, you have dropped them. They can't be recreated out of the blue. You need to use modify procedure to save the ALTER TABLE statements in a temp table, drop the keys, truncate the tables, and the run a cursor over the
    temp table. In a single transaction, so that you don't lose the keys if the server crashes half-way through.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Control key not working on MB Pro while connected to windows 2008 server through 2x client. Any ideas? Works on windows through parallels.

    Control key not working on MB Pro while connected to windows 2008 server through 2x client. Any ideas? Works on windows XP through parallels desktop.

    Hello...
    It seems I got it fixed!! I had been trying the Fixit tool from
    http://support.microsoft.com/kb/306759  while typing up there :))))
    This tool is for changing RDP port but running it fixed my problem (I kept the port 3389 intact)!!
    Hope it helps someone.

  • Unable to drop foreign key on a version-enabled table

    Hi,
    We're using Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit and I'm trying to delete a foreign key from a version-enabled table.
    The constraint shows in ALL_WM_RIC_INFO view. I run exec dbms_wm.beginddl('tablename'), when I inspect the generated <tablename>_LTS I don't see any referential integrity constraints generated on that table ? The constraint i'm trying to delete is from a version-enabled table to a non-version enabled table if that makes a difference.
    From what I understand the referential integrity constraint would be generated and I would be able to run something like:
    ALTER TABLE <tablename>_LTS DROP CONSTRAINT <constraintname>.
    I tried running the above statement using the RIC_NAME from ALL_WM_RIC_INFO view but it fails predictably with:
    ORA-02443: Cannot drop constraint - nonexistent constraint
    Cause: alter table drop constraint <constraint_name>
    Action: make sure you supply correct constraint name.

    as I ran into this today as well I feel like answering this question, as I suppose that the thread opener did the same mistake as I did, and maybe
    some others do it as well :)
    of course you need to open a DDL session on the parent table as well in order to drop foreign key constraints, just as you do when you add them.
    so the correct order to make it work would be:
    EXECUTE DBMS_WM.BeginDDL('PARENT_TABLE');
    EXECUTE DBMS_WM.BeginDDL('CHILD_TABLE');
    ALTER TABLE CHILD_TABLE_LTS
    DROP CONSTRAINT FOREIGN_KEY_NAME
    EXECUTE DBMS_WM.CommitDDL('CHILD_TABLE');
    EXECUTE DBMS_WM.CommitDDL('PARENT_TABLE');I felt kind of stupid that it took me 1 hour to figure this out ;)
    regards,
    Andreas

  • Volume and brightness keys not working with new keyboard on imac

    I just purchased a new wired keyboard for imac and brightness and volume control keys not working . i have tried adjusting keyboard settings. I have software version 10.5.8. Do I need to upgrade software. Thank you for any help.

    Do you have "Automatically Adjust Brightness" check box ticked in System Preferences > Displays > Display ? If so, you can't manually adjust brightness.

  • Command, option, ctrl, fn keys not working

    thanks to a visiting dog who got tangled up the power adapter my laptop ended up on the floor, wide open with the keyboard popped out. I have inspected the connector cable and it looks OK to the naked eye. I disconnected the keyboard cable and re-connected.
    When using an external USB keyboard all keys function normally. When using the built-in keyboard the only keys not working are the command, option, ctrl and fn keys. I have restored modifier keys to default (I had never changed them) but this did not help. I also toggled the "use F1-F12 to control..." option in the keyboard preferences to no avail and have restored keyboard shortcuts to no avail.
    Is my keyboard shot? Is the a pref file I might delete?

    Hi, Mel. If the external keyboard works properly, I'm afraid you have to figure your built-in KB has been dogged to death. I hope the pet owner will do the right thing by you. I also hope the KB is all that was damaged. How are your adapter cord, plug, and DC-In port? Does your battery still charge OK?
    Whenever anything visits my house that's active, inattentive, and built low to the ground, my Powerbook runs on battery power only. I haven't seen one yet, but the new magnetically-connected, easily- and harmlessly-detached MacBook Pro AC adapters sound like a superb idea to me. Too bad our PBs can't use 'em.

  • Drill down is not working for Pivot tables,but working for chart

    I have two reports and trying to navigate betwen summary report to detail report. But details report is displaying all the records .The filter condition is not working and displaying all the filters .I have Case statement in my filter.But the summary report column where the filter condition is applied is aggregated in the RPD level. Does this might be the reason ?. Is it passing different type of data type to details report ?. The filter condition is not working for Pivot table .But Chart is working fine and displaying the only selected records based on the filter condition.
    Please help me with the below issue.

    Hi sil174sss,
    Per my understanding you are experiencing the issue with the excel report which have add the drill down action, after export to excel only the expanded nodes included and the collapsed nodes is not shown, right?
    Generally, if we expand the nodes before export to excel then the excel will display the expanded details row and keep collapsed the details row which haven't expand, but we have the toggle "+","-" on the left of the Excel to help
    control the expand and collapse, when you click the "+" you can expand the collapsed notes to see the details rows.
    I have tested on my local environment with different version of SSRS and can always see the "+","-" as below:
    On the Top left corner you can find the "1","2", this help to control the "Collapse All" and "Expand All".
    If you can't see the "+","-" in the excel, the issue can be caused by the Excel version you are currently using, and also excel have limit support of this, please provide us the Excel version information and the SSRS version. You
    can reference to this similar thread:
    lost collapsing columns when export to excel
    Please try to export other drill down report to excel and check if they work fine, if they did, the issue can be caused by the drill down action you have added in this report is not correctly, if possible, please try to redesign the report.
    Article below about how to add  Expand/Collapse Action to an Item for your reference:
    http://msdn.microsoft.com/en-us/library/dd220405.aspx
    If your problem still exists, please feel free to ask
    Regards
    Vicky Liu

  • My backlit keyboard keys not working?

    How come my backlit keyboard keys not working? When I try to use them I get a circle with a line running through it?

    cpickrell wrote:
    Jax, the backlight is currently usinig a sensor to turn the light on and off for you. This uses the least amount of battery. If you want to test or control the lighting yourself, go to the Apple Menu, select System Preferences, click on the Keyboard icon. Here you can turn the automatic setting on and off. If it is off, you can use they keyboard keys to turn the keyboard lighting on and off.
    Exactly!

  • T410 both CRTL keys not working

    Hello All,
    This is driving me nuts.  All of the sudden the CTRL keys (both left and right) do not work on my T410.  I thought it was a virus (I had a torjan) so I wiped the HD and did a clean install of Win7 pro 32 bit.  Problem persists.  
    I can attach an USB keyboard and the CTRL keys work on USB keyboard.  I can go into BIOS and toggle FN and CTRL keys, then the FN key works as a CTRL key just fine, but the CTRL do not as FN.
    I have two kids age 5 and 9 and they might have messed with something.  Any suggestions are appreciated.  I cannot find the solutions.  I find it very strange that both right and left CTRL keys would mechanically fail at the same time.
    Cheers,
    Mike - Toronto Canada

    @maxillo,
    Try alt + ctrl + fn and see if it helps.
    http://en.kioskea.net/forum/affich-28177-control-keys-not-working-on-laptop
    Also try going to "Ease of access center" then "make keyboard easier to use" then see if any "sticky keys" or other modes are turned on.
    //JameZ
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

  • My volume key not working volume increase automatically, how to mute all audio

    my volume key not working, volume increase automatically if i go to audio settings i can adjust, but  again volume increase automatically , how to mute all audio

    Did you already try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comeback again?
    If this does not boring back a working volume control, and to rule out a software issue, set it up as new device, explained here:
    Use iTunes to restore your iOS device to factory settings - Apple Support
    If still no luck, you'll have to get it checked by visiting an Authorized Apple Service Provider or Apple Store next to your place.
    iPhone - Contact Support - Apple Support

  • NULL in primary keys NOT logged to exceptions table

    Problem: Inconsistent behavior when enabling constraints using the "EXCEPTIONS INTO" clause. RDBMS Version: 9.2.0.8.0 and 10.2.0.3.0
    - NULL values in primary keys are NOT logged to exceptions table
    - NOT NULL column constraints ARE logged to exceptions table
    -- Demonstration
    -- NULL values in primary keys NOT logged to exceptions table
    TRUNCATE TABLE exceptions;
    DROP TABLE t;
    CREATE TABLE t ( x NUMBER );
    INSERT INTO t VALUES ( NULL );
    ALTER TABLE t
    ADD ( CONSTRAINT tpk PRIMARY KEY (x) EXCEPTIONS INTO exceptions );
    SELECT * FROM exceptions; -- returns no rows
    -- NOT NULL column constraints logged to exceptions table
    TRUNCATE TABLE exceptions;
    DROP TABLE t;
    CREATE TABLE t ( x NUMBER );
    INSERT INTO t VALUES ( NULL );
    ALTER TABLE t MODIFY ( X NOT NULL EXCEPTIONS INTO EXCEPTIONS );
    SELECT * FROM exceptions; -- returns one row
    I would have expected all constraint violations to be logged to exceptions. I was not able to find any documentation describing the behavior I describe above.
    Can anyone tell me if this is the intended behavior and if so, where it is documented?
    I would also appreciate it if others would confirm this behavior on their systems and say if it is what they expect.
    Thanks.
    - Doug
    P.S. Apologies for the repost from an old thread, which someone else found objectionable.

    I should have posted the output. Here it is.
    SQL>TRUNCATE TABLE exceptions;
    Table truncated.
    SQL>DROP TABLE t;
    Table dropped.
    SQL>CREATE TABLE t ( x NUMBER );
    Table created.
    SQL>INSERT INTO t VALUES ( NULL );
    1 row created.
    SQL>ALTER TABLE t ADD ( CONSTRAINT tpk PRIMARY KEY (x) EXCEPTIONS INTO exceptions );
    ALTER TABLE t ADD ( CONSTRAINT tpk PRIMARY KEY (x) EXCEPTIONS INTO exceptions )
    ERROR at line 1:
    ORA-01449: column contains NULL values; cannot alter to NOT NULL
    SQL>SELECT * FROM exceptions;
    no rows selected
    SQL>
    SQL>TRUNCATE TABLE exceptions;
    Table truncated.
    SQL>DROP TABLE t;
    Table dropped.
    SQL>CREATE TABLE t ( x NUMBER );
    Table created.
    SQL>INSERT INTO t VALUES ( NULL );
    1 row created.
    SQL>ALTER TABLE t MODIFY ( X NOT NULL EXCEPTIONS INTO EXCEPTIONS );
    ALTER TABLE t MODIFY ( X NOT NULL EXCEPTIONS INTO EXCEPTIONS )
    ERROR at line 1:
    ORA-02296: cannot enable (MYSCHEMA.) - null values found
    SQL>SELECT * FROM exceptions;
    ROW_ID OWNER TABLE_NAME CONSTRAINT
    AAAkk5AAMAAAEByAAA MYSCHEMA T T
    1 row selected.
    As you can see, I get the expected error message. But I only end up with a record in the exceptions table for the NOT NULL column constraint, not for the null primary key value.

  • A s d f g keys not working on a wireless Apple keyboard for Imac

    a s d f g keys not working on a wireless Apple keyboard for Imac.
    When I type they on't work.
    *Exmple o complete entence.
    Plee help! Thi i very rutrtin. I on't wnt to ue cut n pte or ome letter.
    Thnk you in vnce.

    Make a Service appointment for the keyboard at your local AASP.
    Apple - Find Locations
    I'm not sure how old it is, but it is covered for 1 full year as long as it didn't take that 19 story dive.

  • Some keybaord keys not working after suspect virus on Tecra A

    Apostrophe, delete, semicolon and end keys not working after a suspected virus attack. I found record of the same problem on the net but apparently this guy fixed his problem after he found scroll lock or num lock on.
    This is not the case here but there is something going on with numlock - register shows 2 and not 0. change to 0 but when reboot back to 2 again.
    Suspect changed back by bios. I thought i couldnt get to bios because DEL key not working but found ESC works.
    Tried to reset default values for bios but then cannot save and exit as this required the END key to work.
    I was running XP at the time of the (suspected) attack and could not rectify the problem so put the computer back to the OEM status which i hoped would help - it did not, same problem so rather than install all the software on the computer again with XP i upgraded to Windows7 - fresh install.
    Still keys do not work - it was a real pain to start with as my computer was set up to ctl+alt+del to log in and i had to do this with on screen keyboard - XP - this also showed that numlock was on before and after windows boot.
    The reason i suspect a virus - my wife was watching one of her tv shows on line from home country (another toshiba laptop) and i needed to use that laptop for something else so i asked her to use mine - later on we turned the laptops off and in the morning turned tham back on again, the other laptop with AVG virus protection flagged several hits and this one with (FAMOUS and completely up to date) Norton flagged nothing - once i got into it using on screen keyboard.
    Problems with this computer was found after scanning with a different antivirus.
    Anyway - i am left with 4 keys that do not work on my keyboard (actually they did work after i logged into the computer for the first time but i had to hold them in for a long time - and then next time i rebooted, not work at all and havent ever since)
    Any assistance here would be greatly appreciated, i have been working on this all weekend with no joy at all.
    Thanks in advance.

    Thanks Xardas,
    I have essentially done both - tried Toshiba OEM status found on a small partition of the toshi hard drive - no good - then did a fresh install of Windows 7 - still no good
    You know - as cunning as it sounds - i cannot reload the default settings in BIOS as it requires the END key to work so i can Save & Exit - all i can do is Exit Without Save - i sort of feel snookered at the moment.
    Toshiba got back to me today and said that i have tried everything they would have (yeah for sure) and to take my machine into a service centre for a hardware check - yeah right on boys!
    Check out this guys post below found on Kioskea.net - getting close to a year ago...
    ms ml - Nov 10, 2009 12:52am GMT
    Hi there, I was hoping that you might be able to help me with the problem that I seem to be having with my Toshiba Satellite Laptop Keyboard too. For a few days now I havent been able to use a few of the keys on my keyboard, including (1) delete (the backspace key is still working though), (2) colon/semicolon, (3) apostrophe/quotation marks and (4) end (the home and PgUp and PgDn keys are still working though). Any suggestions?
    Identical to my problem....obviously this guy had the same problem as well...see below - same thread.
    yab - Feb 9, 2010 4:47am GMT
    hi did you ever figure this out? i have the same exact problem...
    However, i was not able to solve my problem the way this guy did - my scroll lock is not activated - it seems to work ok (on and off) i tested it using Excel to move around the cells.
    yab ms ml - Feb 9, 2010 7:57am GMT
    Nevermind. For me it was scroll lock. My apostrophe, semicolon, and delete keys are alive and working again. I hope you have the same easy fix.
    Incidently - never hear from the first guy again - probably ended up being his scroll lock.
    all sugestions welcome - sorry my smily face has no eyes -) guess why!

Maybe you are looking for

  • Apple remote is not working

    Video froze while watching hulu on Apple TV. I pressed the menu button and play button rapidly numerous times with no response. Now apple remote doesn't work, holding menu and right or left doesn't work either. The remote is barely a month old, what

  • SBS2003 not receiving email from Exch2007

    Hi, going through a transisitioin to Windows server 2008 standard from SBS2003.  2008 DC is up, and Exch 2007 SP1 is installed. Users with Mailboxes on the SBS server can send email to users with 2007 mailboxes, but 2007 users cannot deliver email to

  • How to open RAW files using elements 10 with a pc using windows xp and nikon D3300

    i have an old pc running on windows xp to which i downloaded elements 10. i recently bought a nikon d3300 and am shooting RAW. is there a way to open the RAW files using elements 10?

  • Update 3G - Error code 1015

    Hi; Was given an iphone by a friend who said it weren't working anymore. Tried to get it into recovery mode to install IOS 4.2.3 (I think, anyway - doesn't show the version number now?) with iTunes 10.5.3.3 Went through the update process but then dr

  • Adobe PP and AME 'lose sight' of CUDA capable cards after first operation

    I have an annoying issue where after I have started PP or AME and then closed them, they loose visibility of the CUDA cards available in the computer. If I turn the computer on, load AME, PP or both, it runs correctly and allows me to use the Mercury