Problem writting a Label

I have the next problem. I throw a Thread that execs a command at runtime and I wanna writting a label to noting the user that the application is doing something.
Something like this:
    jLTextoInfo.setText("SAVING, WAIT PLEASE..........");       
    //I convert the wav file into an mp3 file
    ConversorWAV converWAV = new ConversorWAV(Configuracion.path+Configuracion.pathWav+Configuracion.archivoWAVtemporal, Configuracion.path+Configuracion.pathMp3+NOMPRACTICA+".mp3");
    converWAV.start();where the class ConversorWAV is something like this:
public class ConversorWAV extends Thread {
    try {
      // Se ejecuta una aplicaci�n que permite la conversi�n de un archivo wav a mp3
      // Mirar los par�metros introducidos en el ejecutable lame
      Process p = Runtime.getRuntime().exec("lame.exe  -b 32 -f -m j file.wav file.mp3");
          p.getOutputStream().close();
          p.getInputStream().close();
          p.getErrorStream().close();
          p.waitFor();
    }catch(Exception ex){
       MostrarError("ERROR al convertir el archivo de audio");}
}But the applet shows never the message with the text SAVING, WAITING PLEASE... I�m doing something wrong, but where? can anybody tell me something?
Thanks in advance!!

The problem is that I cannot print into the label. It doesn�t deppend if I print the label after or before I throw the runtime process.
I have the same result if i make:
jLTextoInfo.setText("SAVING WAIT PLEASE..........");
throw the runtime processor
throw the runtime process
jLTextoInfo.setText("SAVING WAIT PLEASE..........");I haven�t any problem with the runtime process. The only problem is when i wanna write the label. It makes nothing!!
Thanks in advance!

