Want a Dictionary Icon next to Text field??plz help

i am using jdev 11.1.2.4.0 and i want dictionary icon next to text field for searching words in dictionary....plzz help

Hi,
Are you need dictionary image next to text field ? Searching words in dictionary means after click the dictionary image it need to call call any bean methods ?..

Similar Messages

  • Appending small search icon next to Text Field

    All,
    I am trying to append a tiny search icon when clicked works like the search button, i tried with basic jquery but didnt work can somebody help me on this?
    apex 4.1.1/oracle 11g
    regards,

    Why don't you use Pre Element Text or Post Element Text for that? Type in the tag for the image icon. If you need to add an event you could just add a function call onclick.
    Eg.
    <img src="/path/search.png" onclick="search()"/>
    In the search() javascript function you can describe whatever you want to do after a click.
    Cheers
    AM

  • HT204411 i want a itunes account to Release my songs plz help me how ?

    i want a itunes account to Release my songs plz help me how

    A possible cause on this is that you have an outstanding balance. Might be an unpaid purchase, Credit Card issue or what not. Contact them via expresslane.apple.com

  • I have downloaded a game called temple run, it is stuck downloading under the game it sayz 'Waiting' i have 3 other apps like that and my Smurfs game updating it is stuck too like that ! I have alot of apps so i dont want to delete date!!!! Plz help!!!!

    I have 4 apps that i just downloaded and they are 'Waiting' i need some one
    To plz come up with a solution i dont want to erase my data cause i have over
    100 games paid and free PLZ HELP i also have my smurfs game updating
    And i cant get on it now cause
    It wont update plz help!!!!!!!

    These links might be of help:
    Troubleshooting applications purchased from the App Store
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    iPod touch: Hardware troubleshooting
    I would use these links in order { if the info on first link doesn't work, move to second link }

  • I have added a ADD-ONE like smart digg I want to debug this ADD-ONE. So plz help me how can i debug this.

    I wants to debug and ADD-ONE plz help me how can i debug the ADD-ONE.

    That's correct - you can't add it to another controller.
    From the View Controller Catalog for iOS:
    A split view controller must always be the root of any interface you create. In other words, you must always install the view from aUISplitViewController object as the root view of your application’s window. The panes of your split view interface may then contain navigation controllers, tab bar controllers, or any other type of view controller you need to implement your interface. Split view controllers cannot be presented modally.
    -=-
    Ken

  • I only recieve n not able to send text messages,,plz help

    i only recieve n not able to send text messages,,plz help

    Try this: Go to Settings > General > Reset > Reset Network Settings. After that, check if you can already sends SMS

  • 3 ipods, 1 computer, want to share songs, but different librarys? plz help!

    Me, my sister, and brother-in-law all have our own ipods, but we want to share songs, but have different librarys. Is this possible? We are on one computer and do not want to use separate Windows XP accounts. Please Help!!

    Well, to create a smart playlist go to file > new smart playlist and set the criteria for that playlist.
    I wouldn't even use I smart playlist...that just makes it harder. Just create 3 normal playlists: one for each person, and drag whatever songs into the playlist of the person that wants them. You can drag one song into more than one playlist: it doesn't actually take the songs out of the library. The playlists are just directories that corrospond to your library. Then when you hook up your iPod, go to edit > preferences > iPod options and say "sync to selected playlists only" and choose your playlist for that iPod to update to. THen, when you add CDs, click and drag the songs into the playlists of whoever wants them. You can drag a song into 1 playlist and then into the second, and it will appear in both.
    If you are dead set on using smart playlists, then you can set the criteria for "comments...includes...."Your Name" or "Whoever's Name This Playlist Belongs To" And then when you add Cd's, go to info and add the names of whoever wants that song into the comments box. Then they will automatically be placed into the correct playlists...but honestly...this is much, much harder. You should just use the clicking-and-dragging method instead. If my description of how to do that was really bad, just ask me, and I will be more clear.
    If you are talking about different XP users, then let me know also. That's a different story altogether.

  • I want to create decimal number formated text field

    hi
    I am trying to create decimal for eg 1234.20
    only this type number can acssess
    for that what I do

    try adding a CustomKeyListener to your text component....
    to create decimal for eg 1234.20((JTextComponent)component).addKeyListener(CustomKeyListener(4,2));
    import java.awt.event.*;
    import javax.swing.text.JTextComponent;
    public class CustomKeyListener extends KeyAdapter {
         char separator = '.';
         // total digits allowed
         int maximumSize ;
         // digits before the separator
         int before = -1;
         // digits after the separator
         int after = -1;
         public CustomKeyListener(int the_before,int the_after) {
              before = the_before;
              after = the_after;
              maximumSize = before+after+1;
         public void keyTyped(KeyEvent e){
              JTextComponent txtComp = (JTextComponent) e.getSource();
              if (txtComp.getText().length() < maximumSize ){
                   if(Character.isDigit(e.getKeyChar())||
                             e.getKeyCode() == KeyEvent.VK_BACK_SPACE||
                             e.getKeyChar() == separator ||
                             e.getKeyChar() == ',') {
                   // if txtComp contains a separator
                        if (txtComp.getText().indexOf(",") != -1 ||
                             txtComp.getText().indexOf(".") != -1     ){
                   // a second separator (if typed) will be deleted
                                  if (e.getKeyChar() == separator ||
                                                 e.getKeyChar() == ',')     {
                                  e.setKeyChar(new Character('\b'));
                                  return;
                   // typed a digit
                             int separatorPosition;     
                             if (txtComp.getText().indexOf(",") != -1 ){                         
                                  separatorPosition =txtComp.getText().indexOf(",");
                             else{                         
                                  separatorPosition =txtComp.getText().indexOf(".");
                             // finding caret position
                             int cp = txtComp.getCaretPosition();
    //                         System.out.println("posizione del caret " + cp);
                   // caret before separator
                             if ( cp <= separatorPosition ){
                                  if (txtComp.getText().
                                            substring(0,separatorPosition).trim().length()<
                                            before){     
                                       return;
                                  else{                              
                                       e.setKeyChar(new Character('\b'));
                                       return;          
                             else{
                             // caret after separator
                                  if (txtComp.getText().
                                            substring(separatorPosition+1).length()<
                                            after){     
                                       // digit is ok!
                                       return;
                                  else{
                                       e.setKeyChar(new Character('\b'));
                                       return;
                        else{
                        // separator absent
                             // if is typed a separator
                             if (e.getKeyChar() == separator ||
                             e.getKeyChar() == ','){
                                  int cp = txtComp.getCaretPosition();
                                  if (txtComp.getText().length() - cp-1 < after){
                                       return;
                                  else{
                                       e.setKeyChar(new Character('\b'));
                                       return;
                             // is typed a digit
                             else{                              
                                  if(txtComp.getText().trim().length()<before){
                                       return;
                                  else{
                                       e.setKeyChar(new Character('\b'));
                                       return;
                   }else{
                        // the key pressed isnt numeric
                        if (Character.getNumericValue(e.getKeyChar())!=-1)
                        e.setKeyChar(new Character('\b'));
                        return;
              else{
                   // Maximum lenght reached
                   e.setKeyChar(new Character('\b'));
    }

  • Table Control Text  fields problem , help plz

    Hello Anand , Rich , John & All
      I hav problem with Text 3 fields( type c)(either L or R aligned )  , it is not geting updated , otherwise everything else is perfectly fine(scrolling,sorting etc ....) .
    Fields giving problem are
    1. Status(20) type c
    2. Fdat  type date
    3. Remark(100) type c
    All numerical fields are working fine .
    <u><b> My yahoo messenger-id is [email protected]</b></u>
    <b>Any light on this will be awarded plz .</b>
    FLOW LOGIC
    PROCESS BEFORE OUTPUT.
    MODULE SET_STATUS.
    LOOP AT      ITAB
          WITH    CONTROL TCL1
          CURSOR  TCL1-CURRENT_LINE .
       MODULE SET_LINE_COUNT .
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE UPD_OK_COD.
    MODULE EXIT_COMAND AT EXIT-COMMAND.
    MODULE SCROLL_SORT.
    LOOP AT ITAB.
          MODULE UPDATE_ITAB.
    ENDLOOP.
    MODULE UPDATE_TABLE.
    REPORT ZSD_REP_ORDER_BANK_CHANGE NO STANDARD PAGE HEADING LINE-SIZE 255.
    TABLES: VBAK,VBAP,VBRK,ZSD_TABL_ORDBANK,MARA,KONV.
    CONTROLS: TCL1 TYPE TABLEVIEW USING SCREEN 0200.
    DATA: ITAB LIKE ZSD_TABL_ORDBANK OCCURS 0 WITH HEADER LINE,
          WA_ITAB LIKE ZSD_TABL_ORDBANK,
          OK_CODE LIKE SY-UCOMM,
          SAVE_OK_CODE LIKE SY-UCOMM,
          UPD_OK_CODE LIKE SY-UCOMM,
          ANSWER TYPE C,
          I LIKE SY-LOOPC ,
          J LIKE SY-LOOPC,
          V_LINES LIKE SY-LOOPC,
          LINE_COUNT LIKE SY-LOOPC,
          STS  TYPE N,
          EMGRP LIKE MARA-EXTWG,
          QTY LIKE ZSD_TABL_ORDBANK-QTY,
          UPRICE LIKE ZSD_TABL_ORDBANK-UPRICE,
          TOT LIKE ZSD_TABL_ORDBANK-TOT,
          INO LIKE VBAP-POSNR,
          COL TYPE CXTAB_COLUMN,
          COPIED_ONCE ,
          FLDNAME(100),HELP(100).
    FIELD-SYMBOLS:
         <FS_ITAB> LIKE LINE OF ITAB,
         <FS_TCL1> LIKE LINE OF TCL1-COLS.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-000.
      SELECT-OPTIONS: S_CCODE FOR ZSD_TABL_ORDBANK-CCODE
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_SORG  FOR ZSD_TABL_ORDBANK-SORG
                              NO INTERVALS NO-EXTENSION  OBLIGATORY,
                      S_DCHAN FOR ZSD_TABL_ORDBANK-DISTCHAN,
                      S_DIV FOR ZSD_TABL_ORDBANK-DIV,
                      S_MATNO FOR ZSD_TABL_ORDBANK-MATNO,
                      S_CUSTNO FOR ZSD_TABL_ORDBANK-CUSTNO ,
                      S_QTNO FOR ZSD_TABL_ORDBANK-QTNO,
                      S_QTDAT FOR ZSD_TABL_ORDBANK-QTDAT,
                      S_QTVDAT FOR ZSD_TABL_ORDBANK-QTVALDAT,
                      S_SONO   FOR ZSD_TABL_ORDBANK-SONO.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN.
       SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
             REFRESH ITAB.
             CLEAR COPIED_ONCE.
             CALL SCREEN 0200.
          ELSE.
             MESSAGE E012(ZQOTBANK) .
          ENDIF.
    *&      Module  SET_STATUS  OUTPUT
    *       text
    MODULE SET_STATUS OUTPUT.
      SET PF-STATUS '0200'.
      SET TITLEBAR '0200'.
        IF COPIED_ONCE IS INITIAL.
          SELECT * FROM  ZSD_TABL_ORDBANK
                   INTO  TABLE ITAB
                   WHERE CCODE IN S_CCODE
                     AND SORG IN  S_SORG
                     AND DISTCHAN IN  S_DCHAN
                     AND DIV IN S_DIV
                     AND MATNO IN  S_MATNO
                     AND CUSTNO IN  S_CUSTNO
                     AND QTNO IN  S_QTNO
                     AND QTDAT IN  S_QTDAT
                     AND QTVALDAT IN  S_QTVDAT
                     AND SONO IN  S_SONO .
          IF SY-SUBRC EQ 0.
            DESCRIBE TABLE ITAB LINES V_LINES.
            TCL1-LINES = V_LINES.
          ENDIF.
          COPIED_ONCE = 'X'.
          REFRESH CONTROL 'TCL1' FROM SCREEN '0200'.
       ENDIF.
          LOOP AT ITAB.
             QTY = ITAB-QTY.
             UPRICE  = ITAB-UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-CGL_QTY.
             UPRICE  = ITAB-CGL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-CGL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-BHEL_QTY.
             UPRICE  = ITAB-BHEL_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-BHEL_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-ALSTOM_QTY.
             UPRICE  = ITAB-ALSTOM_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-ALSTOM_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-SIEMENS_QTY.
             UPRICE  = ITAB-SIEMENS_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-SIEMENS_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-TELK_QTY.
             UPRICE  = ITAB-TELK_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-TELK_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             QTY = ITAB-OTH_QTY.
             UPRICE  = ITAB-OTH_UPRICE.
             TOT = QTY * UPRICE .
             ITAB-OTH_TOT = TOT .
             CLEAR: QTY, UPRICE, TOT.
             MODIFY ITAB.
          ENDLOOP.
    ENDMODULE.                 " SET_STATUS  OUTPUT
    *&      Module  SET_LINE_COUNT  INPUT
    *       text
    MODULE SET_LINE_COUNT OUTPUT.
      LINE_COUNT = SY-LOOPC.
    ENDMODULE.                 " SET_LINE_COUNT  INPUT
    *&      Module  UPD_OK_CODE  INPUT
    *       text
    MODULE UPD_OK_COD INPUT.
    IF OK_CODE = 'SAVE'.
        UPD_OK_CODE = OK_CODE.
    *    CLEAR OK_CODE.
    ENDIF.
    ENDMODULE.                 " UPD_OK_CODE  INPUT
    *&      Module  EXIT_COMAND  INPUT
    *       text
    MODULE EXIT_COMAND INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
        WHEN 'BACK'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Go BacK ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
        WHEN '%EX'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              TITLEBAR       = 'Order Bank Entry'
              TEXT_QUESTION  = 'Do you want to Exit ?'
              TEXT_BUTTON_1  = 'Yes'
              TEXT_BUTTON_2  = 'No'
              DEFAULT_BUTTON = '2'
            IMPORTING
              ANSWER         = ANSWER.
          IF ANSWER = '1'.
            LEAVE TO SCREEN 0.
          ELSE.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " EXIT_COMAND  INPUT
    *&      Module  UPDATE_MOD  INPUT
    *       text
    MODULE UPDATE_ITAB INPUT.
        MODIFY TABLE ITAB FROM ITAB.
    ENDMODULE.                 " UPDATE_MOD  INPUT
    *&      Module SCROLL INPUT
    *       text
    MODULE SCROLL_SORT INPUT.
    SAVE_OK_CODE = OK_CODE.
    CLEAR OK_CODE.
    CASE SAVE_OK_CODE.
      WHEN 'P--'.
          TCL1-TOP_LINE = 1.
      WHEN 'P-'.
          TCL1-TOP_LINE = TCL1-TOP_LINE - LINE_COUNT.
          IF TCL1-TOP_LINE LE 0.
             TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'P+'.
          I = TCL1-TOP_LINE + LINE_COUNT.
          J = TCL1-LINES - LINE_COUNT + 1.
          IF J LE 0.
             J = 1.
          ENDIF.
          IF I LE J.
             TCL1-TOP_LINE = I.
          ELSE.
             TCL1-TOP_LINE = J.
          ENDIF.
      WHEN 'P++'.
          TCL1-TOP_LINE = TCL1-LINES - LINE_COUNT + 1.
          IF TCL1-TOP_LINE LE 0.
              TCL1-TOP_LINE = 1.
          ENDIF.
      WHEN 'SORTUP'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB ASCENDING BY (FLDNAME).
          ENDIF.
      WHEN 'SORTDN'.
          READ TABLE TCL1-COLS ASSIGNING <FS_TCL1> WITH KEY SELECTED = 'X'.
          IF SY-SUBRC = 0.
              SPLIT <FS_TCL1>-SCREEN-NAME AT '-' INTO HELP FLDNAME.
              SORT ITAB DESCENDING BY (FLDNAME).
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND  INPUT
    *&      Module  TABL_UPD  INPUT
    *       text
      MODULE UPDATE_TABLE INPUT.
       CASE UPD_OK_CODE.
       WHEN 'SAVE'.
         UPDATE ZSD_TABL_ORDBANK FROM TABLE ITAB .
         IF SY-SUBRC EQ 0.
             MESSAGE I002(ZQOTBANK) .
             CLEAR  UPD_OK_CODE.
         ELSE.
             MESSAGE E003(ZQOTBANK) .
         ENDIF.
       ENDCASE.
      ENDMODULE.                 " TABL_UPD  INPUT
    Thnx
    moni<b></b><b></b>
    Message was edited by: md monirujjaman
    Message was edited by: md monirujjaman

    Hi Moni,
    The problem as I had replied in your earlier post is with the MODIFY statement.
    MODIFY TABLE ITAB FROM ITAB. This statement will do the modifications based on the table key. When you have character fields as editable, then some problems are to be anticipated. In such a scenario, you must update the internal table based on the <i>index</i>, rather than based on <i>key</i>.
    So consider using
    MODIFY ITAB FROM ITAB INDEX TCL-CURRENT_LINE.
    Where TCL is the name of the Table Control. Also observe the difference in syntax here, don't use the TABLE keyword for the MODIFY statement.
    Please try it out and let me know.
    Regards,
    Anand Mandalika.

  • Opening a window from a taskbar icon lags application!! PLZ HELP!

    Hey, everyone!
    I'm trying to have an application icon in my taskbar, that once I click on it, will open a new window.
    That's pretty simple to do, so i thought, but then I came across something wierd!!
    When I open the window with the click on the icon, the entire application (all other windows too) really lag!!
    And there is no increase in CPU or MEM usage, or anything!
    If you close the windows, the application still lags once you open a new one.
    And the wierdest thing is, that if you open the window with a right-click, and clicking on the menu item which shows up, no lagging is caused whatsoever!
    I should note that this only happens when the window contains the RichTextEditor component. Maybe it's a specific problem with the component, or maybe it's a general performance issue, and the RichTextEditor is just really 'heavy'. I dunno....
    Anyways, here is the code. Hope you guys can help!!!
    EditorWindow.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Window xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/halo" width="400" height="300">
         <mx:RichTextEditor/>
    </s:Window>
    App.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/halo" xmlns:local="*"
                                creationComplete="initIcon();" applicationComplete="close()">
         <fx:Script>
              <![CDATA[
                   import flash.display.NativeMenu;
                   import flash.display.NativeMenuItem;
                   import flash.events.Event;
                   import flash.events.MouseEvent;
                   import flash.net.URLRequest;
                   private function initIcon():void
                        var icon:Loader = new Loader();
                        var iconMenu:NativeMenu = new NativeMenu();
                        iconMenu.addItem(new NativeMenuItem("New")).addEventListener(Event.SELECT, onClickHandler);
                        if (NativeApplication.supportsSystemTrayIcon)
                             NativeApplication.nativeApplication.autoExit = false;
                             icon.contentLoaderInfo.addEventListener(Event.COMPLETE, iconLoadComplete);
                             icon.load(new URLRequest("icon.gif"));
                             var systray:SystemTrayIcon = 
                                  NativeApplication.nativeApplication.icon as SystemTrayIcon;
                             systray.addEventListener(ScreenMouseEvent.CLICK, onClickHandler);
                             systray.menu = iconMenu;
                   private function iconLoadComplete(event:Event):void
                        NativeApplication.nativeApplication.icon.bitmaps =
                             [event.target.content.bitmapData];
                   private function onClickHandler(event:Event):void
                        new EditorWindow().open();
              ]]>
         </fx:Script>
    </s:WindowedApplication>
    Thanks in advance to anybody who read this post (:

    Or use a more cross-platform capable solution such as that found here: http://ostermiller.org/utils/Browser.html

  • I want to prepare for oracle 1Z-051 exam plz help....ASAP

    hi
    i want to prepare for 1Z-051 SQL Fundamental -I exam. Kindly share any dumps, pdfs, study material. if any body have it. let me the links from which i can download dem for free.
    reply ASAP

    Good morning,
    Here is the information from Oracle on such practices...
    Oracle Certification Program Fraudulent Activity Policy
    Oracle reserves the right to take action against any candidate involved in fraudulent activities, including, but not limited to, fraudulent use of vouchers, promotional codes, reselling exam discounts and vouchers, cheating on an exam, alteration of score reports, alteration of completion certificates, violation of exam retake policies or other activities deemed fraudulent by Oracle.
    If Oracle determines, in its sole discretion, that fraudulent activity has taken place, it reserves the right to take action up to and including, but not limited to, decertification of a candidate's Oracle Certified Associate, Oracle Certified Professional and/or OCM credentials, temporary, indefinite or permanent ban of a candidate from Oracle certification programs, notification to a candidate's employer, and notification to law enforcement agencies. Candidates found committing fraudulent activities forfeit all fees previously paid to Oracle, or to Oracle's authorized vendors, and may be required to pay additional fees for services rendered.
    View the Oracle Certification Program Candidate Agreement which requires your agreement before the start of each exam.
    Take note of this. I would not want to put in the effort you are looking to do only to have Oracle decertify me.
    Study, practice, study some more. Then, when you are ready, take the test.
    Good luck,
    Don.
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone! :)

  • I want to purchase from itunes canada, can someone plz help me

    I want to purchase down with websters new album time to win vol 2 but its only available in the canada iTunes store. i dont have an address there or credit card from canada so that is out of the question. Are there any other options????

    No.
    You can buy ONLY from the itunes store of your country of residence ( proven by the valid billing address on your credit card) AND ONLY while physically locate inside the borders of that coutnry.
    Sorry.
    Look on Amazon or some other online music seller for the album.

  • I want a doc about LSMW steps for HR,PLZ help me!

    hi everyone:
    Can anyone pls send me a doc with LSMW steps regarding some HR function/project (as an example) for which I would be more than grateful.
    thanks!
    Message was edited by:
            Zsolt Markus

    Hi 4K!
    I hope you already know the rules of SDN -
    > no private mailing, knowledge sharing platforms are Forums, Blogs, Articles, etc...
    Please do not use your e-mail.
    I have deleted them from your question.
    Best regards,
    Zsolt

  • I need help with a 1 Page Form with scrollable text field (5000 limit characters) and printing

    Hello, I have no training in using Adobe Acrobat Pro or Livecycle Designer so I need major help with a 1 page form that I am attempting to create. Basically the form will be used to nominate employees for a Job Well Done Award.
    The form contains the following:
    1.) The name(s) of the employees being nominated and the date of the accomplishment.
    2.) In the middle of the page I have a section for a write up, limited to 5000 characters, this is were I am needing the most help. A couple of things, about this section: The font is set at 11 and I don't want it to change. The text field has multiple-line, scroll long text enabled. The text field is a certain size and can only hold so much text, then it starts to scroll, which I am ok with, I like that feature. The issue I am having is during printing. I would like to keep the text field scrollable but when I print I would like to be able to print everything in that field. Executing this is the problem, I have no clue how to do it. I was hoping for some setting within Acrobat Pro or LiveCycle to be available, but the more I read and research this, it appears that it may require java, xml, basically some coding. I don't know for sure.
    3.) Below the text field I have another field for the person nominating to type their name and right next to that another field for a digital signature.
    4.) And finally below those two fields I have a Submit button that is setup to start email application so the form can be emailed to the proper inbox.
    Thank you in advance.

    With an Acrobat form the only thing you can do is export the text to
    another location (like a blank field on another page) or to another file
    format. With an LCD form you can expand the text box itself, but you'll
    need to ask about that over at the LCD Scripting forum.

  • Overflow text on to second text field.

    My form contains a long descriptive text followed by a short line, the for text field. The next form text field is a long blank line onto which I want the overflow text from the above field to be placed. How can I do this whith Acrobat 8 Mac OSX 10.4
    Thank you

    Ah ok, you are probably not in the right forum then. This one is for XFA-based forms built with Designer (accessed through Forms->Start Form Wizard, Create a PDF Form from scratch) and not the in-built Acrobat Form->Add Or Edit Fields. I dont think the in-built fields have the funtionality you are looking for but you can ask in http://forums.adobe.com/community/acrobat/forms

Maybe you are looking for

  • Error in install of any link Oracle 9.0.1

    Dear All I am installing Oracle9i on Sun Sparc Solaris and I get the following errors. (this happens for about 87 files) I'm not sure what the problem is. --- error_mesage -------------------------------- Error in checking existance of the link, errn

  • Purchase Order with reference to Purchase Requisition

    Hello I have this situation: One Purchase Requisition with quantity of 10. When I issue a Purchase Order with reference to this purchase requisition, for the moment I can use this Purchase Requisition many times. For example: two Purchase Order with

  • Data not populated for Enhanced field

    Hello, I had done enhancement by adding field to the LO Datasource. Written the code in the CMOD to populate the data. When i run init it worked fine and i am able to see the data for the enhanced filed. When i run delta iam not able to see the data

  • Airplay mirroring doesn't work

    My Macbook Air is mid 2011 but still can't airplay mirroring. Does anybody know why?

  • ISE upgrade from 1.1 to 1.2.1 - lost CLI admin password?

    Hi, In a mysterious way I lost CLI Admin password in whole my ISE deployment (6 PSN, 1 ADM and 1 MNT node). I wondering how it is possible? Last time I logged to the nodes when I upgrade my deployment from ISE 1.1 to 1.2.1. Is this possible that I co