Vs file SDCard to save the greatest number of audio files

I have to record the number of voicemails in my application

If I use the memory file so that it is not sufficient, and if I use the SD card to save the file and what if the device that the user using dosent contain SD card?

I mean file:///store vs. file:///SDCard

I want to do like 1 the application should check if the user have any sd card installed if there is then record audio in file:///SDCard/BlackBerry/, or else it should save in-store file:///store/home/user

Tags: BlackBerry Developers

Similar Questions

  • Save the Voucher number this Format type, mm, yy, sequence #.

    HelloW All

    I need automatic sequence number to produce with good Type, Date of coupon, good Date month year and sequence number just like

    When I save my account of the cash book with the voucher number from 20/07/2009 I need a date

    CB/P/7/2009/00001


    CB = cash book
    P = payment voucher
    7 = good month
    2009 = year
    00001 is sequence

    Any idea


    Concerning


    Wasim Ismail

    Hi popo Ismail Khan,.

    You must precede the sequence generated with the cash book, date and whatever your other needs.

    Use can use the code below:

    declare
    seq_num number;
    begin
    
        seq_num := :||'/'||:||'/'||:,'MM')||'/'||to_char(,'YYYY')||'/'||.nextval;
    
    You can then use seq_num in your application as the sequence.
    

    I hope you understand the logic.

    Modify the code according to your need replacing with the name of appropriate and point data block.

    It will be useful.

    Check the answer as useful / OK, if this can help you

    Carole

    Published by: Carole Punj 20 July 2009 00:30

    Published by: Carole Punj on July 20, 2009 00:36

    Published by: Carole Punj on July 20, 2009 00:37

  • How can I save the fax number of faxes sent in Windows Fax and Scan?

    Hello

    I sent a large number of faxes to my clients, (almost 3,000 faxes).

    But unfortunately, many fax numbers seem s be valid noy more.

    I want to save faxes (number, date sent, etc. like in excel tabel) but I do not know how?

    Is a way to save faxes sent in an Excel file?

    Thank you

    Richard

    Hello

    Unfortunately, the feature you are looking for is not available in Windows Fax and Scan. However, you can use your favorite search engine and look for a similar software that meets your need.

  • Save the Page number?

    Hi people,

    I was just curious to know if there is anyway that Adobe Reader can remember the last page I was on when I closed it, any option, can I turn?  Or do I have to keep to memorizing the number of page?

    Thanks for any info.

    PS. PDF files are on my computer and not a disk or a removable drive if that helps any.

    Edit > Preferences > Documents > open settings. Check the box that says "Restore last view when opening documents settings.

  • Save the HTML Document on SDCard / external memory

    Hi, I want to save a complete HTML document with any necessary resources (images, css, etc.) in the external memory device so that I can display it later in the BrowserField without having to reconnect you to the internet (a sort of web cache, only it is located on the external memory). I tried to use the code below to do this, but it doesn't seem to save the dependent resources such as images and css document. CMIIW.

    try {
        StringBuffer raw = null;
        HttpConnection httpConn = (HttpConnection) Connector.open("http://google.com");
        int status = httpConn.getResponseCode();
        if (status == HttpConnection.HTTP_OK)
        {
            InputStream input = httpConn.openInputStream();
            byte[] data = new byte[256];
            int len = 0;
            int size = 0;
            raw = new StringBuffer();
            while (-1 != (len = input.read(data)))
            {
                raw.append(new String(data, 0, len));
                size += len;
            }
        }
    
        httpConn.close();
    
        DataOutputStream os = null;
        FileConnection fconn = null;
        try
        {
            fconn = (FileConnection) Connector.open("file://" + "/SDCard/BlackBerry/" + "google.html", Connector.READ_WRITE);
            if (fconn.exists())
            {
                fconn.delete();
            }
            if (!fconn.exists())
            {
                fconn.create();
            }
    
            os = fconn.openDataOutputStream();
            os.write(raw.toString().getBytes());
        }
        catch (IOException e)
        {
        }
        finally
        {
            try
            {
                if (null != os)
                os.close();
                if (null != fconn)
                fconn.close();
            }
            catch (IOException e)
            {
            }
        }
    }
    catch(Exception ex)
    {
    }
    

    Another solution that I think is the addition of a BrowserFieldListener on the BrowserField and saving the document when the method documentLoaded in the listener gets called. But I do not know how to proceed and if she would have the same job.

    I am convinced that it is possible from the BlackBerry browser can save web pages for consultation offline. Can someone help me with this?

    Thanks in advance.

    After reflection, you might be able to do this using handleResourceRequest, but there will be two phases:

    (a) in phase, you override this, call great for get the stream, then save the stream to disk

    (b) in the loading phase, will provide you with the disc in form of data flow.

    Try typing just BrowserField in the search box, there are a number of KB articles that deal with such things.

  • Why DAQmx read 200714 error when you save the file?

    In particular vi that I created, I have 3 analog inputs coming in and are graphically represented.  If I choose to save the information to a file, a dialog box appears and I can choose what to save it under.  If I take too long to save the file (aka about 8-10 seconds if the sample read rate is 500/s) then I get this error once the file has been saved:

    Error-200714 occurred at .vi DAQmx Read (analog 1-d NChan DBL 1Samp)
    Possible reasons:
    Acquisition stopped because the driver could not transfer the data from the device to the computer's memory rather quickly. This was due to limitations of the computer system.
    Reduce your sample clock rate, the number of channels in the task, or the number of programs on your computer that is running simultaneously.

    Why the DAQmx bed vi I have this problem when the vi has been idle for 10 seconds then I choose where to save the file?  How can I fix this error?

    Hi child of pre-school age,

    I think your error might be caused by the read buffer overflow. my suggestions for you would be to either the following four ideas:

    1. stop the acquisition before writing the file. This should mean that the DAQmx Read function will no longer be reading and therefore does not generate an error.

    2. If you still want to read the data but also write data as well, I think you'd be best suited for use live TDMS. TDMS allows the user to stream to a reading of filewhilst.

    3. the configuration backup dialog box file before starting the acquisition. Download the user to enter all data in the file before you start to acquire.

    4. change the buffer to unlimited so that you have enough time to navigate the record window.

    If you send your VI I can advise others

    Let me know how you go,

  • Save the file on SD card

    Hello

    I am trying to save the file on SD card

              String url = "file:///SDCard/text.txt"          FileConnection conn = (FileConnection) Connector.open(url);      OutputStream out = conn.openOutputStream();   // unreachable code      out.close();      conn.close();
    

    But when I run it on a simulator (BB 8300) I took net.rim.device.api.io.file.FileIOException.

    Is to create for me file on SD card.

    FileConnection fc = (FileConnection)
    Connector.open(System.getProperty("file:///SDCard/"+"test.txt"),Connector.READ_WRITE);
    if(!fc.exists())
      fc.create();
      OutputStream os =fc.openOutputStream();
      os.write("Your Data");
      os.close();
      fc.close();
    
  • HP 8610 saves the pdf files instead of allow to print

    Hello

    I have printer HP 8610 running on a desktop computer with Windows 7. I just bought and installed the printer. It seems to work irradically since I was able to print a number of things. When I open a pdf document and click on the print icon in the menu it opens the print dialog box. Everything is set to print on the 8610 and when I click on the button print is opens another dialog box asking me of "save under". I tried to save the same document on my desktop and try this place, and the same thing happens.

    Any suggestions?

    Hello

    You will see the same while the other PDF files print then? for example, Word, Notepad, etc. ?

    Which PDF reader you use?

    Adobe Reader for example, click file > print, and then click the Advanced button.

    Check printing as files option is not checked and click OK.

    Now try to print again and check for the difference.

    Please let me know the results when printing from another program, also well don't forget to specify your PDF reader if the problem persists.

    Shlomi

  • Repeat the action and save the file

    Hello

    I'm having a fever and is trying to accomplish something that seems very simple not knowing anything about scripting.

    I made an action that applies to some simple effects (blur, threshold and high pass). I want to do is to repeat the action of n times and save an additional for each repetition png so I find myself with a sequence of files numbered from the action more applied (as in this example, Photoshop Cs5 filters Animation on Vimeo).

    After som Googling, I ended up using AppleScript and was able to repeat the action for as many times as I want, but I'm completely stuck on the file save game. That's what I have right now:

    Any help is greatly appreciated!

    say application 'Adobe Photoshop CC 2015.5'

         set Starting point to current document

         set theFilePath to path of the file of current document

    Repeat with n from 1 to 10

    set myFile to theFilePath & ': output: image ' & { n channel } & ".png"

    do "CrazyAction" of "Default Actions"

    { Save document in file myFile as PNG with options { }classPNG save options interwoven:fake} :

    end Repeat

    end say

    In case someone comes up with the solution I also have another related question: How can I make sure that the output file names will have a padding of the number? Ideally, I'd end up with image2.png and so on, rather than image1.png image001.png, image002.png.

    Thanks in advance!

    One of the things you can do with javascript you can not do with applescript is to use the scriptlistener plugin. This plugin is put into the photoshop plug-ins folder, and when he's here (you don't want to leave it there all the time) it will record about everything you do, kind of like an action, but it generates the code in a file on your desktop. I used it for recording an action to save the png and running. The parts of the code are in the functions in the script. So I just created a folder name of base, a base file name and a counter of departure. The script will then execute your action and save a png image in this folder and change the name of the base by the counter file increases by one each time. You must put in the name of your action and the name of the action as defined in the script.

    #target photoshop
    var fileName = 'myFile-';
    var folderPath = new Folder (Folder.desktop +'/action test/')//create whatever path you want here. Make sure the folder exists!
    var doc = activeDocument;
    var counter = 1//counter for changing the filename
    
    for (var i=0;i<4;i++){//Change number 4 to whatever number you want it to repeat + 1
        runMyAction ("twirl", "Chuck");//put in action name and action set name. This line can be duplicated for different actions.
        savePNG ()
        counter++
        }
    
    function runMyAction(myAction, myActionSet){
        var idPly = charIDToTypeID( "Ply " );
            var desc25 = new ActionDescriptor();
            var idnull = charIDToTypeID( "null" );
                var ref8 = new ActionReference();
                var idActn = charIDToTypeID( "Actn" );
                ref8.putName( idActn, myAction );//changed to a variable
                var idASet = charIDToTypeID( "ASet" );
                ref8.putName( idASet, myActionSet );//Changed to a variable
            desc25.putReference( idnull, ref8 );
        executeAction( idPly, desc25, DialogModes.NO );
        }
    
    function savePNG(){
        var idsave = charIDToTypeID( "save" );
            var desc28 = new ActionDescriptor();
            var idAs = charIDToTypeID( "As  " );
                var desc29 = new ActionDescriptor();
                var idPGIT = charIDToTypeID( "PGIT" );
                var idPGIT = charIDToTypeID( "PGIT" );
                var idPGIN = charIDToTypeID( "PGIN" );
                desc29.putEnumerated( idPGIT, idPGIT, idPGIN );
                var idPNGf = charIDToTypeID( "PNGf" );
                var idPNGf = charIDToTypeID( "PNGf" );
                var idPGAd = charIDToTypeID( "PGAd" );
                desc29.putEnumerated( idPNGf, idPNGf, idPGAd );
                var idCmpr = charIDToTypeID( "Cmpr" );
                desc29.putInteger( idCmpr, 9 );
            var idPNGF = charIDToTypeID( "PNGF" );
            desc28.putObject( idAs, idPNGF, desc29 );
            var idIn = charIDToTypeID( "In  " );
            desc28.putPath( idIn, new File( folderPath + '/'+ fileName + counter+ ".png" ) );//set folder path and name
            var idDocI = charIDToTypeID( "DocI" );
            desc28.putInteger( idDocI, 200 );
            var idCpy = charIDToTypeID( "Cpy " );
            desc28.putBoolean( idCpy, true );
            var idsaveStage = stringIDToTypeID( "saveStage" );
            var idsaveStageType = stringIDToTypeID( "saveStageType" );
            var idsaveBegin = stringIDToTypeID( "saveBegin" );
            desc28.putEnumerated( idsaveStage, idsaveStageType, idsaveBegin );
        executeAction( idsave, desc28, DialogModes.NO );
        }
    
  • Save the contents of the form elements in a txt file


    Hello

    I am trying to save the contents of the form to a text file by clicking on a button. For example, in my form, I have 4 text boxes

    1. client code

    2 Subscriber

    3. customer name

    4. customer name

    There is a backup button in the page. Once I click on save button, I get a download prompt to save the file (txt file). The txt file must contain the values of the fields in each line. Can we achieve using Apex?

    Thank you

    TJ

    Hi TJ.

    Yes, its possible. For this you must use a bit of PL/SQL Code.

    In the page, you create a branch;

    Branch point = to present: after the treatment (after calculation, Validation and treatment);

    Type branch = branch of PL/SQL procedure

    And the branch code, you have to have something like this:

    declare

    CLOB v_clob;

    v_blob blob.

    dest_offset NUMBER: = 1;

    offset NUMBER: = 1;

    amount INTEGER: = dbms_lob.lobmaxsize;

    blob_csid NUMBER: = dbms_lob.default_csid;

    lang_ctx INTEGER: = dbms_lob.default_lang_ctx;

    caveat INTEGER;

    V_LENGTH NUMBER;

    Start

    DBMS_LOB.CREATETEMPORARY (v_clob, true);

    DBMS_LOB.CREATETEMPORARY (v_blob, true);

    v_clob: = ' ID: ' | : PXX_ID | »

    Geographical area: ' | : PXX_LOCATION | »

    First name: ' | : PXX_LAST_NAME | »

    First name: ' | : PXX_FIRST_NAME;

    DBMS_LOB. () CONVERTTOBLOB

    v_blob,

    v_clob,

    amount,

    dest_offset,

    offset,

    blob_csid,

    lang_ctx,

    (caveat);

    V_LENGTH: = dbms_lob. GETLENGTH (v_blob);

    --

    -set up the HTTP header

    --

    owa_util.mime_header ("application/octet ', FALSE");

    -set the size so that the browser knows how to download

    HTP.p ("Content-length: ' |") v_length);

    -the name of the file will be used by the browser if users only one save as

    HTP.p ('Content-Disposition: attachment; filename = "download.txt" ');

    -close the headers

    owa_util.http_header_close;

    -Download the BLOB

    wpg_docload.download_file (v_blob);

    end;

    See you soon

    Carlos Pereira

  • How can I save a large number of files tif into jpeg files?

    How can I save a large number of files tif into jpeg files?

    Hello

    You can convert to PDF ' first through batch conversion.

    Please see the following to the same forum thread.

    Batch convert TIFF to PDF

    Once converted to PDF ", you can convert and save in jpeg.

    Hope it will work for you.

    Concerning

    Sukrit diallo

  • Can someone tell me what file hosting imac needs moding/etc. to validate the edition number. Lightroom 6

    Can someone tell me what file hosting imac needs moding/etc. to validate the edition number. Lightroom 6

    Log in as an administrator to change the hosts file in Mac OS.

    In a window of Finder, select go > go to folder.

    Type/etc

    Select the hosts file and open it with a text editor.

    Save the hosts file: Choose file > save as, save the file as hosts.backup, and then click OK.

    Look for the original hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and remove these entries.

    Save and close to overwrite the file.

  • Conversion of PowerPoint file with name of number, but save as just 'number '.

    Hi all

    I have a problem with the PowerPoint file name (Eg: "5 abcde.ppt" "') with number of convert to PDF. The dialog window save the name only to see the "(5" but the "'abcde" title disappeared. " Please notify.

    Delete the point after 5.

  • I'm trying to create a PDF file with several signature lines in that anyone can "Sign" by using their digital signature CAC (Common Access Card) active. The goal is to have a single document that people can open, sign on a designated line and save the doc

    I'm trying to create a PDF file with several signature lines in that anyone can "Sign" by using their digital signature CAC (Common Access Card) active. The goal is to have a single document that people can open, sign on a designated line and save the document (replacing the existing document) and close. Then another person can open the same document digitally sign another area of the form, save it, and close it. So on, and so on. Is there a way to do this? At the end of the day, I would end up with a PDF file with literally hundreds of signatures to enable different ACC everywhere...

    I don't understand what the problem is. In the post of the davidr96549424 on May 8, 2015 07:58 you presented a structure of a correct document. Is the issue of the creation of this structure in a PDF file? For this, you will need an Acrobat, not reader.

    XI in Acrobat, select Tools-> forms-Edit. Click 'No' on the form fields 'detect '. In the tasks Panel that opens, click on "add new field". Select "Digital Signature" and move it to the location in the document where you want to than the appearance of the signature to be. Repeat that for signature fields as you want. Users will sign by clicking on the prepared unsigned signature field which shows the dialog box "sign. Do not forget that as TSN has noted that a digital signature applies to the entire document. The entry in the document where it is is irrelevant. Each next signature covers all previous signatures.

    Your users can also sign a document from anywhere that they want without signature fields already prepared. For this select fill & sign-> work with certificates and the type of signing you want to sign up with. A dialog box that will tell you a rectangle for the appearance of signature rises and after you draw the rectangle of the dialog 'Sign' rises.

    PDF/Acrobat doesn't have a limit on a number of signatures in a PDF document. But! Don't forget that when you open a PDF file with Acrobat/Reader signatures valid all of them and takes time (several seconds - until 10 - for every signature), so if you have several signatures of dozens of their validation open can take a long time.

    I don't know how build you your workflow so that each person signs the same PDF and saves it. Economy runs on the same computer where the PDF is stored. You'll have to decide how to allow different people to have access to the same PDF. They, of course, you may sign this only one-at-a-time PDF.

  • Where Photoshop Touch saves the jpg files?

    For the life of me, I can't find where Photoshop Touch saves the jpgs from the main intro page (the only place I found same save files).

    I have a Tablet first TF201 transformer with all latest updates. I also installed 32 GB SD micro card as well as the 64 GB internal memory that has my TF201.

    Then, when I go not to save the project (export?) a picture, Touch says "record in camera roll", which is fine; but

    (a) it is not in my rolls of standard camera (whether on the internal memory of the TF201 (DCIM and sub folders)

    (b) is not in the film of my microphone (also a DCIM) SD card directly.

    I tried to open and visualize every possible place he could be stored - editing, images, etc. Searched through the app Gallery and PQR app, can not find them.

    Where the devil Photoshop Touch saves local jpgs after that you worked on a picture?

    And while I'm at it, why is there not a dialog to actually choose where you want to save the files? The only options are "Save to Camera Roll" (not an option in fact) and a menu drop-down list to choose the png or jpeg format. Would be nice to see a) select the desired directory, b) choose format picture as options.

    This is a great app, but it lacks a lot of basic stuff.

    Mark

    I think I'm a narrowing down the problem. On the first transformer TF201, the 'Images' folder is a system folder, and I can not rename, can not delete files, or copy and past inside via Astro or the file manager of Asus. Then of course, Photoshop Touch cannot do that either. For this reason, it seems that Photoshop Touch is actually useless for me, unless I can save files to another location. I was not able to change the status of the folder/mnt/sdcard/Pictures at all.

    I would really like to see a Photoshop Touch option to set your directory where you want to save the images. It's very frustrating, as it is now. I did experiment with the program for the part of last night, but not be able to save the images (they don't even email) outside of Photoshop Touch, it is pretty useless.

    This is obviously an Asus / transformer premium / Ice Cream Sandwich problem, but it is also question of Photoshop Touch because PS Touch is very limited in the save file arena.

    EDIT: I had the same problem with the folder music of the TF201 after I did the upgrade of the ICS (could not write to the folder, could not remove the folder or its content), but I fixed it by renaming the folder (as I do) to Music2 and created a new folder called Music.

    Just tried with the pictures TF201 folder. Her renamed Pictures2, then created a new folder called images. And now save files.

    So. The problem is built of Asus of ICS and how he ugpraded. A factory reset complete will apparently to solve this problem, but I have a lot of time invested to set up my first and do a thorough cleaning and reset for an enforcement problems, even if it's a $10 app, but... it raises a few concerns more with the Photoshop Touch application

    (a) he really, really need a strengthened file save system. Not only we should be able to choose where to save, but also the size and jpg quality settings. I want also to additional options on the top of jpeg and png - TIF, come PSD to mind.

    (b) I'm worried they don't have any warning in PS touch that she could not write the internal storage of the TF201 file.

    Mark

Maybe you are looking for

  • How the honor specification [search Mozilla Support] a sentence?

    Many ways to research will honor a sentence. If I say "tab" [including quotes!], they seek the "tab" expression and return only links to documents with that sentence. As I discovered trying to answer a question on control how the tab character is ren

  • Messages to update Windows Vista 64-bit driver for Qosmio F30 Vista 32 bit

    Hello Today, I noticed that, update Windows Vista displays the bad update for one of the drivers of Qosmio F30. I have Windows Vista 32-bit, but Windows Update post a 64 bit version of the driver. See the screenshot [here: http://imagefilehost.google

  • calendar of shipping abroad

    How do you ship a calendar in another country? I live in the Canada. I want to ship a calendar to the Ireland. If I go into advanced I can change the store impression in Ireland, but in the payment section, I need a credit card for the Ireland or in

  • My computer won't print on my printer

    My hp said the printer status bar is ready, but when I try to print the message printer is offline is displayed which gives? That's all nothing more to say here

  • DeskJet 2542: Printing a model at the appropriate scale

    I'm trying to print a pattern that has a scale on the page to make sure it's the right size. How to print the right size? It prints a version of the template which is disabled by a 1/2 "on average.