Similar Messages

  • Problem with changing Label in Bridge CS3 and CS6

    Hi there,
    I am having some problem with changing Label in Bridge CS3 and CS6 in windows.
    1. In Bridge CS3 (Windows XP), most of the time with most of the files, there is no problem. But I found that in some files, the Label does not get changed. I usually change Label by right clicking on the picture, then Label and select any Label. When I do so in those files, nothing happens. But when I rename the file by changing or adding just a single character, then it works. And if I again rename to original name, it still works. But without renaming the Label does not change. Again this does not happen with all pictures, but occationally with some. We usually receive pictures from different clients for editing purpose.
    2. In Bridge CS6 (Windows 7), if you create lot of Path using Pen tool in Photoshop for the purpose of removing background, you save the file, close, and change Label in Bridge, again open the file in Photoshop, you see no Path in the Path Pallette. So that means, changing Label works, but it removes the Path from the file. But if there is small amount of path, then no prboblem. But if there is lot of path, like you need to create for a necklace to remove background, then the problem arises.
    I am using Bridge for a purpose where it is very helpful so I really need to use Bridge, and Labeling feature is the most important to me, but after feaguring out this problem, I am really tensed as to whether or not I will find a solution to this. So any help, guidance will really be appreciated.
    Thanks very much in advance for any solution.
    Best regards

    I have re-checked the issue and I found that the problem is with JPG file.
    I wasn't even aware you could save a path to a jpeg file (always use PSD because of wanting to keep the Alpha Channel, jpeg only can contain 1 layer and no alpha channels and/or transparency).
    However I tried it on a file with a simple path and one with a complex path. It seems indeed you have found a bug. The simple path is no problem but the more complex path is indeed disappearing.
    It is not only label but also rate or adding IPTC in the description field. The moment metadata is saved to this jpeg file and reopened the earlier present work path of a more complex path is gone.
    Despite the fact that to my opinion a jpeg is not the most suitable file format for saving a work path this should not happen. If a work path is saved to a jpeg then it should be kept saved after just altering metadata in Bridge.
    It still is the same behavior in Bridge CC because that is what I use. Don't know when it started but it still needs to be repaired
    Here is the link for filing a problem or bug:
    http://feedback.photoshop.com/photoshop_family/

  • Problem with field label

    Hello All,
    I am having a strange problem with field label? I have created a table with three fields one is MANDT and and the remaining fields as PATID and PATNA.
    I am maintaining the field label for these fields, but still i am not getting the names of the fields while i am calling the structure in my alv tree.
    I d'nt know what is the problem here?
    can any one tell me how can i solve this issue?
    Regards,
    Lisa

    Hi lisa,
    This is not the problem with Data Dictionary,
    While declaring the fieldcatalogue for thr GRID.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      I_BUFFER_ACTIVE              =
       I_STRUCTURE_NAME             = 'ZTABLE'
      I_CLIENT_NEVER_DISPLAY       = 'X'
      I_BYPASSING_BUFFER           =
      CHANGING
        ct_fieldcat                  = gt_fieldcat
    EXCEPTIONS
      INCONSISTENT_INTERFACE       = 1
      PROGRAM_ERROR                = 2
      OTHERS                       = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    If gt_fieldcat-fieldname = 'PATID'.
    gs_fieldcat-ref_field = 'ZTABLE'.
    modify gt_fieldcat from gs_fieldcat.
    clear gs_fieldcat.
    endif.
    Because while calling the FM it is populatinh the fieldname
    so you need to modify the fieldcatalogue with fieldname then it will pick the field labels from the Dictionary.
    Hope this  will solve your problem.
    Regards,

  • Problem with simple label program

    I'm getting a problem to a most basic program. I'm using the Java2 Fast And Easy Web Start book. This simple label program gives me an error when I compile. This is the program
    //Label Program
    //Danon Knox
    //Another basic program
    import java.awt.*;
    import java.applet.*;
    public class Label extends Applet{
      public void init(){
       Label firstlabel = new Label();
       Label secondlabel = new Label("This is the second label");
    //put the labels on the applet
      add(firstlabel);
      add(secondlabel);
    }// end init
    }// end appleterror when I compile is as follows:
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\>cd java
    C:\java>javac Label.java
    Label.java:12: cannot resolve symbol
    symbol : constructor Label (java.lang.String)
    location: class Label
    Label secondlabel = new Label("This is the second label");
    ^
    1 error
    C:\java>
    Can anyone help me?

    public class Label extends Applet{The name of your class is "Label". This choice of name hides the class named "Label" in java.awt.
    Label firstlabel = new Label();This creation of a Label is successful because the class has a default, no-argument constructor.
    Label secondlabel = new Label("This is the second label");And this one fails because there is no constructor for Label that takes a String argument.
    You probably want firstlabel and secondlabel to be java.awt.Label objects and not instances of your own Label class. Try this:
    public class Label extends java.applet.Applet{
        public void init(){
         java.awt.Label firstlabel = new java.awt.Label();
         java.awt.Label secondlabel =
             new java.awt.Label("This is the second label");
         add(firstlabel);
         add(secondlabel);
    }As a general remark, I advise programmers to stay away from
    import a.b.*;statements which import entire packages into your program namespace.
    When starting out, I believe it is better to write out the fully qualified names ot the classes and methods you are working with. This helps you learn the class hierarchy, and makes your code clearer.
    Others will disagree, but that's my opinion...

  • Hp 4015: Printing problem on A5 LABEL

    Hi, my new HP LJ 4015 have a problem when I print A5 LABEL, because the ink are not fixed hard on label.
    I Use MANUAL TRAY 1, LINEAR OUTPUT on the back oh the printer,  I set Size and Label type, I try to setup Fuser setting to HIGH 2, ENABLE SLOW SPEED, but the problem are not solved.
    The problem increase to the bottom of the A5 label, maybe because the ink needed more times on the fuser for fix it hard on label...
    Can you please suggest me the BEST CONFIGURATION for printing LABEL on this Laserjet??
    Thanks. Bye

    I have a couple of suggestions here, but these are both just guesses, since I can't see the label media that you are using.
    1.  If the label is thick, you may want to try setting the paper type to "heavy media".  
    2.  If the label is slick or shiny, it may not work well with any laser printer.    Was this label made for laser printing?

  • Problem with attributes labels

    Hi All!
    I try use Busines Componets properties. Exactly attributes labels. I setup labels for each attribute, but no effect on rendering. Anybody have this problem?
    I use JD 3.1

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mike Evteev ([email protected]):
    Hi All!
    I try use Busines Componets properties. Exactly attributes labels. I setup labels for each attribute, but no effect on rendering. Anybody have this problem?
    I use JD 3.1<HR></BLOCKQUOTE>
    By the way: setMaximumFieldHeight() don't work too!
    null

  • Wacky problem with Frame label

    I have a menu set up with three items. Menu item one has
    "gotoAndPlay("video"), menu item two has
    "gotoAndPlay("somethinghere") etc...
    My menu items two and three always jump to the correct frame
    label. I am having a problem with the first menu item.
    When you click through the menu items slowly, content loads
    in correctly, but it seems that if you click different menu items
    too fast, the first menu item jumps back the main timeline to frame
    1. My menu is inside of a movieclip. This is where my frame labels
    are.
    Has anyone ever seen an issue like this before or know how to
    prevent this wacky behavior?

    use the goto methods, not functions:
    _root.gotoAndPlay("video");

  • Problem Printing Zebra labels

    Hi Experts,
    I am printing a zebra label, it is printing fine when I am testing it from SAP form. But it is not printing if I am printing it from the print program.
    I have done some research about this, some one using LBZEB as device type. some one using include RVADOPFO.
    What is the correct proceduce. How to give the Device name in the OPEN_FORM.

    hello,
    i would strongly suggest, you consult the metalink knwoledge
    base and seach for existing problems. if you can not find
    anything, contact oracle support services.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problems with Value Labels in Stacked Bar Chart

    Post Author: RGR
    CA Forum: Charts and Graphs
    When choosing a stacked bar chart to display the contribution of 2 values to the overall total, the graph plots correctly, but the value labels are incorrect.  Instead of labeling the values for A & B, the graph is appropriately labeled for A ,but the label for B is the total for A+B.  It should be just "B".
    Has anyone else experienced this problem or has a solution.  I am using CR 2008
    TX

    Post Author: Joy Hampson
    CA Forum: Charts and Graphs
    I have this issue a lot with CR XI.  As I have never used CR 2008, I am not sure of the commands.  But in CR XI, right click on the graph and select Chart Options.  On the Data Labels tab, at the bottom there are two options: Cumulative and Absolute.  It defaults to Cumulative, so change to Absolute.  That always works for me.

  • Problem Adding Custom Labels to Address Book

    I add custom labels to the Template in Address Book Preferences. There's no problem at this stage, the custom labels appear along with the preset labels in the Template. But when I leave Preferences, go back to Address Book and add a new card, the custom labels disappear.
    What am I doing wrong?
    Any help would be appreciated. And thank you in advance.

    Barney-15E: Thanks for your previous reply!
    Would you check this work-around for me? I think I found a way to compose a master list of custom labels and have them available for multiple cards (new and old) in Address Book on a MacBookPro and in the Contacts directory on an iPhone. I have tried compiling a master list of custom labels using Address Book Preferences/Template and I find there's a limit to the number of custom labels I can add as a label for each field.
    Here's my workaround.
    1) Go to the iPhone Contacts directory.
    2) Add a new card.
    2) Enter data in these fields: address, date, email, and phone. The standard label will appear on the screen below the data.
    3) Tap the standard label and you will go to a screen with 2 windows. The top window has the standard or preset labels for that field but below it in a second window is a button "Add Custom Label". Tap on this button and you will be able to add the text for a Custom Label for each of these fields. This will then become a master list of Custom Labels that can be used in most labels in the iPhone Contacts Directory.
    4) If you have your IPhone set up to synch with your MacBookPro or iMac, the entry in the iPhone Contacts directory will be transferred to your other Mac, with the Custom Labels.
    Barney - 15E: Can you find a glitch??? To me it seems to make a master list of custom labels available for all card, new and old. The only problem is that the input has to be done on the iPhone.

  • In Exel Problem Write @photos for Data Merge

    How to write in Exel @photos for pictures link?

    Type a single-quote first:  '@photos
    Your question isn't so clear, though. If that doesn't work, please upload a screenshot of the problem.

  • Problem accessing netui:label on javascript

    whenever i want to access a netui label via tagid the browser always tell me that its a null value or not an object. this is the code im using :
    JSP code:
    <netui:label value="0.00" tagId="PrimaryC"/>
    Javascript code:
    document[getNetuiTagName("TestForm", this)][getNetuiTagName("PrimaryC", this)].value = 200.78;
    , but using an id attribute allows me to access it :
    < netui:label value="0.00" id="PrimaryC"/ >
    Problem with this the documentation says the id attribute is deprecated and i have to use the tagId attribute.
    by the way im using BEA Workshop 8.1. Thank you for any help.

    Hi,
    This may be silly, but:
    1. I'm assuming that the form has the tagID "TestForm"
    2. You're missing .forms after document and before [; it should read document.forms[getNetuiTagName("TestForm", this)][getNetuiTagName("PrimaryC", this)].value = 200.78;
    _steve.
    Edited by stvboy at 07/03/2007 6:08 PM

  • Vertical offset problem when printing labels after editing with Crystal Reports

    Hello,
    We are still using the RDC component of Crystal reports in some of our C++ Software components. Label design is done with a very old Version 8.5 of Crystal, the Clients use the 10.5 runtime for printing.
    This was running on Windows XP and Server 2003 for a Long time. Recently we changed to Server 2008 R2 (english) and Windows 7 (de) on the Clients. Again we installed CR 8.5 on the Server for Label design and a 10.5 runtime on the Clients for printing. Now something strange happened. If we just open a Report file with CR on the Server and save it (doing no changes), there is a Problem with printing on the Clients. The line spacing is now wrong. It´s about 5th the value as it should be. This only happens on the Client. The reports still print ok from the preview Windows of CR on the Server.
    However, we have to Change Labels. As a Workaround, we installed CR also on one of the Windows 7 Clients. And this is working. We can save Labels unchanged and they are printed with the correct line spacing on the Clients.
    Of Course, this should be solved in the future, because the Clients are placed in our production area and it´s not a good place for sitting and changing Labels.
    i´v no idea what could be the reason?
    Greetings, Jörg

    This might be due to differences in default/specified printer (or printer driver) across the machines involved.

  • Problem with Item Labels in ORacle 10g

    Hi,
    We have unchecked the item labels in oracle discoverer 10g. when we create the portlet(after moved server from 10.1.0.2 to 10.1.2), it showing item labels for the discoverer report.
    we dont want item labels to be displayed in portlets.
    Can one any tell us why this occurs?
    Thanks in advance.

    Hello,
    We have unchecked Item Labels (not to display the column names in the cross tab) in Discoverer plus (Tools ----> Options -----> Sheet -----> Show Item Labels).
    And created the discoverer worksheet portlet in Oracle Portal with Options to display the cross tab.
    The Item Labels are displaying in this discoverer worksheet portlet.
    We donot want to display the Item Labels.
    How can i achieve this?
    Thanks,

  • Problem in changing label in leave request approval screen

    Hi All,
    I have followed the SAP note 1234273 to change labels in our Leave request iViewin ESS and could do it successfullybut I could not able to know how to change the labels in Leave request approval screen because I have created a custom role and assigned Universal work list to it and assigned it to manager to view the leave requests applied. I navigated to Leave request approval screen via that role but ctrl + right click is not working on that page. Please suggest me

    Check your uwl config, normally it is configured to directly call concerned(leave req approval) application hence your iview may not be getting called. You can try changing the uwl config to call PCD page instead of direct wdp application call.
    ~cheers
    avadh

