Positioning a picture placeholder generated by a button

Hi. Have built a form in LiveCycle to be completed via reader. Has buttons to add optional repeating 'Opportunity' subform.
Within this subform there is a button to generate an additional picture placeholder subform.
Problem is can generate 'Opportunity' subforms (2, 3 etc) but additional picture placeholder always appears in first instance of opportunity subform regardless whether generated from button in (say) opportunity subform 3.
Phew!
Maybe easier to have the whole file?
No option to upload here anymore?
Thanks

Hi Steve
Image placeholder is an image filed with defined dimensions
form1.OpportunitySubform.PicandTextSubform.PicSubform.AddPictureButton::click - (JavaScript, client)
// nSubLength stores the number of XML elements contained in Subform1.
// var nSubLength = OpportunitySubform.nodes.length;
// nNumSub is used to calculate the number of subform objects contained in Subform1.
// var nNumSub = 0;
// This script uses a For loop to cycle through all of the objects contained
// in Subform1.
// for (var nCount = 0; nCount < nSubLength; nCount ++) {
// If the current XML element in Subform1 is of type subform, then increment
// the variable nNumSub by one.// if (OpportunitySubform.nodes.item(nCount).className == "subform") {
// nNumSub = nNumSub + 1;
// An if-else statement is used to prevent form authors from adding more than the
// maximum number of five subform instances to a form.
// if (nNumSub == 5) {
// xfa.host.messageBox("The maximum allowable number of subforms is 5. You cannot add any more subforms.", "Warning", 3);
// else {
// This script uses the addInstance() method to add a new instance of the
// Subform2 object contained in Subform1.// form1.OpportunitySubform.PicandTextSubform.PicSubform.instanceManager.addInstance(1);
if  (form1.OpportunitySubform.PicandTextSubform.PicSubform.instanceManager.count<5) {
// This script uses the addInstance() method to add a new instance of the
// Subform2 object contained in Subform1.form1.OpportunitySubform.PicandTextSubform.PicSubform.instanceManager.addInstance(1);
}else {xfa.host.messageBox("The maximum allowable number of subforms is 5. You cannot add any more subforms."
, "Warning", 3);}
That's the code. Can add a new subform 1 fine.
If I then generate a new pic in the second instance of subform 1 it places the pic in the first instance of subform 1.

