Skip reg of Exceptions

Hello world

When I execute the following code:
CREATE OR REPLACE PROCEDURE NMD_BLK
AS
AUTH VARCHAR2 (30);
BEGIN
BEGIN
SELECT LAST_NAME FROM AUTH OF AUTHORS WHERE UPPER (FIRST_NAME) = "DAVID";
DBMS_OUTPUT. Put_line (AUTH |) 'first block');
EXCEPTION
WHEN NO_DATA_FOUND
THEN
DBMS_OUTPUT. Put_line ('no person named David has been registered as an author');
END;
BEGIN
SELECT LAST_NAME FROM AUTH OF AUTHORS WHERE UPPER (FIRST_NAME) = "DAVID";
DBMS_OUTPUT. PUT_LINE(AUTH||) e second block ');
EXCEPTION
WHEN TOO_MANY_ROWS
THEN
DBMS_OUTPUT. Put_line ('too many people registered as an author by David name');
END;
END;

He's back instructions system defined as exception: SQL > EXEC NMD_BLK
BEGIN NMD_BLK; END;

*
ERROR on line 1:
ORA-01422: exact fetch returns more than number of lines
ORA-06512: at "PLSQL. NMD_BLK', line 6
ORA-06512: at line 1
but do not print my line dbms_output. is there any setting I need to change?

Your first statement

BEGIN
  SELECT LAST_NAME INTO AUTH FROM AUTHORS WHERE UPPER(FIRST_NAME) = 'DAVID';
  DBMS_OUTPUT.PUT_LINE(AUTH||' first Block');
EXCEPTION
  WHEN NO_DATA_FOUND
  THEN
    DBMS_OUTPUT.PUT_LINE('No Person Named David has been registered as Author');
END;

most likely throws an exception TOO_MANY_ROWS. Since you have no exception handler to deal with this condition, the exception will get propagated from the procedure and no call DBMS_OUTPUT is ever going to be executed. Maybe you wanted to combine your two blocks like this

BEGIN
  SELECT LAST_NAME INTO AUTH FROM AUTHORS WHERE UPPER(FIRST_NAME) = 'DAVID';
  DBMS_OUTPUT.PUT_LINE(AUTH||' first Block');
EXCEPTION
  WHEN NO_DATA_FOUND
  THEN
    DBMS_OUTPUT.PUT_LINE('No Person Named David has been registered as Author');
  WHEN TOO_MANY_ROWS
  THEN
    DBMS_OUTPUT.PUT_LINE('Too Many Persons registered as Author by Name David');
END;

Justin

Tags: Database

