I try to create a directory on a mapped directory with forms 10g ?

Hello !
I try to create a directory on a mapped directory with forms 10g in web environment. The mapped directory is located on the application server. For this, I use this command : host('cmd /c md h:\test'); and it doesn't work.
When I execute this command directly on the server, it works good...
Thanks
Pascal Mottay
France

Hello !
I try to create a directory on a mapped directory with forms 10g in web environment. The mapped directory is located on the application server. For this, I use this command : host('cmd /c md h:\test'); and it doesn't work.
When I execute this command directly on the server, it works good...
Thanks
Pascal Mottay
France

Similar Messages

  • Not able to create a text file in Client Machine using Forms 10g

    Hi - I'm mot able to create a text file in Client Machine using Forms 10g. I'm getting error when system executes the bolded line.(i.e. CLIENT_TEXT_IO.FOPEN). During run-time system is throwing "ORA-06508: PL/SQL: could not find program unit being called".
    I had attached webutil.pll in the form.
    Please advise me.
    DECLARE
    l_Temp CLIENT_TEXT_IO.FILE_TYPE;
    LC$Name Varchar2(100) ;
    LC$Fic Varchar2(100) ;
    LN$Lines Pls_integer := 0 ;
    LC$Line Varchar2(4000) ;
    Cursor C_CUR Is
    Select * From TEST_TEXTIO where rownum <= 50;
    BEGIN
    LC$Name := 'tmp_file.txt' ;
    LC$Fic := 'c:\temp\tmp_file.txt';
    Begin
    l_temp := CLIENT_TEXT_IO.FOPEN( 'C:\temp\tmp_file.txt', 'W');
    Exception
         when others then
         message( 'OPEN FILE ERROR ' || LC$Fic ||sqlerrm );
         display_error;
         raise form_trigger_failure;
    End ;
    -- Write the lines --
    For Cur In C_CUR Loop
         LC$Line := Cur.CODE || ' -> ' || Cur.COL1 || ',' || Cur.COL2 || ',' || Cur.Col3 ;
         CLIENT_TEXT_IO.PUT_LINE( LF$File, LC$Line ) ;      
         LN$Lines := C_CUR%ROWCOUNT ;
    End loop ;
    -- Close the file --
    CLIENT_TEXT_IO.FCLOSE( LF$File ) ;
    Exception
         When others Then
    message('err='||sqlerrm);message(' ');
    display_error;
    CLIENT_TEXT_IO.FCLOSE( LF$File ) ;      
         Raise ;
    END;
    Thanks.
    Arun

    Hi ,
    i have one Question though its not related to thos question if some could help me it will be really helpful,
    i have created one program to import and export excel to forms vice versa, if the form is attached with webutil its working fine am using ole2.but i have a new idea if i add this program in menu, it can be used for all the forms attched to that menu, i made program also, but problem am facing right now is if the form is not attched with webutil it will not work so is there possiblity to share my webutil from one form to another form ,so i will keep one form as a interface form in that webutil will be attched ,i can share that webutil to all other forms so that all the forms no need to attach webutil again
    if its possible means please suggest some ideas

  • Try to create a pdf file in photoshop Get Distiller error %%[ Error: Helvetica not found. Font cannot be embedded. ]%%

    Hello,
    when i try to create a pdf file in photoshop CC with the printer "Adobe PDF" in Optimal Quality, document is not created and i get an error log file with this content :
    %%[ ProductName: Distiller ]%%
    %%[ Error: Helvetica not found. Font cannot be embedded. ]%%
    %%[ Error: invalidfont; OffendingCommand: findfont ]%%
    Stack:
    /Font
    (Helvetica)
    /_Helvetica
    [39 /quotesingle 96 /grave 130 /quotesinglbase /florin /quotedblbase
    /ellipsis /dagger /daggerdbl /circumflex /perthousand /Scaron
    /guilsinglleft /OE /.notdef /.notdef /.notdef /.notdef /quoteleft
    /quoteright /quotedblleft /quotedblright /bullet /endash /emdash
    /tilde /trademark /scaron /guilsinglright /oe /.notdef /.notdef
    /Ydieresis]
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Does anyone have an idea ?
    Thanks a lot.

    Hi,
    The D810 requires Camera Raw 8.6 or later - the latest version that is compatible with Photoshop Elements 12 is Camera Raw 8.5 as far as I can see.
    You need to either buy a new version of Photoshop Elements or use the free Adobe DNG converter.
    DNG  Converter 8.8
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5888
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5887
    Useful Tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • I'm doing something wrong when I try to create a file.

    I'm working with binary files, trying to do a log file and I'm having this error
    java.io.FileNotFoundException: log.dat (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at Servidor.XServer.log(XServer.java:186)
         at Servidor.XServer$nwc$readLine.run(XServer.java:312)This is because the file is not being created, but I don't know why, here is my code, where I try to create it.
         /// ANADIR EVENTOS AL ARCHIVO LOG // ADD EVENTS TO LOG FILE
         int log(String arg[], String ip , String voto){
              File file = null;
             if (file == null) {
                 System.out.println ("Default: log.dat");       
                 file = new File ("log.dat");     //    why it isn't creating the file?
             // Now write the data to the file.
             try{
                  FileInputStream file_input = new FileInputStream (file);
                 DataInputStream data_in    = new DataInputStream (file_input);
                 String iptmp ="";  // ip tmp
                 String vot1=null;          // vot 1er lugar tmp
                 String vot2=null;        // vot 2do lugar
                 int itmp=0;          // intentos tmp
                 while(true){
                    try{
                      iptmp= data_in.readUTF();
                      vot1= data_in.readUTF();
                      vot2=data_in.readUTF();
                      itmp=data_in.readInt();
                 DataOutputStream data_out = new DataOutputStream (new FileOutputStream (file));
                 voto=(voto.substring(0, 1)+chart.get(Integer.parseInt(voto.substring(1, voto.length()))));
                           // SI EL IP YA VOTO POR EL PRIMER EQUIPO (ERROR EN VOTO)
                        if (iptmp.equalsIgnoreCase(ip) && vot1!=null && voto.startsWith("1")){
                             data_out.writeInt(itmp+1);
                             return(-1);
                        // SI EL IP YA VOTO POR EL SEGUNDO EQUIPO (ERROR EN VOTO)
                        if (iptmp.equalsIgnoreCase(ip) && vot2!=null && voto.startsWith("2")){
                             data_out.writeInt(itmp+1);
                             return(-1);
                        // SI UN IP NO HA VOTADO POR EL PRIMER LUGAR     
                      if (iptmp.equalsIgnoreCase(ip) && vot1==null && voto.startsWith("1")){
                         data_out.writeChars(ip);  // ip
                         data_out.writeChars(voto);   // voto por primer lugar
                         data_out.writeInt(itmp); // intentos de votos
                         // SI UN IP NO HA VOTADO POR EL SEGUNDO LUGAR
                      if(iptmp.equalsIgnoreCase(ip) && vot2==null && voto.startsWith("2")){     
                         data_out.writeChars(ip);  // ip
                         data_out.writeChars(voto);   // voto por segundo lugar
                         data_out.writeInt(itmp); // intentos de votos
                      data_out.close();
                 }catch (EOFException eof) {
                             System.out.println ("End of File");
                             break;
                      data_in.close();
             } catch (IOException e) {
                   e.printStackTrace();
              return 0;
         }Would you help me out with this? I don't see what is wrong I'm following an example from the oracle / java tutorial and I cant see what is different

    I´m not sure if Im understanding what you´re saying... If you dont describe the path, then the file will be created in the project folder, right?
    check this program out
    it doesnt specifies a path but if you try run it the file will be created in the project folder. ¨
    import java.io.*;
    import java.util.*;
    /**  Write a primitive type data array to a binary file.**/
    public class BinOutputFileApp
      public static void main (String arg[]) {
        Random ran = new Random ();
        // Create an integer array and a double array.
        int    [] i_data = new int[15];
        double [] d_data = new double[15];
        // and fill them
        for  (int i=0; i < i_data.length; i++) {
          i_data[i] = i;
          d_data[i] = ran.nextDouble () * 10.0;
        File file = null;
        // Get the output file name from the argument line.
        if (arg.length > 0) file = new File (arg[0]);
        // or use a default file name
        if (file == null) {
            System.out.println ("Default: numerical.dat");
            file = new File ("numerical.dat");
        // Now write the data array to the file.
        try {
          // Create an output stream to the file.
          FileOutputStream file_output = new FileOutputStream (file);
          // Wrap the FileOutputStream with a DataOutputStream
          DataOutputStream data_out = new DataOutputStream (file_output);
          // Write the data to the file in an integer/double pair
          for (int i=0; i < i_data.length; i++) {
              data_out.writeInt (i_data);
    data_out.writeDouble (d_data[i]);
    // Close file when finished with it..
    file_output.close ();
    catch (IOException e) {
    System.out.println ("IO exception = " + e );
    } // main
    } // class BinOutputFileApp

  • Can't create new files in curlftpfs mounted directory

    Hi All.
    I'm trying to mount an FTP directory locally so I can use it as a local directory.
    I have this in my fstab:
    curlftpfs#USERNAME:[email protected] /media/ftp fuse rw,allow_other,proxy=,uid=500,user 0 0
    now, here's the weird thing.
    I can edit files in there fine.
    If I try to create a new file (using mousepad for example) the file is created, then I get an error 'unable to write file'.
    The problem with that is that when I try to (for example) create a new project in kdevelop using this directory, the 'unable to write file' error means kdevelop isn't able to create it's project file.
    Help?

    duplicated thread

  • How do i fix the Error 26073 when i try to creater an installer for my applicati

    When i try to create a Labview V6.1 installer for my application i get the error
    Error26073 occured at Build application.vi>>Dist call Create Installer.vi>>Win Install Create.vi>>Win Install Add files.vi>>MSI DK Add shortcut.vi
    the possible reason listed is   NMDK_AS_BAD_SHORTCUT_NAME
    I have heaps of disk space free
    THe installer worked fine a few months ago

    Hi Rambo,
    Thank you for contacting National Instruments.  From the information you have provided here, its sounds like a couple of different things can be causing this issue.  In looking at some previous instances where this error code was reported when using the application builder, it would be worthwhile to look at the file name field and the location the VIs are saved. 
    Take a look at the field where the file name is provided and ensure only the name is in this location.  By this I mean that the file path and name aren't both concatenated and entered here.
    Also, if the VIs are saved in the user library or the vi library see if it makes any difference if they are moved to another directory. 
    I hope this helps!  If not, any other possible information that you have or may come upon would definitely be helpful.  Have a great day!
    Jason W.
    National Instruments
    Applications Engineer

  • [SOLVED] mkfifo: cannot create fifo '': No such file or directory

    Hi, I'm trying to get Bar working on bspwm but I'm getting an error whenever I try to load it.
    mkfifo: cannot create fifo ‘’: No such file or directory
    At first I fiddled with it a bit and it didn't work. I figured I was making some syntax errors or whatever but the example code gives me the same errors.
    I've tried to read up on mkfifo but I'm a bit lost now. I hope someone can push me in the right direction. :)
    Last edited by Mnk (2014-08-29 16:24:37)

    I'm guessing you are running the panel script without the PANEL_FIFO environment variable set, so the script is trying to open an empty file name.
    Use the profile script to set the PANEL_FIFO variable, or set it explicitly in the panel script.
    If this is not the problem, please provide more information about exactly what you are doing.

  • HT5622 my i tunes id is not working......i try to create new id but it requires my visa card info....what should i do

    my i tunes id is not working......i try to create new id but it requires my visa card info....what should i do. how can i get my precious id or how can i create new id without giving visa information. i tried but there is no none option in visa card part

    What do you mean by 'my iTunes id is not working' ? Of you mean that it's disabled then you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your iOS deviced by tapping on your id in Settings > Store (Settings > iTunes & App Store on iOS 6+) and then log back in so as to 'refresh' the account on them.
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If you mean something else ... ?
    In terms of creating a new account, there are instructions on this page for how to create one without giving credit card details : http://support.apple.com/kb/HT2534 - the instructions won't work with existing accounts, and any content that you bought/downloaded with your existing acocunt will remain tied to that existing account.

  • When trying to update  Apps in iTunes on my computer my old Apple ID appears, which is no longer in use and has no password; even when I try to create a password for this Old ID, Apple won't let me. When I go into see my Account settings My new Apple ID /

    When trying to update  Apps in iTunes on my computer my old Apple ID appears, which is no longer in use and has no password; even when I try to create a password for this Old ID, Apple won't let me. When I go into see my Account settings My new Apple ID / iTunes ID are listed and the passwords are correct obviously so why can't I update my Apps?   Why does my Old apple ID keep appearing and how can I get Apple to change this?

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • Pages crashes when opening any document on iPad 3 Latest version.   I could find on the net and finally deleted Pages from my device and reinstalled it. Still when I try to create anew document or open a document it just cr

    Pages crashes when opening any document on iPad 3 Latest version. I tried everything I could find on the net and finally deleted Pages from my device and reinstalled it. Still when I try to create a new document or open a document it just crashes out.

    Try this:
    Make sure IOS is updated to latest version
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings

  • I am using Adobe Acrobat 9 Standard version in Windows 8.1 and when I try to create a .pdf file, I receive the following error message "Acrobat could not open "file name.log" because it is either not a supported file type or because the file has been dama

    I am using Adobe Acrobat 9 Standard version in Windows 8.1 and when I try to create a .pdf file, I receive the following error message "Acrobat could not open "file name.log" because it is either not a supported file type or because the file has been damaged.  To create a PDF document, go to the source application then print the document to .pdf"  I am going to the source application and printing the document to .pdf yet it's saving the file as a .log file.  After reinstalling the software, I initially didn't encounter this problem but on my second and third attempts to convert files to .pdf format, this error message reappeared.  How do I resolve this problem?

    I have a similar problem which i did not have before...and it exists only in some powerpoint files which i want to print as a pdf file...and i get the same message as above.
    the log says the bellow details...what's the problem and how can i resolve it? thanks.
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    %%[Page: 2]%%
    Cambria not found, using Courier.
    %%[ Error: invalidfont; OffendingCommand: show ]%%
    Stack:
      %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%

  • Imovie crashes when i try to create a new project

    When i open Imovie and try to create a new project it crashes and gives me this error message. How can i fix this?
    Process: iMovie [363]
    Path: /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier: com.apple.iMovie3
    Version: 3.0.3 (3.0.3)
    Build Info: iMovieBinaries-4000000~65
    Code Type: PPC (Native)
    Parent Process: launchd [128]
    Date/Time: 2010-07-17 18:38:39.977 -0400
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x000000000000070b
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x964d0fd8 objc_msgSend + 24
    1 com.apple.iMovie3 0x000f7430 0x1000 + 1008688
    2 com.apple.iMovie3 0x000f73b0 0x1000 + 1008560
    3 com.apple.AppKit 0x944c5fb4 -[NSScrollView _setVerticalScrollerHidden:] + 40
    4 com.apple.AppKit 0x944a54f8 -[NSScrollView tile] + 1196
    5 com.apple.AppKit 0x943f8600 -[NSScrollView reflectScrolledClipView:] + 1104
    6 com.apple.AppKit 0x943f8050 -[NSClipView _selfBoundsChanged] + 712
    7 com.apple.AppKit 0x943f7948 -[NSClipView setBoundsOrigin:] + 80
    8 com.apple.AppKit 0x943f6afc -[NSClipView setDocumentView:] + 492
    9 com.apple.AppKit 0x943f68a0 -[NSScrollView setDocumentView:] + 36
    10 com.apple.AppKit 0x943b4d24 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 848
    11 com.apple.AppKit 0x944afa88 -[NSNib instantiateNibWithExternalNameTable:] + 768
    12 com.apple.AppKit 0x944af740 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 240
    13 com.apple.AppKit 0x945c1418 +[NSNavView navView] + 148
    14 com.apple.AppKit 0x945c0944 -[NSSavePanel(NSSavePanelLayout) _initContentView] + 1420
    15 com.apple.AppKit 0x945c0134 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 344
    16 com.apple.AppKit 0x945bff88 +[NSSavePanel _crunchyRawUnbonedPanel] + 180
    17 com.apple.iMovie3 0x000551a0 0x1000 + 344480
    18 com.apple.iMovie3 0x00055808 0x1000 + 346120
    19 com.apple.iMovie3 0x00054170 0x1000 + 340336
    20 com.apple.Foundation 0x950e5114 nsnotecallback + 372
    21 com.apple.CoreFoundation 0x9004e7c8 _CFXNotificationPostNotification + 920
    22 com.apple.Foundation 0x950e27bc -[NSNotificationCenter postNotificationName:object:userInfo:] + 88
    23 com.apple.AppKit 0x9445cd34 -[NSApplication _postDidFinishNotification] + 108
    24 com.apple.AppKit 0x9445cc4c -[NSApplication _sendFinishLaunchingNotification] + 80
    25 com.apple.AppKit 0x943e45f0 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 260
    26 com.apple.AppKit 0x943e3e28 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 88
    27 com.apple.Foundation 0x95105988 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 480
    28 com.apple.Foundation 0x9510575c _NSAppleEventManagerGenericHandler + 236
    29 com.apple.AE 0x955dfce0 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 164
    30 com.apple.AE 0x955dfbe8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 40
    31 com.apple.AE 0x955df9ec aeProcessAppleEvent + 212
    32 com.apple.HIToolbox 0x911c54ac AEProcessAppleEvent + 52
    33 com.apple.AppKit 0x943e1954 _DPSNextEvent + 1156
    34 com.apple.AppKit 0x943e10dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    35 com.apple.AppKit 0x943dad98 -[NSApplication run] + 736
    36 com.apple.AppKit 0x943ab79c NSApplicationMain + 440
    37 com.apple.iMovie3 0x00003c84 0x1000 + 11396
    38 com.apple.iMovie3 0x00003ab4 0x1000 + 10932
    Thread 1:
    0 libSystem.B.dylib 0x95ddcb68 _semwaitsignal + 8
    1 libSystem.B.dylib 0x95ddc97c nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x95ddc8ac usleep$UNIX2003 + 68
    3 com.apple.AppKit 0x9443d344 -[NSUIHeartBeat _heartBeatThread:] + 1840
    4 com.apple.Foundation 0x950e5764 _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x95e18024 pthreadstart + 316
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0x964d0fd8 srr1: 0x0200f030 dar: 0x0000070b dsisr: 0x40000000
    r0: 0x000f7440 r1: 0xbfffd430 r2: 0x002c5dc0 r3: 0x02f99ca0
    r4: 0x9654fcfc r5: 0x00000004 r6: 0x02f99ca0 r7: 0x00000020
    r8: 0x00000020 r9: 0x02f9c6f0 r10: 0x950e0f30 r11: 0x69aafcfc
    r12: 0x000006eb r13: 0x00000000 r14: 0x02f97910 r15: 0xa071f530
    r16: 0xa06f49d4 r17: 0x02f9d290 r18: 0xa06f49d4 r19: 0x00000000
    r20: 0xa06f49d4 r21: 0xbfffd9d0 r22: 0xbfffd9cc r23: 0xa07649d4
    r24: 0xa06f81c8 r25: 0xa06f5070 r26: 0xbfffd710 r27: 0xa06f5070
    r28: 0xa06f5f8c r29: 0x02f93320 r30: 0x00000000 r31: 0x000f73f4
    cr: 0x44042484 xer: 0x00000004 lr: 0x000f7440 ctr: 0x964d0fc0
    vrsave: 0x80000000
    Binary Images:
    0x1000 - 0x172fff com.apple.iMovie3 3.0.3 (3.0.3) /Applications/iMovie.app/Contents/MacOS/iMovie
    0x29c0000 - 0x2b99ff7 com.apple.RawCamera.bundle 2.0.13 (435) <d978d604ec61876ef471d74dd4ea7417> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x2ebc000 - 0x2ee7ffb com.apple.audio.SoundManager.Components 3.9.3 (3.9.3) /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <8dc1fc6c74fe1f055be16980dd45001e> /usr/lib/dyld
    0x90003000 - 0x90128ffb com.apple.CoreFoundation 6.5.5 (476.17) <d13dc71c870a82b7d2f721731e584287> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90129000 - 0x906a5ff7 com.apple.CoreGraphics 1.407.2 (???) <6a101d8218dc8d12ca0b901c57aa44b7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x906b4000 - 0x907fbffb com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x907fc000 - 0x907feffd libRadiance.dylib ??? (???) <34cc3c24f4be3a4372275400b6e05b85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x907ff000 - 0x909e5ffb com.apple.security 5.0.4 (34102) <93e74504c60b38418e708caf47342cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x909e6000 - 0x90a01ffb libPng.dylib ??? (???) <248297ff5b022c274d5dcfa0de3b37b2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90a02000 - 0x90a63fff com.apple.CoreText 2.0.4 (???) <1985172321f7b3ee34d5bbc848079af0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90a64000 - 0x90a72fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x90a73000 - 0x90d9cfe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90d9d000 - 0x90da5fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x90dd8000 - 0x9113dffe com.apple.QuartzCore 1.5.7 (1.5.7) <75a8ef92c54d1ce016dfe662a6626f04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9117e000 - 0x91191fff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91192000 - 0x914cbffb com.apple.HIToolbox 1.5.4 (???) <9624d2ffaf16019b6301517339df88c9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9189e000 - 0x9189eff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91a43000 - 0x91a84ffb libTIFF.dylib ??? (???) <4c1422124af245485d6ceee207f4d735> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ad4000 - 0x91ba7fff com.apple.CoreServices.OSServices 226.5 (226.5) <359b9ab7957b9c92362006344b8e0e13> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91bb8000 - 0x91bd4ffb com.apple.openscripting 1.2.8 (???) <eb961ce3c1b1e564c2eefe3682ee0555> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91bd5000 - 0x91befffb com.apple.CoreVideo 1.6.0 (20.0) <578a8abd9e0f7b3a9c36ae9bc5fd753a> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91c25000 - 0x921dffff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x921e0000 - 0x92236fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x922c8000 - 0x92350fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92351000 - 0x92355ffe libGIF.dylib ??? (???) <491b205a6b8bb0c0c6ee6aaeea19a671> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92356000 - 0x92406fff com.apple.QD 3.11.54 (???) <cd7bef6f156b82851cfb164ccd9f3986> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92b14000 - 0x92b1cffb libCGATS.A.dylib ??? (???) <0c83819d2d428a8df27c8cc0f13ba1dc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x92b1d000 - 0x92b22ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92b23000 - 0x92b36ffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5b27baaca82de45b30cab68779279d8c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92b7a000 - 0x92b7afff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92c42000 - 0x92c89fff com.apple.NavigationServices 3.5.2 (163) <d28660870dff1cd46d7ea7d40271340f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92c8a000 - 0x92cc7fff libRIP.A.dylib ??? (???) <662becbd3173fd67eec7ad523d2d9c56> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92cc8000 - 0x92cf9fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92e25000 - 0x92e25ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92e26000 - 0x92e4cfff libcups.2.dylib ??? (???) <109498e92341ab4899ffd3d5acaddac3> /usr/lib/libcups.2.dylib
    0x92f21000 - 0x92f41ff7 libJPEG.dylib ??? (???) <f92878fdf02ffb1474b8bc60c47bb72d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92f42000 - 0x92f43ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92f44000 - 0x92fdafff com.apple.LaunchServices 290.3 (290.3) <a8a738aede278909ff721ce9a754142f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93101000 - 0x93215ffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9322c000 - 0x932adfff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x932ae000 - 0x93f5dfef com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93f5e000 - 0x93fc5ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x93fc6000 - 0x9408bffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94092000 - 0x940a9ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x940aa000 - 0x94193fff libxml2.2.dylib ??? (???) <dedfda117e78db04f0b86c59923b3794> /usr/lib/libxml2.2.dylib
    0x941e4000 - 0x941e5fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x941e6000 - 0x941edffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x941f9000 - 0x94202fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94203000 - 0x94210fff libCSync.A.dylib ??? (???) <bc19f19cfa6c23f9ca4e4419ea18f43e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94211000 - 0x9424afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <22e7a58ae6fe75d9dfd8e2e66d7dfb78> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9424b000 - 0x942d5fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x943a5000 - 0x943a5fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x943a6000 - 0x94b1bfff com.apple.AppKit 6.5.6 (949.43) <3afcaa243535d0817efeb978448ef3dc> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94b1c000 - 0x94b6bfff com.apple.Metadata 10.5.2 (398.25) <fdad4bda89efd0e2e9ca37493e10ca4c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94b6c000 - 0x94c05fc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94cbc000 - 0x94d76fff libcrypto.0.9.7.dylib ??? (???) <335916b82e302fec637432caf7c9e8e5> /usr/lib/libcrypto.0.9.7.dylib
    0x94d77000 - 0x950a8ffb com.apple.QuickTime 7.6.0 (1290) <664814f4b8b62408c24a74b8a7a51297> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x950dc000 - 0x95321ffb com.apple.Foundation 6.5.7 (677.22) <dab423bf20d5c2d78c4536e4e3da9300> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95322000 - 0x953d2fff edu.mit.Kerberos 6.0.12 (6.0.12) <17b514ffed29c890fc8ba8eac9dce56e> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x953d3000 - 0x95467ff7 com.apple.framework.IOKit 1.5.1 (???) <498f2ba1b47432ee4deebca2655ff932> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9555d000 - 0x95560fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95561000 - 0x955dcfff com.apple.SearchKit 1.2.1 (1.2.1) <23c2c93a7ec832505d5c7b67fee89a6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x955dd000 - 0x95612fff com.apple.AE 402.3 (402.3) <4d318022a7d964436d62c2b9c82a40b0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95614000 - 0x9562cffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9562d000 - 0x95634fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95635000 - 0x95684fff libGLImage.dylib ??? (???) <1df480344fb6e09ff32ac97bfdda7e50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9568b000 - 0x9571affb com.apple.DesktopServices 1.4.7 (1.4.7) <61a5a252cdedffd471e4ea91ed357afe> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9571b000 - 0x9571effb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9571f000 - 0x95b4dffa libGLProgrammability.dylib ??? (???) <2c52a11697da6ede976b56d54e3815ef> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x95c1e000 - 0x95c49ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x95c4a000 - 0x95c69fff libresolv.9.dylib ??? (???) <8c370b0ab8184a37e84131a444a0f696> /usr/lib/libresolv.9.dylib
    0x95c80000 - 0x95c8bffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x95c8c000 - 0x95dd4ffb libicucore.A.dylib ??? (???) <f49319412f5ee8b5f06fef2baa72916b> /usr/lib/libicucore.A.dylib
    0x95dd5000 - 0x95f75fe3 libSystem.B.dylib ??? (???) <3260ab8c558e938c8180b3ba1036aec1> /usr/lib/libSystem.B.dylib
    0x95f76000 - 0x95f9fffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95fa0000 - 0x95ffdffb com.apple.HIServices 1.7.0 (???) <5f468086ca01158e12cd07f829132edf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95ffe000 - 0x96098ff7 com.apple.ApplicationServices.ATS 3.4 (???) <06af1441f632e171a7f61dca809462ba> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96099000 - 0x960c6fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x960c7000 - 0x96196fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96197000 - 0x9621fffb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f88caa828a4b54ed1932e1578bf9236a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96220000 - 0x9623ffff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96243000 - 0x963f5ff4 com.apple.CoreAUC 3.02.0 (3.02.0) <805ca5d2a7bdf7f5450778560f0c711d> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96434000 - 0x964b9fff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x964ba000 - 0x9659dfff libobjc.A.dylib ??? (???) <39035ba996e55c617e20595dcd89c063> /usr/lib/libobjc.A.dylib
    0x9659e000 - 0x965a9ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x965aa000 - 0x96653ffc com.apple.CFNetwork 422.15.2 (422.15.2) <8e0eb315fa1c47227c42410ee695390e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96654000 - 0x96660ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96661000 - 0x96680fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x968c0000 - 0x968e8fff libxslt.1.dylib ??? (???) <a628a1484428ce3c87c56cf663faeb54> /usr/lib/libxslt.1.dylib
    0x969d7000 - 0x969d7ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x969d8000 - 0x969e3fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96a29000 - 0x96d2bffb com.apple.CoreServices.CarbonCore 786.11 (786.11) <9efd94b7dd1700ade0246885ca2218d2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96e99000 - 0x96e99fff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96edf000 - 0x96f41ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96f89000 - 0x96f97ff3 com.apple.opengl 1.5.9 (1.5.9) <c3d74d9bd2fa60d9c346db5658e52815> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96f98000 - 0x970e2ffb com.apple.ImageIO.framework 2.0.4 (2.0.4) <cbe744146e1f0e77cca0edce92bea0f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x970e3000 - 0x970f3ffb com.apple.agl 3.0.9 (AGL-3.0.9) <056d952943aac260426645ce6a24eb9e> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Ha i figured as much...
    Thanks for the help. Wish i could just update I movie!!!!

  • Creating a folder in web application directory?

    Hi
    I have a web application which contains some jsps and servlets and i am running it on Apache Tomcat 4.1. The name of my application is MyApp which contains all the servlets and jsps.
    In order to deploy the application i have placed the MyApp folder in the 'webapps' folder of Tomcat. Now in one of my servlets i.e. 'DirectoryCreator', i am trying to create a folder i.e. 'Directory' in the MyApp folder. The problem is that i dont want to give an absolute path to the File class constructor. The class files of my servlets are in classes folder i.e. MyApp \ Web-INF \ classes.
    I have tried:
    File f = new File("/Directory");
    f.mkdir();
    but this creates the Directory folder in my C drive.
    Please tell me how i can avoid giving the absolute path.
    Thanks.

    if the code to create the directory is a servlet, you can use
    String path=getServletContext().getRealPath("/");
    //getRealPath("/") will return the actual path on your machine of the base directory
    //of the webapp. getRealPath("/SomeDirectory/SomeFile") will return the real
    //path of SomeFile
    File f=new File(path + "/Directory");
    if(!f.exists())
        f.mkdir();if the code is in a .jsp file simple replace getServletContext(). with application.

  • ORA-00955 reports when I try to "create global temporary table" in windows

    Hi,
    When I try to run the sql in my oracle 9i server which is installed in a windows2000 machine,
    Create global temporary table test ...;
    For the first time, I can create table successfully.
    But I cannot access this table any more:
    drop table test;
    desc test;
    select * from test;
    In addition, if I try to create the table again, I got the error:
    ORA-00955: name is already used by an existing object
    While the same table can be created and dropped in another oracle9i server which is installed in Solaris 9 machine.
    So I suspect that this sould be a bug of window oracle server.
    Is there anyone who can confirm this?
    Or who can tell me how to report this bug to oracle?
    Thanks in advance.
    Please also refer the message at:
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:1046974576560
    If you search the text: "create global temporary table sess_event", you can see for the first time, the table is created successfully.
    But the ORA-00955 reports when the author try to create table for the second time.
    This problem is exactly the same as my problem.
    I have also made a search both in Google and in Oracle website and I cannot find any solution of it.

    Read      Metalink Note:68098.1 Subject:      Overview of Temporary Tables
    How did you difine the temporary tables? on commit delete rows are reserv rows?
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96590/adg03sch.htm#7794
    Jaffar
    Message was edited by:
    The Human Fly

  • Why is Encore 6.0 giving me the "blue screen of death" when I try to create a menu?

    When I purchased my student edition 6.0 (which I love by the way), Encore did not have any of the libraries loaded up on it. After reading some discussions, I downloaded the missing folders.
    Now, when I try to create a menu, my computer shuts down and gives me "the blue screen of death" as they call it (a blue screen with white writting, counting up to 100%, and saying Windows is preparing to crash...or something about the hard drive crashing....I can't remember because it goes off the screen so quickly).
    I've done this several times - my computer only does this when I try to create a menu in encore, and not in any other part of encore. It hasn't happened in any of the other programs either (Premiere Pro and Audition are the only other programs I have used so far), or any other times I have my laptop.
    Because of this, I am not too concerned since it seems Encore is the problem. However, I do not want any other problems to escalade from this either.
    Am I doing something wrong? Can someone please help me? I'm working on my Senior Thesis (a video) this year, and I really really cannot afford to have my computer crash on me.
    Please and thank you,
    Meghin

    Read Bill Hunt on BSOD http://forums.adobe.com/thread/772169
    -and an Encore fix http://forums.adobe.com/thread/1060443

Maybe you are looking for

  • I am unable to remove an empty folder from the bookmarks toolbar

    Window 7 Firefox 6.0.2 I have an empty folder on my bookmarks toolbar that I am unable to remove. I delete it and it comes back. I have been able to delete other folders from the toolbar, but not this one.

  • Changing my info?

    OMG why can't I find a way to change my default email address? I remember I made changes to my Apple id when I moved a year ago including my physical address and it was all reflected in my MacBook registration info as well as on here. Now I can't eve

  • Oracle iSales - iPad application

    Hello, Below is my story: Environment : iPad3 - 16GB with iOS 6 Background : I have created a html page in which I have added images, texts, jquery plugin(slider control (reveal.js) - which is mainly used to show each section as a slide). Now I have

  • Edit mode causing screen trouble/computer freeze

    When I am in iPhoto edit mode, inevitably at some point one or both of these will happen - the monitor screen will begin "mosaicing", starting with small color blocks in random places, and spreading over the entire screen. Sometimes everything freeze

  • Msi 6511 will not boot

    I received an msi 6511 and it will not boot, I only get a light on the floppy but I can not tell if the other leds are on because they are not hooked up (I do not have the manual to this board)!! The specs are 1.2 GHz amd athelon 384 mb pc100 sdram o