.cer files only open in notes

I have a new N95 and am trying to install a .cer file but it will only open in Notes on the phone. I am on a mac so do not have the Nokia pc connection program. However the .cer file is showing on my phone memory card but will not install.

You can try right clicking on one of your xls files select get info then select open with, select other then choose office excel and check the box to say always open this file type.
Hope this helps

Similar Messages

  • To check whether a file is open or not.

    Hi,
    I am using proc_listpidspath() to check whether a file is open or not by some application.
    It works in Leopard but not in Tiger.
    Can anyone suggest some function or solution so that i can check whether a file is open or not in Tiger.
    thanks.

    PersianKamran wrote:
    if i create a file
    File f = new File("path");
    f.createNewFile();
    Now i have created this file.. but i havent wrote any thing to it.. how can i determine that whether this file is empty or not..[Read the fine manual|http://java.sun.com/javase/6/docs/api/java/io/File.html#createNewFile()]
    Atomically creates a new, empty file named by this abstract pathname if and only if a file with this name does not yet exist. The check for the existence of the file and the creation of the file if it does not exist are a single operation that is atomic with respect to all other filesystem activities that might affect the file.
    Returns:
    true if the named file does not exist and was successfully created; false if the named file already exists So if it returns true, then the file is created and empty.
    Secondly, once i write some thing to file.. how can erase all the data from file ?deleting it will get erase the file and return you to the state you started from.
    Iif you don't want to create a new file, don't use the createNewFile() method and use the new FileOutputStream/close approach rather than the createNewFile()/delete() pair as already described in this thread.

  • ICal failing to run applescripts: The 'Open' button does not change to 'Run', and the script file is opened but not executed on alert.

    iCal failing to run applescripts: The 'Open' button does not change to 'Run', and the script file is opened but not executed.

    Calendar (not called iCal anymore) does not include that capability any longer, apparently.  What you have to do now is go to Automator and create a Calendar Alert action.  You can add a Run AppleScript object to the action and paste in your script there, then when you save it, it will become available as a choice in the alert menu in Calendar.

  • I have just downloaded the latest "Office" update, and now my xls files only open in "Numbers". Can this be fixed?

    I have just downloaded the latest "Office" update, and now my xls files only open in "Numbers". Can this be fixed?

    You can try right clicking on one of your xls files select get info then select open with, select other then choose office excel and check the box to say always open this file type.
    Hope this helps

  • My updated help file only opens the TOC/Index/Search

    I have to update an old project that uses WinHelp, so I installed RH X5 on an old XP machine. The original help file always opened in a 2-pane window with the ToC on the left and the default topic on the right. My "updated" help file only opens the ToC/Index/Search screen in a single pane. How do I get the 2-pane window to appear?
    This is what I'm looking for

    I have edited the topic title. The idea is to spell out the problem in the body.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • I am unable to open any form. Any form/file I open states "not responding" This is adobe reader.

    I am unable to open any form. Any form/file I open states "not responding" This is adobe reader.

    Online and downloaded to my computer. There is no difference.
    browser is google but I also tried internet exployer...thats not the problem...your program is
    i just downloaded the most recent version..10.1...or whatever it is.
    i found this online:...how do I find the Adobe Readers X's 3d and multimedia settings...what tab do I click on..
    1) khwajakhurram I have tried your suggestion to uncheck the default "Enable hardware rendering for legacy video cards" setting and it seems to work!
    What is surprising is that Adobe Reader X's 3D & Multimedia settings report that the alternative preferred renderer modes are either software or DirectX9 .....on a Vista machine with DirectX11.
    The video card on this machine is definitely not legacy but a recent quality Nvidia produced card. That is also the case on the other machines with the issue I have reported.
    2) http://kb2.adobe.com/cps/860/cpsid_86063.html mentions that "certain configurations of anti-virus software that have not yet white-listed AcroRd32.exe" are "Unsupported configurations for Reader running in Protected Mode". Therefore I have also excluded AcroRd32.exe from virus scanning.
    I am now able to use both Protected Mode and Advanced Security without issue.
    I will experiment with various versions of this in the next few days and see whether both or just one of these remedies are needed.
    Update: I have found that performance is vastly improved by changing from the default preferred renderer mode of DirectX9 to the alternative Software setting.

  • When tranferring a file, only Open or Save are displayed, no Decline option

    Hi - Using Lync 2013 client connecting to Lync 2013 server.  When transferring a file in a chat window only Open or Save are displayed, not the Accept, Save-As or  Decline options shown in the literature.  I'm thinking this might be due to
    the rollup version - any comments?
    Thanks
    Craig

    Please check your file transfer setting 
    http://technet.microsoft.com/en-us/library/gg520952.aspx
    You can also check what you have set in the Lync client policy 
    Get-CsClientPolicy 
    and
    Get-CsFileTransferFilterConfiguration
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer" Regards Edwin Anthony Joseph

  • How to know whether the file is opened or not

    Hi All,
    In the file handling,
    Before writing OPEN DATA SET, I want to know the file is already opened or not.
    Please help me out in this regard.
    Thanks and regards,
    Mallareddy

    Hi,
    Please try GET DATASET statement.
    Syntax:
    GET DATASET dsn.
    Extras:
    1. ... POSITION pos
    2. ... ATTRIBUTES attr
    In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. For details, see File Interface.
    Effect
    Used to get the properties of a file already open.
    You can use this statement without additions to determine whether the file is open.
    If the file is not open, an exception of the type CX_SY_FILE_OPEN_MODE is triggered.
    Regards,
    Ferry Lianto

  • How to know whether a file is opened  or not ?

    Hi all,
    How to know whether a file is opened by its editor or not ? File may be any of the type.

    There are platform-dependent commands that tell whether a file (or directory, port etc.) is used by which processes.
    [oracle@izsak ~]$ fuser .
    .:                    9299c
    [oracle@izsak ~]$ ps -p  9299 -f
    UID        PID  PPID  C STIME TTY          TIME CMD
    oracle    9299  9298  0 Apr25 pts/0    00:00:00 -bash
    [oracle@izsak ~]$ ls -l $fn
    -rw-r-----  1 oracle oinstall 111215876 Apr 25 19:05 /opt/oracle/product/AS/10g/R2/opmn/logs/OC4J~ebank~default_island~1
    [oracle@izsak ~]$ fuser $fn
    /opt/oracle/product/AS/10g/R2/opmn/logs/OC4J~ebank~default_island~1:  3746  3747  3748  3749  3750  3751  3752  3753  3754  3755  3756  3758  3761  3762  3765  3767  3769  3770  3771 18638 21605 21743 21744 21745 22140 22143
    [oracle@izsak ~]$ ps -p 3746 -f
    UID        PID  PPID  C STIME TTY          TIME CMD
    oracle    3746 26427  0 Apr23 ?        00:00:01 /opt/oracle/product/AS/10g/R2/jdk/bin/java -server -Djava.security.policy=/opt...

  • How to find file is open or not in java

    hai;
    i want to know that , the particular file is opened on eariler or not,
    can you help me how to find out , the file is earlier opened or not
    thanks regards

    davvidmaria wrote:
    hai;
    i want to know that , the particular file is opened on eariler or not,
    can you help me how to find out , the file is earlier opened or not
    thanks regardsWhat do you mean by opened on earlier or not?
    If you want to check to see if a certain file is open you could probably use the file class and check to see if you can write to the file check out the api
    [http://java.sun.com/j2se/1.4.2/docs/api/java/io/File.html]

  • SWF file only opens in Player, not Application

    I am new to Flash and I am working on updating a website that was created by co-workers in 2009.  I was not here when it was created and those people are no longer here to help me out.  The website is www.vintageresidential.com.  I am simply trying to update a few of the photos in the flash file that plays on a few of the pages.  We recently upgraded from CS2 to CS5.5 and I am working on a PC.  When I try to open the SWF file in the Flash Application, it only lets me play it through the player and I'm not granted access to any of the editing tools(see image).  I recently found a photoshop file where it looks like they created the animation, but I'm confused how they saved it as an SWF file.   

    An .swf is a compiled Flash flash file. It can't be opened in Flash. There are a number of Flash decompilers available that you can use to get into that file if you really need to. Do you not have the original .fla file that was used to create the .swf?
    There is no direct way to export from Photoshop to a Flash .swf. You can import Photoshop layers into a Flash movie, though I don't think that you could do that in Flash CS2.

  • AVI file only plays sound, NOT video in Premiere CS6 and Element

    I tried getting this to work in Premiere pro cs6 or premiere element but it wouldn't accept this avi video file. When importing the avi file to either application, the file is imported but it shows up as an audio with no video. The video does play just fine in Windows Media Player. The file is archived as an avi file from a lorex dvr system with a codec IMM4. It is encrypted with the date and time which is very important to maintain.
    I have tried the following, but same problem of no video, only sound persists.
    Download the latest 32-bit static build of FFmpeg from here: Zeranoe FFmpeg - Builds
    Open the archive; you'll probably need 7-Zip since the archive is a .7z file. Extract the ffmpeg.exe file in the archive (it's in the "bin" folder) to the folder containing your AVIs.
    Create a text document (Notepad is fine) called "avi2mp4.bat" (no quotes) in the same folder as the AVIs, making sure to change the default TXT extension to BAT.
    Paste the following into the BAT file:    @ECHO OFF
    for %%a in (*.avi) do ffmpeg -i "%%a" -vcodec copy -acodec copy -f mp4 -y "%%~na".mp4
    Once you save the BAT file, double-click it; your AVIs will be rewrapped to MP4s without any conversion. The MP4s will correctly import into Premiere Pro.
    I would appreciate anyones insight on this matter.
    The following is the GSpot report on the file:

    I'm having the same problem.
    CS3 works fine with the avi files, but CS6 can't decipher it.
    Very aggravating - I thought CS6 was supposed to be an improvement.
    Luckily I have not uninstalled CS3.
    One solution I found was using Windows Movie Maker to open the file and then save it to a WMV format.
    That opened correctly in CS6.
    It's still another step I didn't need in CS3.

  • 3hr 38min mp3 file only opens as 16mins 44secs!?

    Hi folks
    I'm new to the forum having only just registered.
    I use Audition 1.0 at work.
    Recently I have been recording 3 to 4 hour audio sessions initially to VHS LP then recorded to Tascam DR100 then transfered to PC.
    The trouble I am encountering is as follows:
    - the transfered file to the PC is around 500MB @ mp3 320kbps 32-bit stereo
    - the PC recognises the file at 500MB and the duration as 3 - 4 hours
    - when opened in Audition the file is only recognised at around 16 mins long?
    Any idea guys?
    I have searched through forums trying to find a answer to help me resolve the issue. If I open the file in Quick Time it recognises and plays the entire 3 - 4 hour file.

    When that file is decoded into a Wav file, which it has to be to open in Audition, it will be way bigger than the max Wav file limit. Players don't have a problem with this because they don't decode the file, but stream it. You'd need an MP3 file splitter to break this file into a number of smaller ones before you could open it correctly.

  • JPG file only opens in Photoshop

    I have a jpg file that was created with Photoshop CS4 which will not open in any other picture viewer that I can find. This picture is high res and needs to remain so.
    Can anyone cite known reasons for this phenomenon?
    Cheers,
    Leon

    Leon - it's possible that the image is too large for other viewers, or that it is CMYK (that most JPEG viewers don't handle), or that it contains more metadata than other viewers can handle....

  • INX file only opens in Dreamweaver as code

    My client just sent me an INX file done on his PC in CS4 and when I get the file on my end and download it it switches over to an .xml file. I work on a Mac with CS3. Just wondering if the issue is with the Mac/PC or if it is something else. Client did mention that they could not find the links to their file. So maybe that's the problem. Any help would be great. Thanks!

    Just change the extension.
    Bob

Maybe you are looking for