Similar Questions

  • Reg: Exception thrown Proc appeal

    Hi Experts,

    I'm working on an anonymous block, where I'm trying to call a procedure say PROC_A in PACKAGE_X. The procedure was private and was not usable outside; I made public by placing the signature in the package specification.

    Now, when I call the PACKAGE_X.PROC_A in my anonymous block, it triggers "PLS-00306: wrong number or types of arguments in the call to PROC_A.

    (fact sheet package_x) package

    . . .

    / * newly created in spec package * /.

    type tt_varchar2_type is table of the varchar2 (50);

    () Proc_A

    x TO int data type,

    y IN the int data type.

    int data type z,

    TT ON NOCOPY tt_varchar2_type - < <-this is the problem

    )

    . . .

    );

    declare

    type tt_varchar2_type is table of the varchar2 (50);

    v_tt tt_varchar2_type;

    Start

    . . .

    v_tt: = tt_varchar2_type();

    package_x.Proc_A (5, 10, 15, v_tt);  -< <-this raises an exception

    . . .

    end;

    I forgot something? Please notify.

    Thank you and best regards,

    -Nordine

    (on Oracle 11.2.0.2.0)

    declare

    v_tt package_x.tt_varchar2_type;

    Start

    . . .

    v_tt: = package_x. tt_varchar2_type().

    package_x.Proc_A (5, 10, 15, v_tt);

    . . .

    end;

  • Reg: Exception handling

    Dear all,

    When I ran the plsql block below I got the error. Not sure, 'ORA-06510: PL/SQL: not supported by the user-defined exception ', why it comes.

    When no data found, I raise my own exception "userException. I'm a little confused. Ask to explain everything.

    DECLARE
    userException EXCEPTION;
    v_Name emp.ename%type;
    v_err VARCHAR2 (200);
    BEGIN
    -Statement
    BEGIN
    SELECT Ename INTO v_name FROM emp WHERE empno = 1;
    EXCEPTION
    WHEN no_data_found THEN
    v_err: = "no data available for the employee;
    raise userException;
    WHILE OTHERS THEN
    v_err: = "some other Exception."
    raise userException;
    END;
    EXCEPTION
    WHEN userException CAN
    raise_application_error (-20901, v_err, TRUE);
    END;


    Error report:
    ORA-20901: no data found for the employee
    ORA-06512: at line 19
    ORA-06510: PL/SQL: not supported by the user-defined exception
    ORA-01403: no data found

    The technical answer to your problem is with the third parameter of RAISE_APPLICATION_ERROR-specific.

    Document Oracle says

    "If the third optional parameter is TRUE , the error is placed on the stack of previous mistakes." If the parameter is FALSE (by default), the error replaces all previous error messages. »

    Understand that allows first to comment your EXCEPTION block and run the code

    SQL > declare

    2 userexception exception;

    v_name 3 emp.ename%type;

    4 v_err varchar2 (200);

    5. start

    6 - instruction

    7. start

    8. Select ename into v_name from emp where empno = 1;

    9 exception

    10 when no_data_found then

    11 v_err: no = "no data found for the employee;

    12 lift userexception;

    13 then than others then

    14 v_err: = 'some other exception';

    15 lift userexception;

    16 end;

    17 / * exception

    18 when userexception then

    19 raise_application_error (-20901, v_err, true); * /

    20 end;

    21.

    declare

    *

    ERROR on line 1:

    ORA-06510: PL/SQL: not supported by the user-defined exception

    ORA-06512: at the level of line 12

    ORA-01403: no data found

    ORA-06510 is the error that is raised. So when you set the third parameter to TRUE you are instructing oracle doesn't replace the original error stack. Now, let me delete the third parameter.

    SQL > declare

    2 userexception exception;

    v_name 3 emp.ename%type;

    4 v_err varchar2 (200);

    5. start

    6 - instruction

    7. start

    8. Select ename into v_name from emp where empno = 1;

    9 exception

    10 when no_data_found then

    11 v_err: no = "no data found for the employee;

    12 lift userexception;

    13 then than others then

    14 v_err: = 'some other exception';

    15 lift userexception;

    16 end;

    17 exception

    18 when userexception then

    19 raise_application_error (-20901, v_err);

    20 end;

    21.

    declare

    *

    ERROR on line 1:

    ORA-20901: no data found for the employee

    ORA-06512: at line 19

    See oracle now replaces the stack of error with just the user error message.

  • We have two iPhones, two iPads, two MacBooks. On each calendar events are synchronized via iCloud, except the inscriptions on the iPhone 6 +. They don't publish to other devices if the phone receives entries from all of the other devices. Help?

    We have two iPhones, two iPads, two MacBooks. On all the calendar events synchronize correctly via iCloud except the inscriptions on the iPhone 6 +. They don't publish to other devices even if the phone receives entries from all of the other devices. All the settings on the iPhone 6 + match those on other devices. All iOS and OS 10 software is up-to-date. Anyone have any ideas on what could be the problem?

    Hi there, therex!

    It seems that you have done your inquiry very well and it seems you have reduced to the iPhone 6 Plus. But, since you need see events sent from the phone on all your devices, I'll be happy to help you.

    Archive or make Copies of your Calendar (s) -as you work with live data, be sure to not skip this step to protect the information already there.

    Get help using iCloud calendars - test all the steps, but it has been my experience that I forgot to put this particular calendar as my default calendar.

    Thank you for using communities of Apple Support and have a great day!

  • Some applications keep constantly suspended - except in safe mode

    Since a few days some apps (Lightroom, VLC, JDownloader, EtreCheck) keep suspended / beach balling right after I have started them.

    VLC has the exception that the video that you open is normal but the GUI just does not respond.

    When it is started in Safe Mode, all normal function programs.

    I have a number of things without result:

    -Recovery mode reinstall then installed Version 10.10

    -Put to upgrade to 10.11.4 (before the 10.11.4 upgrade also Chrome and the system preferences window have been affected)

    -Updated apps all affected to their latest Version.

    -Repeated of Diagnostics and HDD check. No errors.

    -Launch Agents/demons of deactivation. Tested and reactivated

    -kextstat | grep - v apple to see what remains is launched a startup. Most of them have uninstalled or disabled.

    3.5 i7 iMac 27 "end 2013, 32GB, GTX 780 M 4 GB, OS X 10.11.4

    Any ideas?

    EtreCheck version: 2.9.11 (264)

    Report generated 2016-04-16 11:28:33

    Download EtreCheck from https://etrecheck.com

    Time 01:25

    Performance: Excellent

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Problem: Beachballing

    Hardware Information:

    iMac (27 inch, at the end of 2013)

    [Data sheet] - [User Guide] - [warranty & Service]

    iMac - model: iMac14, 2

    1 3.5 GHz Intel Core i7 CPU: 4 strands

    32 GB of expandable RAM - [Instructions]

    BANK 0/DIMM0

    OK 8 GB DDR3 1600 MHz

    BANK 1/DIMM0

    OK 8 GB DDR3 1600 MHz

    0/DIMM1 BANK

    OK 8 GB DDR3 1600 MHz

    BANK 1/DIMM1

    OK 8 GB DDR3 1600 MHz

    Bluetooth: Good - transfer/Airdrop2 taken in charge

    Wireless: en1: 802.11 a/b/g/n/ac

    Video information:

    NVIDIA GeForce GTX 780M - VRAM: 4096 MB

    Software:

    OS X El Capitan 10.11.4 (15E65) - since startup time: less than an hour

    Disc information:

    SD0128F SSD APPLE disk0: (121,33 GB) (Solid State - TRIM: Yes)

    EFI (disk0s1) < not mounted >: 210 MB

    Boot OS X (disk0s3) < not mounted >: 134 MB

    Macintosh HD (2) /: 1.11 TB (214.30 GB free)

    Storage of carrots: disk0s2 120.99 GB Online

    Storage of carrots: disk1s2 999.35 Go online

    ST1000DM003 disk HARD APPLE disk1: (1 TB) (rotation)

    EFI (disk1s1) < not mounted >: 210 MB

    Recovery HD (disk1s3) < not mounted > [recovery]: 650 MB

    Macintosh HD (2) /: 1.11 TB (214.30 GB free)

    Storage of carrots: disk0s2 120.99 GB Online

    Storage of carrots: disk1s2 999.35 Go online

    USB information:

    Apple Inc. BRCM20702 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. FaceTime HD camera (built-in)

    Hub keyboard Apple, Inc.

    Logitech USB receiver

    Apple Inc. Apple Keyboard

    Lightning information:

    Apple Inc. Thunderbolt_bus.

    Configuration files:

    / etc/sudoers, 1319 but file size expected 2299

    /etc/sysctl.conf - file exists but not expected

    Guardian:

    Mac App Store and identified developers

    Kernel extensions:

    / Library/Extensions

    [loading] at.obdev.nke.LittleSnitch (3.6.3 - SDK 10.8 - 2016-04-15) [Support]

    com [loading]. Logitech.Control Center.HID Driver (3.9.1 - SDK 10.8 - 2016-04-15) [Support]

    com [loading]. Driver Logitech.Unifying.HID (1.3.1 - SDK 10.8 - 2016-04-15) [Support]

    [loading] com.seagate.driver.PowSecDriverCore (5.2.7 (26996) - 10.4 SDK - 2016-04-15) [Support]

    / Library/Extensions/Seagate storage Driver.kext/Contents/PlugIns

    com.seagate.driver.PowSecLeafDriver_10_4 [no charge] (5.2.7 (26996) - 10.4 SDK - 2015-12-04) [Support]

    com.seagate.driver.PowSecLeafDriver_10_5 [no charge] (5.2.7 (26996) - SDK 10.5 - 2015-12-04) [Support]

    com.seagate.driver.SeagateDriveIcons [no charge] (5.2.7 (26996) - 10.4 SDK - 2015-12-04) [Support]

    / System/Library/Extensions

    com.nvidia.CUDA [no charge] (1.1.0 - 2016-04-15) [Support]

    [no charge] com.waltop.iokit.driver.USBAtTablet (USBAtTablet 1.1.0-2016-04-15) [Support]

    Launch system officers:

    [loaded] 7 tasks Apple

    [loading] 161 tasks Apple

    [operation] 70 tasks Apple

    Launch system demons:

    com.Apple.watchdogd.plist [failure]

    [loaded] 42 tasks Apple

    [loading] 161 tasks Apple

    [operation] 85 tasks Apple

    Launch officers:

    at.obdev.LittleSnitchUIAgent.plist [no charge] (2016-04-15) [Support]

    com [no charge]. Logitech.Control Center.Daemon.plist (2015-09-19) [Support]

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-04-16) [Support]

    com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist [no charge] (2015-10-15) [Support]

    com.adobe.AdobeCreativeCloud.plist [no charge] (2016-02-15) [Support]

    com.DivX.DMS.agent.plist [no charge] (2014-11-17) [Support]

    com.Google.keystone.agent.plist [no charge] (2016-03-02) [Support]

    com.hyperpen.hyperpen.plist [no charge] (2011-06-30) [Support]

    com.nvidia.CUDASoftwareUpdate.plist [no charge] (2016-04-15) [Support]

    [no charge] com.oracle.java.Java - Updater.plist (2016-04-15) [Support]

    net.culater.SIMBL.Agent.plist [no charge] (2016-01-07) [Support]

    org.macosforge.Xquartz.startx.plist [no charge] (2014-08-11) [Support]

    Launch demons:

    at.obdev.littlesnitchd.plist [no charge] (2016-04-15) [Support]

    com.adobe.ARMDC.Communicator.plist [no charge] (2015-10-15) [Support]

    com.adobe.ARMDC.SMJobBlessHelper.plist [no charge] (2015-10-15) [Support]

    com.Adobe.adobeupdatedaemon.plist [no charge] (2016-04-14) [Support]

    com.Adobe.agsservice.plist [no charge] (2016-04-14) [Support]

    com.Adobe.fpsaud.plist [no charge] (2016-04-05) [Support]

    com.Bombich.ccchelper.plist [no charge] (2015-04-13) [Support]

    [no charge] com.edb.launchd.postgresql - 8.4.plist (2015-12-08) [Support]

    com.Google.keystone.daemon.plist [no charge] (2016-03-02) [Support]

    com.nvidia.Cuda.Launcher.plist [no charge] (2016-02-03) [Support]

    [no charge] com.oracle.java.Helper - Tool.plist (2016-04-15) [Support]

    com.seagate.TBDecorator.plist [no charge] (2013-10-12) [Support]

    NET.TunnelBlick.TunnelBlick.tunnelblickd.plist [no charge] (2015-06-01) [Support]

    org.macosforge.Xquartz.privileged_startx.plist [no charge] (2014-08-11) [Support]

    org.wireshark.ChmodBPF.plist [no charge] (2015-07-16) [Support]

    org.wireshark.XQuartzFixer.plist [no charge] (2015-07-16) [Support]

    User launch officers:

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2014-07-21) [Support]

    [no charge] com.c - command.SpamSieve.LaunchAgent.plist (2016-04-16) [Support]

    com.linotype.FontFolderProtector.plist [no charge] (2015-12-27) [Support]

    [no charge] net .infinite - labs.SIMBLEnablerForSandboxedApps.plist (2016-01-07) [Support]

    net.tunnelblick.tunnelblick.LaunchAtLogin.plist [no charge] (2015-03-30) [Support]

    Other applications:

    [ongoing] com.adobe.Lightroom6.51872

    [ongoing] com.etresoft.EtreCheck.226272

    [ongoing] com.google.Chrome.66912

    [ongoing] JP.co.Canon.cijscannerregister.154912

    [loading] 425 tasks Apple

    [operation] 167 tasks Apple

    Plug-ins Internet:

    AdobeAAMDetect: 3.0.0.0 - SDK 10.9 (2016-04-14) [Support]

    FlashPlayer - 10.6: 21.0.0.213 - SDK 10.6 (2016-04-08) [Support]

    QuickTime Plugin: 7.7.3 (2016-03-12)

    AdobePDFViewerNPAPI: 15.010.20060 - SDK 10.8 (2016-03-10) [Support]

    Flash Player: 21.0.0.213 - SDK 10.6 (2016-04-08) [Support]

    AdobePDFViewer: 15.010.20060 - SDK 10.8 (2016-03-10) [Support]

    DivX Web Player: 3.2.4.1250 - SDK 10.6 (2014-11-26) [Support]

    Default browser: 601 - SDK 10.11 (2016-03-12)

    OVSHelper: 1.1 (2014-11-26) [Support]

    JavaAppletPlugin: Java 8 updated 77 03 (2016-04-15) check the version of build

    Safari extensions:

    AdBlock - Michael Gundlach - https://getadblock.com (2015-09-09)

    Ghostery - GHOSTERY, Inc. - https://www.ghostery.com/ (2016-03-14)

    YoutubeWide - Pedrocc - http://www.pedrocc.com/safari (2014-07-17)

    3rd party preference panes:

    Preferences CUDA (2016-02-03) [Support]

    Flash Player (2016-04-05) [Support]

    Java (2016-03-21) [Support]

    Logitech Control Center (2016-04-15) [Support]

    Paragon NTFS for Mac® OS X (2016-04-15) [Support]

    Seagate for Mac OSX dashboard (2016-04-15) [Support]

    Teleport (2013-10-22) [Support]

    Time Machine:

    Skip system files: No.

    Automatic backup: YES

    Volumes to back up:

    Macintosh HD: Disc size: 1.11 TB disc: 899,85 GB

    Destinations:

    Time Maschine [Local]

    Total size: 998,79 GB

    Total number of backups: 12

    An older backup: 01.03.16, 02:03

    Last backup: 23.03.16, 12:11

    Backup disk size: too small

    998,79 GB backup size < (disc 899,85 GB X 3)

    Top of page process CPU:

    264% Google Chrome Helper (9)

    14% Google Chrome

    3% fontd

    kernel_task 2%

    1% adobe Lightroom

    Top of page process of memory:

    Kernel_task 1.25 GB

    983 MB Adobe Lightroom

    786 MB Google Chrome Helper (9)

    Ocspd 492 MB

    197 MB Google Chrome

    Virtual memory information:

    26,00 GB of free RAM

    5.76 used GB RAM (1.56 GB being cached)

    Used Swap 0 B

    Diagnostic information:

    16 April 2016, 11:24:52 self-test - spent

    April 16, 2016, 11:24:36 /Library/Logs/DiagnosticReports/EtreCheck_2016-04-16-112436_[redacted].hang

    /Users/user/downloads/EtreCheck.app/Contents/MacOS/EtreCheck

    April 16, 2016, 11:23:52 /Library/Logs/DiagnosticReports/EtreCheck_2016-04-16-112352_[redacted].hang

    April 16, 2016, 11:07:07 AM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-16-110707_ [redacted] .hang

    / Applications/Adobe Lightroom/Adobe Lightroom Lightroom.app/Contents/MacOS/Adobe

    April 15, 2016, 14:21:02 /Library/Logs/DiagnosticReports/VLC_2016-04-15-142102_[redacted].hang

    /Applications/VLC.app/Contents/MacOS/VLC

    April 15, 2016, 14:02:06 ~/Library/Logs/DiagnosticReports/Adobe Desktop Service_2016-04-15-140206_ [redacted] .crash

    com.adobe.acc.AdobeDesktopService - / Library/Application Support/Adobe / * / Adobe Office Service.app/Contents/MacOS/Adobe Office Service

    April 15, 2016, 13:59:21 /Library/Logs/DiagnosticReports/VLC_2016-04-15-135921_[redacted].hang

    April 15, 2016, 13:43:57 /Library/Logs/DiagnosticReports/VLC_2016-04-15-134357_[redacted].hang

    April 15, 2016, 01:37:34 PM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-15-133734_ [redacted] .hang

    April 15, 2016, 13:37:29 /Library/Logs/DiagnosticReports/VLC_2016-04-15-133729_[redacted].hang

    April 15, 2016, 01:34:20 PM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-15-133420_ [redacted] .hang

    April 15, 2016, 13:28:24 ~/Library/Logs/DiagnosticReports/dynamiclinkmanager_2016-04-15-132824_[redacted] .crash

    com.Adobe.dynamiclinkmanager.application - ntents/MacOS/dynamiclinkmanager/Applications/Adobe Bridge CC / Adobe Bridge CC.app/Contents/MacOS/Required/dynamiclinkmediaserver/dynamiclinkmanager.app/Co

    April 15, 2016, 13:28:20 /Library/Logs/DiagnosticReports/VLC_2016-04-15-132820_[redacted].hang

    April 15, 2016, 01:27:08 PM/Library/Logs/DiagnosticReports/JavaApplicationStub_2016-04-15-132708_ [redacted] .hang

    /Users/user/*/JDownloader2.app/Contents/MacOS/JavaApplicationStub

    April 15, 2016, 01:23:50 PM/Library/Logs/DiagnosticReports/JavaApplicationStub_2016-04-15-132350_ [redacted] .hang

    April 15, 2016, 01:14:21 PM/Library/Logs/DiagnosticReports/JavaApplicationStub_2016-04-15-131421_ [redacted] .hang

    /Applications/JDownloader.app/Contents/MacOS/JavaApplicationStub

    April 15, 2016, 01:06:01 PM/Library/Logs/DiagnosticReports/JavaApplicationStub_2016-04-15-130601_ [redacted] .hang

    April 15, 2016, 12:52:25 /Library/Logs/DiagnosticReports/VLC_2016-04-15-125225_[redacted].hang

    April 14, 2016, 12:04:08 PM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-14-120408_ [redacted].cpu_resource.diag [details]

    April 14, 2016, 11:48:42 AM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-14-114842_ [redacted] .hang

    April 14, 2016, 11:39:18 AM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-14-113918_ [redacted] .hang

    April 14, 2016, 11:39:02 AM/Library/Logs/DiagnosticReports/Adobe Lightroom_2016-04-14-113902_ [redacted] .hang

    Try to uninstall Little Snitch and tests. Also, if you are not using CUDA you unnstall who.

  • How good/bad is Reg Zooka?

    How good/bad is Reg Zooka and other registry cleaners? Do I still need to do anything in the registry? I read mixed reviews.

    There is NO SUCH THING as a 'good' registry cleaner - they are ALL, without exception, snake oil and dangerous.

  • Cannot download FMS Simulator getting error: Exception ECom Port modulel fms.exe at 00008B 728

    Impossible to download, get same error Exception ECom Port in modulel fms.exe at 00008B 728
    Registry error (code error win; 2
    can anyone help, thanks

    Hi icuviper,

    Thanks for posting your question.

    Try these troubleshooting steps.

    1. open the control panel (in classic mode), and then choose Add new hardware.

    2. click Next, and then "Yes, I've already attached the new material", and then click Next again.

    3. scroll down, click on 'Add new hardware' (or something similar), and then click Next.

    4. "choose manually from a list", and then click Next.

    5. click on Ports (COM & LPT), click Next.

    6. in the left part, choose (Standard port types), on the right side, choose the communication port. Click Next, and then click Next again.

    7. you will get a message saying that the device is installed but not working may not. (Of course since we really did not add any material). Click Finish.

    8. open the Device Manager by holding down the Windows logo key and press the keypad lock. Select the material (or is it devices?) tab, and then click the button Device Manager.

    9. scroll the page up to Ports (COM & LPT) and expand it. You should now see a port for communication with a yellow and black! on this subject. In parentheses, it must be said the number this Com port is now in your system. For me, it's (COM4).

    10. open Notepad (or your favorite text editor). And paste the following text:

    Code:

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM]
    '\\Device\\Serial0"="COM4 '.

    Then replace the COM4 in the end with your number of ports Com as "COM1", if it must be different.

    11 save the file as fms_com_port_fix.reg to your desktop (or anywhere).

    12. go to your desktop, and then double-click the file. Approve your entire system can give you security warnings.

    This should be FMS should now start for you.

    WARNING: before you edit the registry, export the registry keys that you want to edit, or back up the whole registry. If a problem occurs, you can then follow the steps described in the section "Restore the registry" to restore the registry to its previous state. To back up the whole registry, use the backup utility to back up the system state. The system state includes the registry, the base of COM class registration + and your startup files.

    Let us know if that helps.

    Kind regards
    Clement Kumar.

    Microsoft Answers Support Engineer. Visit our Microsoft answers feedback Forum and let us know what you think.

  • Reg.exe stopped working on windows 7 64 bit when I want to play an old game.

    Hello guys. I am using windows 7 Home premium 64-bit in my laptop. I just downloaded an old game (2005-2006 perhaps) so I wanted to play. After finishing download (no virus, I checked), and I run the executable files, the message occurred: Reg.exe has stopped working. and the game does not start.

    The game has an application inside reg.exe file, and I think I have to run it manually. but when I tried to run it, the same message is produced.

    This is the error log:

    Signature of the problem:
    Problem event name: BEX

    Application name: reg.exe
    Application version: 0.0.0.0
    Application timestamp: 44eeabe9
    Fault Module name: StackHash_0a9e
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception offset: 0018fedb
    Exception code: c0000005
    The exception data: badc0de1
    OS version: 6.1.7600.2.0.0.768.3
    Locale ID: 1033
    Additional information 1: 0a9e
    More information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional information 3: 0a9e
    Additional information 4: 0a9e372d3b4ad19135b953a78882e789

    I already asked in a computer forum, but they said that it is the problem of the ILO. and I read in microsoft help, the reg.exe will not run under 64-bit windows. I read the conclusion, but this isn't for windows server 2003, Windows 7. It says that I have to type reg query \\64server\HKLM\software/reg: 64 or if I want to change it to 32 bits reg.exe, I need to replace the reg: 64 by reg: 32.

    Will there be another conclusion of this problem instead to install the 32-bit operating system?

    What about XP mode for windows 7, it'll work?

    Help me please... Thank you very much.

    Best regards

    Hi Liclac,

    ·        What is the name of the game?

    Check if the game is compatible with windows 7, you can see the ink below:http://www.microsoft.com/windows/compatibility/windows-7/en-us/default.aspx

    If the game is not compatible then you can try to run the game in compatibility mode or in windows XP mode.

    Try to run the game in compatibility mod and check if the error occurs again: make sure to run older programs in this version of Windows:http://windows.microsoft.com/en-US/windows7/Make-older-programs-run-in-this-version-of-Windows

    With regard to:

    Samhrutha G S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • exception processing message 0000013 parameters 75b6bf7c 64

    I get a message: Windows - No disk Exception Processeing message 0000013 parameters 75b6bf7c 64 75b6bf7c 75b6br7c, can you tell me what that means and if there is a fix for it.

    I tried to make it easier for the user 'nervous about editing the registry:

    Before making any changes to your registry, back up the registry with this free and popular tool:

    http://www.SnapFiles.com/get/ERUNT.html

    Open Notepad to create a new text file:

    Click Start, run and enter in the box:

    notebook

    Click OK to open a new Notepad file.

    Copy and paste the following lines in bold text into the new Notepad file:

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\system\currentcontrolset\control\windows]
    "ErrorMode" =: 00000002

    Save the new text file with extension .reg on your desktop or somewhere you can remember with a name you can remember, something like:

    fix13.reg

    After you save the file, close Notepad.

    Locate the file fix13.reg on your desktop and double-click it.

    Alternatively, you can right-click on the fix13.reg file, choose open with... and select the registry editor.

    Answer in the affirmative to the question... Are you sure you want to add the information in the registry?

    You should then see a message that information has been registered in the register.

    Reboot your system and test.

    You can delete the fix13.reg file when you are finished.

  • an unhandled exception error code will not leave my screen,

    An unhandled exception has occurred in a component in an application, Microsoft .NET Framework. Can't get rid of it, can not use microsoft update this message is running continuously, so will not delete or update anything for me

    Another post:

    An exception unhandled on sqlservr.exe, Ive had it for weeks, tried as much as I could so that someone unfamiliar with computers. Ive downloaded .NET Framework 4 and SQL Server 2008, as these seemed to be the ones to help, but not so much, Ive tried every anti virus (not all at once), that the side effect of this is that Windows update pushes to install service pack .NET 3.5, as well as the family pack, which downloads but usually install after Ive accepted the rules of M.S. and the Regs and will let no other updates install until This 1 is installed, what obviously will not happen at the moment. My computer opens with Just in Time Debugger informing me of this exception, which was created when I tried the free download of Visual Studio 2010, which is another that made it worse.

    Hi Kenny,

    It sounds like this may be due to a corrupt user profile.  See the following article for troubleshooting:

    http://Windows.Microsoft.com/en-us/Windows7/fix-a-corrupted-user-profile

    I hope this helps!

  • I get the following error message "Windows - no disk Exception processing Message c0000012 parameters 75b6bf7c 4 75b6b7c 75b6b7c" can someone tell me what this means and how get rid of? Thank you!

    I get the following "Windows - no disk Exception Message c0000013 processing error message
    Parameters 75b6bf7c 4 75b6b7c 75b6b7c"can someone tell me what this means and how get rid of? Thank you!

    * UNPLUG ALL USB DEVICES AND NON-ESSENTIAL TO THE COMPUTER

    If you can, I suggest that you try the following:

    {THE PHASE 1}

    1. click on START
    2. click on "all programs".
    3. click on "Accessories".
    4. click on "system tools."
    5. click on "system restore."
    6 follow the prompts shown to restore your system to a date before the problem started. Although the system restore does not target the personal data, it is recommended that you back up all data such as music, photos and documents in case something is not bad.
    {THE PHASE 2}
    If this does not work, I could do this:
    Reach:
    Follow the instructions to download the version (diskette) indicated secondary. This will require a floppy disk. If you don't have one available, skip this step. Unfortunantly, given the age of this system, they do not offer executable for use within Windows automatic update.
    {THE PHASE 3}
    Reach:
    Download the patch and install it. Then, restart your computer.
    Reach:
    Download the patch and install it. Then, restart your computer.
    Let us know what happens
    Thank you!

    Ryan Thieman
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Where can I find my key "Reg" Vista?

    Hello

    I have a virus and my software security Vista tells me that I must enter my Reg Key to have the virus deleted, can someone advise where I could find the Reg Key?

    Thank you

    Brian

    Hello

    Vista Internet Security 2010 is a fake antivirus, a scam to get you to pay for it, while it has no advantage at all.

    This theme has the removal as all instructions these are variants of the same rogue program.

    How to remove XP Internet Security 2010, Antivirus 2010 Vista and Win 7 Antispyware 2010
    http://www.bleepingcomputer.com/virus-removal/remove-antivirus-Vista-2010

    It can be made repeatedly in Mode safe - F8 tap that you start, however you must also run them
    the Windows when you can.

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone. (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

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

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with other security programs. It comes
    a scan only, VERY EFFICIENT, if it finds something to come back here or use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software (viruses, Trojans,
    Rootkits, etc.) that has infected your computer despite all the security measures that you have taken (such as
    the anti-virus software, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

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

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    http://OneCare.live.com/site/en-us/default.htm

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

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

    Also do to the General corruption of cleaning and repair/replace damaged/missing system files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Run checkdisk - schedule it to run at the next startup, then apply OK then restart your way.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

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

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • iLLEGALARGUMENT EXception on touch event

    package mypackage;
    
    import java.util.Vector;
    
    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FocusChangeListener;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.Manager;
    import net.rim.device.api.ui.TouchEvent;
    import net.rim.device.api.ui.TouchGesture;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.XYRect;
    import net.rim.device.api.ui.component.BasicEditField;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.SeparatorField;
    import net.rim.device.api.ui.component.Status;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    
    public class PlaylistTab extends MainScreen  implements FocusChangeListener{
    
        private int _xCoord = 0; //The x coordinate for the top left corner of the image.
        private int _yCoord = 0; //The y coordinate for the top left corner of the image.
        private int _xTouch = 0; //The x coordinate of the previous touch point.
        private int _yTouch = 0; //The y coordinate of the previous touch point.
    
        private LabelField tab1;
    
        private LabelField tab2;
    
        private LabelField tab3;
    
        private LabelField spacer1;
    
        private LabelField spacer2;
    
        private VerticalFieldManager tabArea;
    
        private LabelField tab1Heading;
    
        private BasicEditField tab1Field1;
    
        private BasicEditField tab1Field2;
    
        private LabelField tab2Heading;
    
        private BasicEditField tab2Field1;
    
        private BasicEditField tab2Field2;
    
        private LabelField tab3Heading;
    
        private BasicEditField tab3Field1;
    
        private BasicEditField tab3Field2;
    
        private VerticalFieldManager tab1Manager;
        private VerticalFieldManager tab2Manager;
        private VerticalFieldManager tab3Manager;
        int tabNum = 1;
        public PlaylistTab()
        {
            super(NO_VERTICAL_SCROLL | NO_VERTICAL_SCROLLBAR);
            //HorizontalFieldManager hManager = new HorizontalFieldManager();
            HorizontalFieldManager hManager = new HorizontalFieldManager(NO_VERTICAL_SCROLL | NO_VERTICAL_SCROLLBAR | NO_HORIZONTAL_SCROLL  | NO_HORIZONTAL_SCROLLBAR);
            Font font = getFont().derive(Font.PLAIN, 35);
            tab1 = new LabelField("Songs", LabelField.FOCUSABLE | LabelField.HIGHLIGHT_SELECT)
            {
                protected boolean navigationClick(int status,int time){
    
                    return true;
                }
                protected void layout(int width, int height) {
                    super.layout(width, height);
                    //    this.setExtent(this.getWidth(), 60);
                    this.setMargin( ( getHeight() - this.getPreferredHeight()), 0, 0, (getWidth() - this.getPreferredWidth()));
                }
            };
            tab2 = new LabelField("Album", LabelField.FOCUSABLE | LabelField.HIGHLIGHT_SELECT)
            {
                protected boolean navigationClick(int status,int time){
    
                    return true;
                }
                protected void layout(int width, int height) {
                    super.layout(width, height);
                    //    this.setExtent(this.getWidth(), 60);
                    this.setMargin( ( getHeight() - this.getPreferredHeight()), 0, 0, (getWidth() - this.getPreferredWidth()));
                }
            };
            tab3 = new LabelField("Artist", LabelField.FOCUSABLE | LabelField.HIGHLIGHT_SELECT)
            {
                protected boolean navigationClick(int status,int time){
    
                    return true;
                }
                protected void layout(int width, int height) {
                    super.layout(width, height);
                    //    this.setExtent(this.getWidth(), 60);
                    this.setMargin( ( getHeight() - this.getPreferredHeight()), 0, 0, (getWidth() - this.getPreferredWidth()));
                }
            };
            spacer1 = new LabelField(" | ", LabelField.NON_FOCUSABLE);
            spacer2 = new LabelField(" | ", LabelField.NON_FOCUSABLE);
    
            tab1.setFocusListener(this);
            tab2.setFocusListener(this);
            tab3.setFocusListener(this);
            hManager.add(tab3);
            hManager.add(spacer1);
            hManager.add(tab2);
            hManager.add(spacer2);
            hManager.add(tab1);
    
            add(hManager);
            add(new SeparatorField());
    
            tab1Manager = new VerticalFieldManager(VERTICAL_SCROLL | VERTICAL_SCROLLBAR );
            tab2Manager = new VerticalFieldManager(VERTICAL_SCROLL | VERTICAL_SCROLLBAR );
            tab3Manager = new VerticalFieldManager(VERTICAL_SCROLL | VERTICAL_SCROLLBAR );
    
            tabArea = displayTab3();
            add(tabArea);
    
        }
        public void focusChanged(Field field, int eventType) {
            if (tabArea != null) {
                if (eventType == FOCUS_GAINED) {
                    if (field == tab1) {
                        System.out.println("Switch to Tab 1");
                        delete(tabArea);
                        tabArea = displayTab1();
                        add(tabArea);
                    } else if (field == tab2) {
                        System.out.println("Switch to Tab 2");
                        System.out.println("Switch to Tab 1");
                        delete(tabArea);
                        tabArea = displayTab2();
                        add(tabArea);
                    } else if (field == tab3) {
                        System.out.println("Switch to Tab 3");
                        System.out.println("Switch to Tab 1");
                        delete(tabArea);
                        tabArea = displayTab3();
                        add(tabArea);
                    }
                }
            }
    
        }
    
        public VerticalFieldManager displayTab1() {
            try
            {
                tabNum = 3;
                final VerticalFieldManager Content= new VerticalFieldManager(Manager.USE_ALL_WIDTH|Manager.VERTICAL_SCROLL);
                Content.setMargin(5,0,0,0);
                int mas  = 0 ;
                Vector oleg = new Vector();
                SQLManager poligs = new SQLManager();
                poligs.getSongDownload(oleg, 0);
                while(mas < oleg.size())
                {
                    Song temp = (Song) oleg.elementAt(mas);
                    Content.add(new A_Song(temp.songId, temp.songName, false,temp.albumCover,temp));
                    mas++;
                }
                tab1Manager.deleteAll();
    
                HorizontalFieldManager topManager = new HorizontalFieldManager()
                {
                    public void paint(Graphics graphics)
                    {
                        graphics.setBackgroundColor(0x00000000);
                        graphics.clear(); super.paint(graphics);
                    }
                    protected void sublayout( int maxWidth, int maxHeight )
                    {
                        int width = Display.getWidth();
                        int height = this.getPreferredHeight();
                        super.sublayout( width, height);
                        setExtent( width, height);
                    }
                };
                CustomTextBox editField = new CustomTextBox();
                int pol = Display.getWidth() / 2;
                editField.setWidth(pol);
                ButtonField button = new ButtonField("Search");
                topManager.add(editField);
                topManager.add(button);
    
                //  tab1Manager.add(topManager);
                tab1Manager.add(Content);
            }
            catch(final Exception e)
            {
    
                e.printStackTrace();
                System.out.println("------------------- ");
            }
            return tab1Manager;
        }
    
        public VerticalFieldManager displayTab2() {
            try
            {
                tabNum = 2;
                final VerticalFieldManager Content= new VerticalFieldManager(Manager.USE_ALL_WIDTH|Manager.VERTICAL_SCROLL);
                Content.setMargin(5,0,0,0);
                int mas  = 0 ;
                Vector oleg = new Vector();
                SQLManager poligs = new SQLManager();
                poligs.getSongDownloads(oleg, 0);
                while(mas < oleg.size())
                {
                    Albums temp = (Albums) oleg.elementAt(mas);
                    Content.add(new A_Album(temp.albumId, temp.albumName, false,temp.albumCover,temp));
                    mas++;
                }
                tab2Manager.deleteAll();
                tab2Manager.add(Content);
            }
            catch(final Exception e)
            {
    
                e.printStackTrace();
                System.out.println("------------------- ");
            }
            return tab2Manager;
        }
    
        public VerticalFieldManager displayTab3() {
            try
            {
                tabNum = 1;
                final VerticalFieldManager Content= new VerticalFieldManager(Manager.USE_ALL_WIDTH|Manager.VERTICAL_SCROLL);
                Content.setMargin(5,0,0,0);
                int mas  = 0 ;
                Vector oleg = new Vector();
                SQLManager poligs = new SQLManager();
                poligs.getSongDownloadss(oleg, 0);
                while(mas < oleg.size())
                {
                    Artist temp = (Artist) oleg.elementAt(mas);
                    //Content.add(new A_AddSingersFM(temp.songId, temp.songName, false,temp.albumCover,temp,-1, tb, logIn,logOut,1,0,0, Register));
                    Content.add(new A_Artisti(temp.artistId, temp.artistName, false,temp.artistPhoto,temp));
                    //  int m = temp.getSongId();
                    mas++;
                }
                tab3Manager.deleteAll();
                tab3Manager.add(Content);
            }
            catch(final Exception e)
            {
    
                e.printStackTrace();
                System.out.println("------------------- ");
            }
            return tab3Manager;
        }
        protected boolean touchEvent(TouchEvent touchEvent)
        {
            int eventCode = touchEvent.getEvent();
    
            if(eventCode == TouchEvent.GESTURE){
                System.out.println("SWIPE GESTURE");
                TouchGesture g = touchEvent.getGesture();
                int gesturecode = g.getEvent();
                int direction = g.getSwipeDirection();
    
                //gallery.setHorizontalScroll(page_two, true);
                if(direction == TouchGesture.SWIPE_WEST)
                {
    
                    if(tabNum == 3)
                    {
                        delete(tabArea);
                        tabArea = displayTab2();
                        add(tabArea);
                    }
                    else if(tabNum == 2)
                    {
                        delete(tabArea);
                        tabArea = displayTab3();
                        add(tabArea);
                    }
                }
    
                if(direction == TouchGesture.SWIPE_EAST)
                {
    
                    if(tabNum == 1)
                    {
                        try
                        {
                            delete(tabArea);
                        }
                        catch(Exception e)
                        {
                            try
                            {
                                tabArea = displayTab2();
                            }
                            catch(Exception ef)
                            {
                                add(tabArea);
                                return false;
                            }
                            add(tabArea);
                            return false;
                        }
                        try
                        {
                            tabArea = displayTab2();
                        }
                        catch(Exception ef)
                        {
                            add(tabArea);
                            return false;
                        }
                        add(tabArea);
                        return false;
    
                    }
                    else if(tabNum == 2)
                    {
                        try
                        {
                            delete(tabArea);
                        }
                        catch(Exception e)
                        {
                            try
                            {
                                tabArea = displayTab1();
                            }
                            catch(Exception ef)
                            {
                                add(tabArea);
                                return false;
                            }
                            add(tabArea);
                            return false;
                        }
                        try
                        {
                            tabArea = displayTab1();
                        }
                        catch(Exception ef)
                        {
                            add(tabArea);
                            return false;
                        }
                        add(tabArea);
                        return false;
                    }
                }
            }
            //The touch event was not consumed.
            return false;
        }
    }
    

    On the sidelines, East or West navigation events I illegalargument exception.and my page crashing.

    However, when I run the same code through the debugger it works fine. I put my debugging inside the touchevent ifs and elses togglepoints.

    And note, if it crashes and I click on an illegal argument exception... I go back to the home page and as if the touchevent function was called twice and 2 strips was skipped.

    It works fine but through debugger.any help?

    very strange, I did this and it worked

    protected boolean touchEvent(TouchEvent message)
        {
            try
            {
                int eventCode = message.getEvent();
    
                if(eventCode == TouchEvent.GESTURE){
                    System.out.println("SWIPE GESTURE");
                    TouchGesture g = message.getGesture();
                    int gesturecode = g.getEvent();
    
                    switch(gesturecode) {
    
                        case TouchGesture.SWIPE:
                            int direction = g.getSwipeDirection();
                        //gallery.setHorizontalScroll(page_two, true);
                        if(direction == TouchGesture.SWIPE_WEST)
                        {
    
                            if(tabNum == 3)
                            {
                            //  delete(tabArea);
                            //  tabArea = displayTab2();
                            //  add(tabArea);
                                tab2.setFocus();
                                return super.touchEvent(message);
                            }
                            else if(tabNum == 2)
                            {
                            //  delete(tabArea);
                            //  tabArea = displayTab3();
                            //  add(tabArea);
                                tab3.setFocus();
                                return super.touchEvent(message);
                            }
                        }
                        else if(direction == TouchGesture.SWIPE_EAST)
                        {
    
                            if(tabNum == 1)
                            {
    
                                        //delete(tabArea);
                                        //tabArea = displayTab2();
                                        //add(tabArea);
                                        tab2.setFocus();
                                        return super.touchEvent(message);
    
                            }
                            else if(tabNum == 2)
                            {
    
                                    //delete(tabArea);
                                    //tabArea = displayTab1();
                                    //add(tabArea);
                                    tab1.setFocus();
                                    return super.touchEvent(message);
    
                            } }
    
                        break;
                    }
                }
                    //The touch event was not consumed.
                    return super.touchEvent(message);
            }
            catch(Exception eol)
            {
                return super.touchEvent(message);
            }
        }
    

    I do this on tab2.setfocus (), if I call setfocus it works... but if icall it separately as it is not and it hangs. very strange

    // delete(tabArea);
                            //  tabArea = displayTab2();
                            //  add(tabArea);
    
    
    
  • Eception exception blackBerry Smartphones: 131071 index &gt; = 16

    I use Opera Mini (downloaded from the app world) as my internet because my network not accepting form is not the internet blackberry. I used it for some time and have used it today however I tried to go on it, but a message saying "eception exception: 131071 index > = 16' appears." I tried out my battery and check the updates (which I've updated), but it still does not work. Any help please?

    The first thing would be to remove the app and then recharge it. Apps can sometimes be damaged and can recharge them (even the same version) often.
    If this does not help, you can skip right to a reload of the OS of your phone (once again, even the same version).

    Let us know if that helps you.

  • EventType = APPCRASH Exception code: 0xc0000005

    Windows 7 Ultimate 32 bits when I try to run "associate a type of file or Protocol with a program" default programs

    in Control Panel, I get a dialog box saying "Windows Explorer has stopped working"

    Of the event viewer:

    The failing application name: Explorer.EXE, version: 6.1.7601.17567, time stamp: 0x4d6727a7
    The failed module name: ole32.dll, version: 6.1.7601.17514, time stamp: 0x4ce7b96f
    Exception code: 0xc0000005
    Offset: 0x00028cd6
    ID of the process failed: 0xbfc
    Start time of application vulnerabilities: 0x01ce202ced2679a4
    The failing application path: C:\Windows\Explorer.EXE
    The failed module path: C:\Windows\system32\ole32.dll

    A ran sfc and a check of the CBS reports no errors in the system files

    Hello

    Welcome to the Microsoft Community Forums.

    According to the description, it seems that you are facing in the APPCRASH Explorer.exe for error as you get an error message "Windows Explorer has stopped working". I will certainly help you fix this problem.

    (1) did you do changes on the computer before this problem?

    This problem may be due to one of the following problems:

    • You are using an outdated or corrupted video driver
    • System files on your PC can be damaged or do not correspond with other files
    • You may have an infection of viruses or malware on your PC
    • Some applications or services that are running on your computer may be responsible for Windows Explorer to stop working

    Method 1: I suggest you to follow the steps from the link and check if it helps.

    Error: Windows Explorer has stopped working

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

    Important: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    Note: When you are finished troubleshooting, follow these steps to reset the computer to start as usual.

    Windows Vista and Windows 7

    1. Click Start, type msconfig.exe in the Start Search box and press ENTER.
      If you are prompted for an administrator password or for confirmation, you must type the password or click continue.
    2. On the general tab, click the Normal startup option, and then click OK.
    3. When you are prompted to restart the computer, click restart.

    Note: As upgrade on the spot is the final solution, I suggest you skip this step before reinstalling the operating system. As it takes the same amount of time to do the upgrade as to reinstall the operating system. In addition, some of your custom Windows settings may be lost through this process.

    Method 2: I also suggest you to follow the steps in the article mentioned below and check.

    Windows Explorer may hang in Windows 7 or in Windows Server 2008 R2

    http://support.Microsoft.com/kb/2515325/en-us

    You can also check the following thread, which talks about the similar issue:

    Explorer Windows stopped working

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-performance/Windows-Explorer-has-stopped-working/6ab02526-5071-4DCC-895F-d90202bad8b3

    I hope this helps. Try the above steps and get back to us for further assistance if you have questions about the Windows operating system. We will be happy to help you.

Maybe you are looking for

  • Cannot delete music from my iPod shuffle

    I have music on my iPod shuffle but want to change it.  When it is plugged into my mac and I open iTunes, I can click on the playlist button change and it brings up the list of music. However, nothing happens when I press on Delete on the song I want

  • Satellite A200 - 1 M 8: cannot install Win XP because of the unseen HARD drive

    I have this laptop. I want to this laptop Windows XP, but when I do, there is: we can't found any hard in yor computers. What is it? And question 2. Are there for this laptop Windows XP drivers? Thank you very much!!!

  • Message by saying,"Network Inspection System has stopped working and the program was closed. »

    I backed up my pc, I've defragmented, I tried to create a restore point that was earlier with no luck. I love my Inspiron, but I am concerned about the speed and the freeze ups. This problem has stopped my Internet pages. Grrrr, DR PC?

  • HP 14-d004tx laptop

    Hello! My laptop is HP 14-d004tx with 8.1 of Windows which is now only 2 days old. I just installed Microsoft 2010 and a few programs that I need for work. After that, I stop but chose the option "updates then Shut Down. It has 97 updates. And after

  • Error: 0 x 80004002 then tried to delete the files

    Original title: 0x80004002__ Some Web sites have spared themselves links as files on my computer and I can't delete them. I typed in this error code it gave me (0 x 80004002) and dd everything that he told me to do, but I can remove them yet. What sh