Similar Messages

  • HTML picture code generator

    I have
    null

    Sorry my computer crashed there and I can't log back into my account.....anyway as I was going to say. I appologise for that first comment mess up.
    well I've finished a program that generates html code for people on websites like myspace who don't know how to code in xhtml, and I'm just making it open source for people to use and if anyone would like to improve on this or change something, add something or what ever I would like to see what you come up with =D
    Or if you just like to comment on my code, I've just started to learn java so any bad habbits that I have I want to try and get rid of them now :P
    * SimpleFrame class
    * @date 18/06/06
    import javax.swing.*;
    public class SimpleFrame extends JFrame {
         public void showIt()
              this.setVisible(true);
         public void showIt(String title)
              this.setTitle(title);
              this.setVisible(true);
         public void showIt(String title,int x,int y)
              this.setTitle(title);
              this.setLocation(x,y);
              this.setVisible(true);
    * Main Class
    * @date 18/06/06
    import java.awt.*;
    import javax.swing.*;
    public class Main extends SimpleFrame {
         Panel panel = new Panel();
         public static void main(String[] args)
              Main main = new Main();
              main.showIt("html picture code maker");
         // Labels, TextFields and Buttons
         private JLabel info = new JLabel(" Welcome to the html picture code generator");
         private JLabel name = new JLabel(" Name of picture:");
         private JLabel link = new JLabel(" Link:");
         private JLabel height = new JLabel(" Height of picture (e.g. 200) :");
         private JLabel width = new JLabel( " Width of picture (e.g. 200) :");
         private JTextField nameText = new JTextField();
         private JTextField linkText = new JTextField();
         private JTextField heightText = new JTextField();
         private JTextField widthText = new JTextField();
         // Buttons at the bottom of the page
         private JButton more = new JButton("More");
         private JButton finish = new JButton("Finish");
          * Adding JLabels, TextFields and Buttons to constructor
         Main(){
              Listener listener = new Listener(this);
            // Setting size and colour
              this.setBackground(Color.WHITE);
              this.setPreferredSize(new Dimension(400,400));
              // Setting Layout
              BorderLayout borderLay = new BorderLayout();
              this.setLayout(borderLay);
              this.setLayout(new GridLayout(0,1));
              this.setLocation(200,200);
              // Adding Labels, TextFields and buttons
              this.add(info);          
              this.add(name);          
              this.add(nameText);
              this.add(link);
              this.add(linkText);
              this.add(height);
              this.add(heightText);
              this.add(width);
              this.add(widthText);
              //this.add(more);
              this.add(finish);
              pack();
              // Adding listeners to the buttons
              more.addActionListener(listener);
              finish.addActionListener(listener);          
          *  Method to get the Name of the picture
          *  entered into the text field
         public String getName()
              return nameText.getText();
          *  Method to get the Link of the picture
          *  entered into the text field
         public String getLink()
              return linkText.getText();
          *  Method to get the Height of the picture
         public String getPicHeight()
              return heightText.getText();
          * Method to get the Width of the picture
         public String getPicWidth()
              return widthText.getText();
    * Listener Class
    * @date 18/06/06
    import java.awt.*;
    import java.awt.event.*;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.PrintWriter;
    import javax.swing.*;
    public class Listener extends JFrame implements ActionListener{
         Main main;
         Listener(Main p){main = p;}
         public void actionPerformed(ActionEvent e)
              String actionCommand = e.getActionCommand();
              if(actionCommand.equals("Finish"))
                   addToFile();
                   leave();
          * Method that prints out all the html code
          * to the txt file
         public void addToFile()
              PrintWriter outputStream = null;
            try
                outputStream =
                    new PrintWriter(new FileOutputStream("html.txt"));
            catch(FileNotFoundException e)
                System.out.println("Error opening the file");
            outputStream.println("<img src=\"" + main.getLink()+ "\""
                      + "alt=\"" + main.getName() + "\""
                      + "width=\"" + main.getPicWidth()
                      + "\"" + "height=\""
                      + main.getPicHeight() + "\"/>");
            outputStream.close();
          * Method to leave the program
         public void leave()
              ButtonListener buttonListener = new ButtonListener();
              getContentPane().setLayout(new BorderLayout());
              JLabel label = new JLabel(" Thank you for using my program :)");
              //label.addMouseListener(this);
              add(label, BorderLayout.CENTER);
              JPopupMenu m = new JPopupMenu("Menu");          
              m.addSeparator();          
              label.setComponentPopupMenu(m);               
              pack();
              setLocationRelativeTo(this);
              JButton ok = new JButton("Close");               
              this.add(ok);     
              ok.addActionListener(buttonListener);          
              this.setLayout(new GridLayout(0,1));
              this.setSize(260, 200);
            this.setVisible(true);     
            this.setTitle("HTML");
            this.setLocation(300,300);
            this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public void mouseExited(MouseEvent m){     
        public void mouseEntered(MouseEvent m){     
        public void mousePressed(MouseEvent m){     
        public void mouseReleased(MouseEvent m){     
        public void mouseClicked(MouseEvent m){
    * ButtonListener Class
    * @date 18/06/06
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ButtonListener implements ActionListener{
         public void actionPerformed(ActionEvent e)
              String actionCommand = e.getActionCommand();
              if(actionCommand.equals("Finish"))
                   System.out.println("Test");
              else if(actionCommand.equals("Close"));
                   System.exit(0);
    }

  • How can you have the app tabs positioned to the right of the FireFox button when maximized?

    App tabs are '''normally''' positioned to the right of the FireFox button. However, when you shrink the window and then maximize again the app tabs appear below the FireFox button.
    Anytime an app tab is open and you maximize, adjust window, maximize, the entire tab bar is bumped down under the FireFox button. Having just regular tabs open does not have this problem as they correctly position themselves to the right of the FireFox button when maximized.

    Zero is in the middle where it says "none".

  • After several time installed CS6 and a clean Windows 8.1 bridge still pause after selecting a picture or right click with button mouse.

    My bridge pause all the time. I have to wait 30 seconds after selecting a picture or click the right button of the mouse. I have installed a new windows 8.1, and a fresh CD6. But still these problems in Bridge. No problems in Photoshop. What to do

    What is the problem:
    When I choose a picture in Bridge I have to wait 20 till 30 seconds (sometimes more).
    When I choose with right click of the mouse. I have to wait the same time.
    When I choose the menu. Also
    After opening the picture(s) in Camera RAW. There are no problems
    In Photoshop there are also no problems. Everything works all right.
    Only Bridge have these problems. But I can’t work with it.
    My Computer
    HP Z820 with double     CPU Type           Mobile Intel Celeron M, 2000 MHz
    Nvidia Geforce GTX 980 card
    System memory 64 Gb
    Windows 8.1 Home Edition
    All software is up to date, incl BIOS
    DirectX 4.09.00.0904 (DirectX 9.0c)
    Lots of space on my disc drives
    Software: Adobe Master Collection. But only installed Photoshop and Adobe Acrobat
    Installation done with my original DVD of Adobe. All software updated
    But still problems
    Software installed again (including Windows).
    Now installed adobe from a download version from adobe.
    Still the same problems
    I have no illegal software!
    Multimedia      
    Geluidskaart     SB Recon3D PCIe Audio Controller
    Opslag 
    IDE apparaat     Standaard Dual Channel PCI IDE Controller
    SCSI/RAID apparaat       Controlefunctie voor opslagruimten van Microsoft
    SCSI/RAID apparaat       Intel(R) C600 Series Chipset SAS RAID (SATA mode)
    SCSI/RAID apparaat       Intel(R) C600 Series Chipset SATA RAID-controller
    SCSI/RAID apparaat       LSI Adapter, SAS2 2308 Mustang
    Harde schijf       ATA Samsung SSD 850 SCSI Disk Device
    Harde schijf       ATA SAMSUNG SSD 830 SCSI Disk Device
    Harde schijf       SEAGATE ST3450856SS SCSI Disk Device
    Harde schijf       SEAGATE ST3450856SS SCSI Disk Device
    Optische Station             HL-DT-ST BD-RE  BH16NS40
    Optische Station             hp DVD-RAM GHA3N
    SMART Status harde schijf         Onbekend
    Partities             
    C: (NTFS)            243668 MB (150173 MB vrij)
    D: (NTFS)            122101 MB (65332 MB vrij)
    E: (NTFS)            429244 MB (322019 MB vrij)
    F: (NTFS)            429244 MB (243491 MB vrij)
    Geheugencapaciteit       1195.6 GB (762.7 GB vrij)
    Invoerapparaten           
    Toetsenbord     Logitech HID-Compliant Keyboard
    Toetsenbord     Standaard-PS/2-toetsenbord
    Muis     HID-compliant Mouse
    Muis     Microsoft PS/2-muis
    Netwerk            
    Netwerkkaart    Intel(R) 82574L Gigabit-netwerkverbinding  (192.168.178.37)
    Netwerkkaart    Intel(R) 82579LM Gigabit Network Connection
    Peripherieapparaten    
    Printer  Adobe PDF
    Printer  EPSON XP-950 Series
    Printer  HP 4730 PCL 6
    Printer  Microsoft XPS Document Writer
    USB1 apparaat Texas Instruments USB 3.0 eXtensible Host Controller - 0096 (Microsoft)
    USB2 apparaat Intel(R) C600/X79 series chipset USB2 Enhanced Host Controller #1 - 1D26
    USB2 apparaat Intel(R) C600/X79 series chipset USB2 Enhanced Host Controller #2 - 1D2D
    Van: station_two 
    Verzonden: maandag 13 april 2015 21:58
    Aan: johan van der klaauw
    Onderwerp:  After several time installed CS6 and a clean Windows 8.1 bridge still pause after selecting a picture or right click with button mouse.
    After several time installed CS6 and a clean Windows 8.1 bridge still pause after selecting a picture or right click with button mouse.
    created by station_two <https://forums.adobe.com/people/station_two>  in Bridge General Discussion - View the full discussion <https://forums.adobe.com/message/7434796#7434796>

  • Event Handling: how to listen to events generated by JInternalFrame buttons

    Hello all,
    Could someone give a hint on how to let JFrame listen to event(s) generated by JInternalFrame button(s)? Suppose these buttons are private members of the JInternalFrame, the the JInternalFrawe is shown inside the JFrame. Please suggest some simple ways.
    Thank you.
    ljiang006

    Why does JFrame care about any buttons that you've placed in a JInternalFrame? What might be the case, is a custom class you've written that extends and/or contains a JFrame cares about such buttons so that it can update a display or do some processing or whatever. In which case you have your custom class implement ActionListener and register it with the button for ActionEvents via an addActionListener call. Then in your actionPerformed method is can tell the JFrame to redisplay, etc.

  • Why does a LabVIEW executable generate two taskbar buttons on the taskbar?

    When a LabVIEW executable is run, it generate two taskbar buttons (with the same name) in the task bar each of them pointing to the same window (panel). Is there a way to prevent it from creating two buttons?
    thanks
    ~Vipin

    viper 159 wrote:
    When a LabVIEW executable is run, it generate two taskbar buttons (with the same name) in the task bar each of them pointing to the same window (panel). Is there a way to prevent it from creating two buttons?
    Add the following line to your executable's .ini file
    HideRootWindow=True
    There's a KnowledgeBase item here.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • My iphone 4 3g is completely frozen.  I took a picture and it's frozen on the picture.  Holding down the button on top to restart it does not work.

    my iphone 4 3g is completely frozen.  I took a picture and it's frozen on the picture.  Holding down the button on top to restart it does not work.

    Keep Pressing and Holding the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear..
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    http://support.apple.com/kb/ht1430

  • Generated Code for Button Bar - Not Working

    Hi all,
    I'm working with LightSwitch 2013 (Visual Studio 2013 Update 4), and I noticed that when I view my HTML5 client in Internet Explorer 11 and switch between tabs (in the HTML5 client), the buttons become barely visible (like they were disabled, but they're
    still enabled). Is there a quick fix for this, like regenerating the javascript that was generated to do this?
    Thanks,
    Gareth
    Edit: Here's a picture of what I mean. The button looks disabled, but is actually enabled. Any buttons that are disabled just show up as even less visible. Also, if I switch between tabs enough times, it'll fix the issue and look enabled again. Any advice
    would be greatly appreciated. Thanks!

    Have you added the button to the command bar for each tab or only the first tab?
    If you want 'Add OS' available in more than one tab then you need to add buttons to all relevant tabs, but wire up to the same command and event handler in code behind.
    Dave
    Dave Baker | AIDE for LightSwitch | Xpert360 blog | twitter : @xpert360 | Xpert360 website | Opinions are my own. For better forums, remember to mark posts as helpful/answer.

  • Dynamic positioning (moving) picture container

    Hallo all,
    i have to set the position of a picture container dynamic durin my program runtime.
    i tried to set the position with method
    CONTAINER->SET_LEFT
      EXPORTING
        LEFT       = l_pos
    but the positions doesn't change.
    what's wrong?
    Thanks a lot!
    Stefan

    Hello there,
    This is an "ol skool" method and was one of the first scripts
    I learnt back when I had Flash MX 2004. It is really basic but
    still one of my favorites.
    Anyways, I'll assume that you have a movieclip on stage that
    will load in your images. Make sure it has a top left registration
    point. If it doesn't then go into the movieclip and set it's X and
    Y to 0 in the Properties panel. We'll call this movieclip "holder".
    Also you should have a dynamic textbox and some buttons. The script
    has instance names "caption" for the textbox and "pic1" and "pic2"
    for the buttons.
    Open a text editor (Notepad, Textmate) and paste this into it
    caption1=This is the caption for Picture
    1&pic1=pic1.jpg&caption2=This is the caption for picture
    2&pic2=pic2.jpg
    Save it as info.txt in the same folder as the swf file.
    Back in Flash create a new layer called "actions" and copy
    and paste the script at the bottom. Make sure have a folder called
    "images" with your pictures in it. Test your movie.
    If all went well you should see your first image and caption
    and the button should load their captions/pictures.
    Basically all we've done is put variables in an external text
    file and loaded them into Flash. You could have done the same
    within Flash but this way is more flexible as you only need to edit
    the text file if you want to change the caption and picture. Flash
    reads the variables in as a URL encoded string. To add more
    variables to the text you must use the ampersand(&) character
    to seperate variables and their values. e.g
    varA=valueA&varB=valueB
    There is still work to be done on this script like checking
    if the file has loaded and checking for errors but thats pretty
    much the gist of it.
    Hope it helps!

  • Image display: instead of an image, there is a "picture placeholder" icon

    Hello everyone!
    I'm afraid I need some assistance. As I've already indicated in a thread title, I have problems while trying to display an image stored within the database. I read zillion threads here on OTN, searched the Internet, but I can't make it work. More or less, it comes to what Denes Kubicek provided [url http://htmldb.oracle.com/pls/otn/f?p=31517:64:850093673123067]here
    Tools I use are Oracle 10g XE database (10.2.0.1.0) and Application Express (3.2.1.00.10).
    There's a table that contains information about certain products (such as printer toners, cartridges, CD media etc.). This is its description:
    SQL> desc pm_materijal
    Name                          Null?    Type
    ID                            NOT NULL NUMBER
    IDG                                    NUMBER
    SIFRA                                  VARCHAR2(30)
    SIFRA_KRATKA                           VARCHAR2(30)
    MODEL                                  VARCHAR2(30)
    NAZIV                                  VARCHAR2(255)
    NAPOMENA                               VARCHAR2(255)
    FILE_NAME                              VARCHAR2(200)
    MIME_TYPE                              VARCHAR2(255)
    BLOB_CONTENT                           BLOBOne of its records looks like this (other column values are unimportant) (columns are formatted so that they fit a single line):
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50 Now I'd like to attach an image to those CDs.
    In my Apex application, I created an item (on a page 7) whose name is P7_BROWSE (Display as "File Browse") - it is used to browse directories for files (images, actually). In order to support table record updating, I created a Process (Process point: On submit - after computations and validations).
    if :p7_browse is not null then
       update pm_materijal set
         (mime_type, file_name, blob_content) =
         (select
            mime_type, name, blob_content
            from wwv_flow_files
            where name = :p7_browse
         where id = :p7_id;
       delete from wwv_flow_files
         where name = :p7_browse;
    end if;It seems that it works OK, because - once I select an image (it is a JPG file, its size is 116 x 116) and push the "Apply Changes" button - the result is as following:
    SQL> select id, naziv, file_name, dbms_lob.getlength(blob_content) len
      2  from pm_materijal
      3  where id = 64;
            ID NAZIV                FILE_NAME                                    LEN
            64 CD recordable 1/50   F477411270/cd_50_komada.jpg                 2111           My next step was to create a stored procedure which will be used to display images:
    SQL> create or replace procedure image_display (p_id in number)
      2  as
      3    l_mime        varchar2 (255);
      4    l_length      number;
      5    l_file_name   varchar2 (200);
      6    l_blob        blob;
      7  begin
      8    select mime_type,
      9           blob_content,
    10           file_name,
    11           dbms_lob.getlength (blob_content)
    12      into l_mime,
    13           l_blob,
    14           l_file_name,
    15           l_length
    16      from pm_materijal
    17      where id = p_id;
    18
    19     owa_util.mime_header (nvl (l_mime, 'application/octet'), false);
    20     htp.p ('Content-length: ' || l_length);
    21     owa_util.http_header_close;
    22     wpg_docload.download_file (l_blob);
    23  end image_display;
    24  /
    Procedure created.As suggested in a few OTN threads, I did this too (although I don't quite understand WHY, as I created the procedure in a schema I use in Apex; there are no other users involved). Anyway: I thought that it won't do any harm (but it didn't do any good either).
    SQL> grant execute on image_display to public;
    Grant succeeded.
    SQL> create public synonym image_display for radni.image_display;
    Synonym created.Back to Application Express: I created a Reports Region (Type: SQL Query). Its source is :
    select
      id,
      file_name,
      mime_type,
      dbms_lob.getlength(blob_content) len,
      '<img src="#OWNER#.image_display?p_id='
             || NVL (ID, 0)
             || '" height="'
             || 120
             || '" width="'
             || 120
             || '" />' image
    from pm_materijal
    where id = :P7_IDFinally, run the page! Reports region contains a single record which displays information I selected in SQL*Plus (so it seems that query DOES return something, and - I'd say that it is correct), but - instead of an image - there's an "invalid (broken) image" icon (you know, a small white rectangle with a red <font color="red">x</font>).
    I can't figure out what I did wrong. It should work, but it doesn't. Could someone, please, point me to the right direction?
    Regards,
    LF

    Patrick said: specify your schema name instead of the #OWNER# placeholder
    I said: while I was trying to make it work, I used "schema_owner.procedure_name" notation too but that didn't help eitherOracle user name is "RADNI" (the one I used to create objects, I was connected to it in SQL*Plus - all my previous copy/pastes were taken while connected to that user).
    So I tried with
    - <img src="radni.image_display?p_id=...   => didn't work
    - <img src="RADNI.image_display?p_id=...   => didn't work
    - <img src="image_display?p_id=...         => worked
    {code}
    I just started using Application Express so, basically, every day I discover something new. I purchased a book (based on Apex 3.2) so I thought that I'd rather stick to it until I +get a feeling+ and then, hopefully, move on to a higher version.
    By the way, looking forward to see you on HrOUG in two weeks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to generate barcode on button click event in PDF using adobe livecycle?

    I already created form in PDF file which is validate completely .But , I required generate a barcode of all field of form using custom script on button click event.
    Please give me right way for doing it .
    Thanks in Advance,
    Jaydeep Solanki.

    Hi vijay,
    What project are you doing? Is it Asp.Net project? If so, you'll need to post it in the dedicated ASP.Net Forum
    http://forums.asp.net  for more efficient responses, where you can contact ASP.NET experts.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • ALV Grid not displying properly when spool is generated by print button

    Hi All,
    When print button is used to genarate spool of the ALV Grid, then in the spool the end of page content is getting over lapped on the main lines. Please let me know how to display end of page content without geting overlapped on the lines.
    Below is the code which I have written.
    <cut>
    Edit: Please see next post.
    Thanks in Advance!
    Regards,
    Preethi G
    Edited by: Julius Bussche on Feb 14, 2010 9:15 AM

    Hi All,
    Sorry. Please ignore my first post. When print button is used to generate spool then in the spool file the end of page content is getting overlapped on the main lines. Please let me know to solve this.
    Thanks in Advance!
    Below is the code written
    ALV Grid display
    alv_layout-colwidth_optimize = 'X'.
      alv_layout-zebra             = 'X'.
      wa_print_info-no_print_listinfos  = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
            i_grid_title             = ''
            i_callback_pf_status_set = 'FRM_SET_STATUS'
            i_callback_user_command  = 'FRM_USER_COMMAND'
            is_layout                = alv_layout
            it_events                = i_events
            it_fieldcat              = alv_fieldcat
            is_print                 = wa_print_info
          TABLES
            t_outtab                 = it_payroll
          EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
    End of Page and End of list
    IF sy-pagno = 0.
        s_pageno = 1.
      ELSE.
        s_pageno = sy-pagno.
      ENDIF.
      CLEAR: i_list_comments[].
      SKIP.
      SKIP.
      CONCATENATE 'u85AAu8D44u4E13u5458' '________' 'HRSu7ECFu7406' '________' 'u4EBAu529Bu8D44u6E90u603Bu76D1'
    '________'  'u7EE9u6548u8D22u52A1u603Bu76D1' '________' 'u603Bu7ECFu7406' '________'''INTO s_out
      SEPARATED BY space.
      NEW-LINE.
      WRITE AT (sy-linsz) s_out CENTERED.
      SKIP.
      CONCATENATE  s_pageno '-' v_pagsum  'u9875' INTO
       w_list_comments-info SEPARATED BY space.
      NEW-LINE.
      WRITE  AT (sy-linsz) w_list_comments-info CENTERED.
    Edited by: Julius Bussche on Feb 14, 2010 9:16 AM
    Tried to fix formatting a bit.

  • Using user defined text functions to generate strings on button.

    I am new to java programming and am facing a problem.. It would be great if you could help me resolving it..
    The problem is:
    Is it possible to use user defined functions to generate the string on a button(button name)?
    If it is possible please educate me on it..
    Thanks..

    Yes its possible. What you ask is so vague that it can be interpreted in so many ways there are plenty correct answers
    public void userDefinedFunction(String aString)
    yourButton.setText(aString);
    }

  • How change position of picture in sapscript

    hi,everybody
      I use command bitmap to show a picture in sapscript.because the window size and position can't change , but i want change position to center,so,use &logo_left& and &logo_left_unit&, but it doesn't work.can you help me?
    sapscript
    /: define &logo_left&  = 5
    /: define &logo_left_unit& = 'cm'
    /: bitmap xxxxx object graphics id bmap type bmon

    Hi
    I believe you have to create a new window with different position and in the program decide which window has to be printed.
    Max

  • Position of 'call contact' and 'contact info' buttons

    Hi all,
    I've been wondering for a while why the two contacts buttons ('Call' and 'Contact info') appear at the top on the SMS screen... When there's been a long thread of messages it would be nice if these were at the bottom of the thread, as I'm not keen on having to scroll back up to call the contact...
    Is there a way of changing the position of these so they appear at the end of the thread instead? If not, is there a way for users to offer suggestions to Apple?
    Cheers!

    You can scroll right back up to the top in one press by touching the very top of the screen (above the person's name).
    Send suggestions here: http://www.apple.com/feedback/iphone.html

Maybe you are looking for