Maybe you are looking for

  • Run_report_object is giving error

    I am tryimg to run report. In Form Builder i have a report obgect 'report_numb1' In my procedure i am using pl_id paramlist; report_job_id VARCHAR2(100); BEGIN I have some parameters passed to the report Add_Parameter (pl_id, report_job_id := RUN_REP

  • Firewire connection 400 to 800 is the a special cable

    I just purchased a new Mac Mini with a 800 Mb firewire and want to transfer files from my older Mini with a 400 Mb. The pin outs are different. Is there a cable available that will connect the two? Will I be able to connect the new Mini to my externa

  • Docx in PDF Problem

    Hallo Zusammen, ich habe hier ein größeres Word-Dokument mit hochauflösenden Bildern (die auch so bleiben müssen) und diversen Felder (Ihnaltsverzeichnis, Abbildungsverzeichnis, Literatur, usw). Ich benutze Acrobat XI, Win 7 64 bit und Word 2013. Ges

  • My license has gone stale

    out of the blue I cannot use visual studio professional 2013 .... the message says "your license has gone stale". I cannot use visual studio.  When I click "check for updated license" I get an error: "Sorry we ran into a problem"  Method not found ..

  • Error 10 Could not locate resource

    I tried to auto download the JRE using the JREInstaller and the DownloadServlet (sample in jdk 1.5) from a local server. I got the error 10 Could not locate resource. <j2se version="1.5.0*"  href="http://127.0.0.1:8080/Web-Test2/install/javaws-1_0_1-