TableControls, icons and fuction codes

Hi everybody and thanks in advance.
I have a problem with my table control.
I have a table control with five fields, one of them is colled note, and is a char of 4 characters.
I assigned to this field an icon with this code:
    move '@0J@' to tab_s9035-nota.
My problem is I want to assign a function code as 'NOTE' for instance, because I want to get in the PAI the code when the user do click on the icon.
But instead of that, I obtain a message like this: 'choose a valid function'.
Can anybody help me?
Thank you for your time.

Thank you for your answer, Sreenivasulu.
But I have just created my table control and I have a manual about this control.
Maybe I am not saying what I want to ask.
My problem is when the user do click on the icon, no event is fired because the icon has not a function code assigned. I can not assign this function code in design mode, with the screen painter. I would like to find out wich is the trick I have to use to assign the function code to the icon in order to fired the even PAI when the user do click on the button.
Thank you for your time.
> Hai David
>
> Go through the following Documents
>
> 1) Screen tables
> A table can be created in transaction. These tables,
> when designed on the screen are called as SCREEN
> TABLES.
>
> These are of two types.
> Table Controls and Step loops
>
> These tables are treated as Loops.
>
>
> 2)Features of Table Controls
>
> Data is displayed in the form of table.
> Table control gives user the feeling of an actual
> table.
> You can scroll through the table vertically as well
> as horizontally.
> You can select rows and columns.
> You can resize the with of columns.
> You can have separator lines between rows and
> columns.
> Automatic resizing of the table when the user resizes
> the window.
> You can update information in the table control and
> it can be updated in the database table by writing
> code for it.
>
> 3)Steps for creating table control
>
> Declaration of table control in module pool program.
>
> Designing of table controls on the screen.
> Passing data to table control in flow logic.
>
> 4)Declaration of TC in MPP
>
> syntax:
>
> controls <name of table control> type tableview using
> screen <‘screen no.’>.
>      
> 5)Designing Table control on screen
>
> Click on Table in Control bar and place it on the
> screen. You can adjust the length and width of the
> Table Control.
> Name the table control.(same name as given in data
> declaration).
> From dictionary object OR from program fields select
> the fields and place them in the table control
>
> 6)Passing data to table control
>
> Usually transfer of data from program to screen is
> automatic.
> In case of TC, you need to explicitly transfer the
> data to table control.
> ABAP/4 provides Loop statement, which is associated
> with flow logic to transfer the data.
>
> 7)Passing of data contd.
> PBO.
> Loop at <name of internal table> with control <name
> of table control> cursor <scroll variable>.
> module…….
> Endloop.
> PAI.
> Loop at < name of internal table>.Endloop.
>
> 8)Scroll variables
>
> Top_line : the row of table where the screen display
> starts.
>
> Current_line : the row currently being processed
> inside a loop.
>
> 9)Transfer of data from prg to TC.
> With ‘Loop at …’ statement, the first row is placed
> in the header of internal table.
>
> If any module is specified between Loop and End loop,
> it will be executed. In this module, generally we
> will be assigning this internal table fields to table
> control screen fields.
>
> The row in internal table is transferred to the TC as
> stated in the ‘Loop at…..’ statement.
>
> The system encounters the ‘Endloop’ statement and
> control is passed back to the next line of internal
> table.
>
> In the same way all the records of the internal table
> are passed to the TC.
>
>
> Thanks & regards
> Sreenivasulu P

Similar Messages

  • Pf status and function codes

    Hi,
    I have a report where in i have to add a new icon with a tick symbol along with the existing execute icon ie f8.I have copied the status of the program into another before adding the new icon and to that i have added the new icon and function code.
    i have used set pf-status in the initialisation event.Now when i give the select options and press f8 it enters into the program but sy-ucomm is still empty and does not do the desired functionality.If i click the icon for test run it does not enter the program itself.Can anyone help me out on this.
    The status is activated in se41.
    Points will be rewarded.
    Please help.
    Regards,
    Sowmya.

    hi,
    just try like that used in the report: demo_list_at_user_command
    like:
    START-OF-SELECTION.
      WRITE: 'Basic List',
           / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
      WRITE 'Top-of-Page'.
      ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
      CASE sy-pfkey.
        WHEN 'TEST'.
          WRITE 'Self-defined GUI for Function Codes'.
          ULINE.
      ENDCASE.
    AT LINE-SELECTION.
      SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
      PERFORM out.
      sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'FC1'.
          PERFORM out.
          WRITE / 'Button FUN 1 was pressed'.
        WHEN 'FC2'.
          PERFORM out.
          WRITE / 'Button FUN 2 was pressed'.
        WHEN 'FC3'.
          PERFORM out.
          WRITE / 'Button FUN 3 was pressed'.
        WHEN 'FC4'.
          PERFORM out.
          WRITE / 'Button FUN 4 was pressed'.
        WHEN 'FC5'.
          PERFORM out.
          WRITE / 'Button FUN 5 was pressed'.
      ENDCASE.
      sy-lsind = sy-lsind - 1.
    FORM out.
      WRITE: 'Secondary List',
           / 'SY-LSIND:', sy-lsind,
           / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards,
    Renjith Michael.

  • All Icons and their function codes

    Hi all!
    How can we find all the available icons and their related function codes? I have watched PRINT icon having different function codes in different ALV reports.
    Edited by: Jayasri P. on Jan 7, 2008 12:44 PM

    Hello.
    In order to use them in the GUI status of your ALV do the following:
    go copy the status "STANDARD_FULLSCREEN" of the program "SPLKKBL" to your program and change it.
    If you go to your own status now, under "Application Toolbar", you can define there your own function codes and use them in your code. As far as the icon is concerned, when you will first set the function code, the system will pop-up a screen in which you can define the icon you want to assign to that function code. You just have to do an F4 on the respective field of the pop-up and a new pop-up will show you all the available standard icons of the system that are available for use in your own GUI status. There, the name of each icon (for example, ICON_OKAY, or ICON_CANCEL etc) can be used to display icons in standard ABAP lists. In this case you have to add in your report the following line
    TYPE-POOLS: ICON.
    and then write something like this:
    write:/ icon_okay as icon.
    Reward please if it help.
    Regards,
    George

  • How do I set an icon and type for my own extension?

    Hello everybody
    I would like to be able to give a particular icon to a file type that my program will generate and set it to always open in a particular program.
    For instance, my program might generate a settings file called myProgram.prefs - so I'd like all .prefs files to have a particular icon and to open up in notepad when double clicked.
    Looking on the various forums I guess I should be able to do this with just a few lines of code but I can't work it out! Can anyone help please?
    Many thanks
    Rich

    Thank you for your input guys - but no, that really isn't what I was after. I say 'was' because I've done some more searching and experimenting and achieved what I wanted:
    Public Sub CreateDefaultIconAssociation(ByVal APP_EXTENSION As String, ByVal PROG_ID As String, ByVal FILE_DESCRIPTION As String, ByVal ICON_PATH As String)
    ' Check To See If Extension Exists. Create New Keys If It Doesn't
    If Registry.CurrentUser.OpenSubKey("Software\Classes\" & APP_EXTENSION, True) Is Nothing Then
    ' Create The Extension Key
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & APP_EXTENSION).SetValue("", PROG_ID, Microsoft.Win32.RegistryValueKind.String)
    ' Create The PROG_ID Key and File Description Value
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID).SetValue("", FILE_DESCRIPTION)
    ' Create DefaultIcon And Set Default String To Icon File
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\DefaultIcon").SetValue("", ICON_PATH)
    ' Create command to open files in notepad - the %1 is necessary otherwise just an empty notepad will be opened
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\shell").SetValue("", "")
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\shell\open").SetValue("", "")
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\shell\open\command").SetValue("", """" & Environment.SystemDirectory & "\notepad.exe"" ""%1""")
    End If
    End Sub
    Public Sub RemoveDefaultIconAssociation(ByVal APP_EXTENSION As String, ByVal PROG_ID As String)
    ' Remove Extension Key
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & APP_EXTENSION, False)
    ' Remove DefaultIconKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\DefaultIcon", False)
    ' Remove commandKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\shell\open\command", False)
    ' Remove openKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\shell\open", False)
    ' Remove shellKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\shell", False)
    ' Remove PROG_ID Key
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID, False)
    End Sub
    These can be called with:
    CreateDefaultIconAssociation(".test", "my.progid", "my description", "my icon path")
    RemoveDefaultIconAssociation(".test", "my.progid")
    Thanks
    Rich

  • Premiere Elements 13 won't launch in Windows 8.1 (Click the icon and nothing happens)

    I'm running the trial version of Premiere Elements 13 on Windows 8.1 64-bit. It's a brand new PC built for video editing. Everything worked perfectly for about a week and all of a sudden I'm unable to start the program. I click the icon and nothing happens. No splash screen, no error code, no spinning circle cursor.
    I have the latest video card drivers for my graphics card.
    I've tried uninstalling the program, removed every last Adobe file from my PC, uninstalled all instances of Microsoft Visual C++ and reinstalled Adobe Premiere Elements 13. I tried the same with a fresh download of the program. Neither worked.
    I've tried installing a couple .dll files based on a similar thread (where a program called iLivid was the issue). I don't have iLivid on this PC and adding the new drivers didn't work.
    For the few days that the software was working I loved it and was ready to purchase. Unfortunately I won't be able to buy it until I can get it to launch on my PC. Any help would be greatly appreciated.
    Thanks!

    celebornx
    My major problem was with the reliability of the uninstall reinstall of Premiere Elements 12 Windows. I did not encounter any issues in this regard with 11. And, I have only looked at the 30 day tryout of 13 from Adobe. My computers are Windows XP 32 bit, Windows 7 64 bit, Windows 8 and later 8.1 64 bit. The following describes what got me through the worse of these hassels.
    http://www.atr935.blogspot.com/2014/04/pe12-premiere-elements-12-editor-will.html
    http://www.atr935.blogspot.com/2014/04/pe12-sign-in-failure-connect-to.html
    I am not sure if the above will work for you with 13. But, it would be worthwhile to check them out.
    Since you are dealing with current version 13, it might be a good idea to get Adobe via its Adobe Chat involved, with the hope of some remote control of your computer troubleshooting to try to get to the core of the issue. Chat Panels have been hard to come by for some of these issues, but let us try this route.
    Please click on the following link
    Contact Customer Care
    Premiere Elements
    Adobe ID and signing in
    Adobe ID, sign in, and account help
    Chat Panel
    If the link does not hold its set, then you will need to navigate to the Chat Panel using the above titles as guides.
    Depending on the outcome....if you purchased Premiere Elements 13 from Adobe direct within the last 30 days, you can request your
    money back from Adobe. If you purchased elsewhere, then you are left to deal with the return policy of the seller.
    We will be watching for further developments.
    ATR

  • How do you make an array of image icons and then call them?

    How do you make an array of image icons and then call them, i have searched all over the internet for making an array of icons, but i have
    found nothing. Below is my attempt at making an array of icons, but i cant seem to make it work. Basically, i want the image to match the value of the roll of the dice (rollVal)
    Any help would be greatly appreciated, some code or link to tuturial, ect.
    /** DiceRoller.java
    * Roll, print, Gui
    import javax.swing.*;
    public class DiceRoller extends JFrame
         private ImageIcon[] image  ;
         public String[] images = { "empty", "dice1.jpg",
                   "dice2.jpg", "dice3.jpg", "dice4.jpg",
                   "dice5.jpg", "dice6.jpg" };
         public Dice die;
         private int rollVal;
         public int rollNum;
         private JLabel j1;
         public DiceRoller(){
              j1= new JLabel("");
           die =new Dice();
           int rollVal;
           rollVal = die.roll();     
           image = new  ImageIcon[images.length];
         for(int i = 0; i < images.length; i++){
          image[i] = new ImageIcon(images);
         if (image!=null){
              j1.setIcon(image[rollVal]);
         System.out.println("Roll = "+die.roll());

    Demo:
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class IconExample {
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    launch();
        static void launch() {
            try {
                Icon[] icons = new Icon[6];
                for(int i=0; i<icons.length; ++i) {
                    String url = "http://www.eureka-puzzle.be/cast/images/dice" + (i + 1) + ".jpg";
                    icons[i] = new ImageIcon(new URL(url));
                display(icons);
            } catch (MalformedURLException e) {
                throw new RuntimeException(e);
        static void display(Icon[] icons) {
            JPanel cp = new JPanel();
            for(Icon icon : icons) {
                cp.add(new JLabel(icon));
            JFrame f = new JFrame();
            f.setContentPane(cp);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }

  • OS X and classic creator and type codes

    Is there anyway, within the native os to change type and creator codes?
    Why would I want to? Here's an example:
    I get a .zip from a customer. Because I have Stuffit installed it takes ownership of the archive. That would be fine except I've noticed different results using stuffit vs. BomaArchive helper. As in they don't unzip with the same amount of files.
    I used to use Super Get info to change them, but that's not a possiblity now. And if Apple didn't hide Boma so deep in the OS I might be able to just make an alias and drop them on it. Won't find on a search for "Boma", both visible and invisible.
    Thanks for any help. I'm just trying to find another way to make my OS do what I want it to, not what some app develper or OS creator deems should happen.
    Remember... think different?

    You can easily change any document's default application by selecting the document icon, press COMMAND-I to open the Get Info window. In the section labeled Open With select the desired default app from the drop down menu. If you want all similar documents opened by the default app, then click on the Change All button.
    Alternatively download the freeware preference pane RCDefaultApp from www.versiontracker.com.
    BTW, not pointing a finger at you, but keep in mind that even morons "think different."
    Thanks for your ideas, and more, thanks for the jab at the slogan Apple used to use to differentiate itself, and it's consumers from other, less user friendly OS's.
    But your solution doesn't help me. I'm well aware of changing the assigned app through the get info window, and that there are other utilities as, if not more adept at this function. My problem is that, if I have to solve my problem this way, instead of gaining knowledge about what effect type and creator codes have in OS X and how to change and deal with them, I find it hard to impossible to track down the location of the app BomaArchiveHelper. It never appears in the "Open with" pop up, and therefore I need to know the location in order to navigate to it to tell OS X to use it. And being that I see different results when unzipping depending on which app was used to create the zip, I don't want to set it as default.
    So, my questions stand.
    How do you view and alter type and creator codes in OS X, and where exactly is BomaArchiveHelper located.
    G4 MDD Dual 1.25 Mac OS X (10.3.9)

  • Icons and check boxes in report output ?

    i want to display output with icons, and symbols (like Telephone) and check boxes in output of a report ?
    how pzzz anybody send the example ?

    Hi,
    We can use in alv output icons and check boxes
             ICON(1)        TYPE C,        " as icon
             SYMBOL(1)      TYPE C,        " as symbol
             CHECKBOX(1)    TYPE C,        " as checkbox
    in field catolog we can use these fields and you have to assign like remaing fields how you are using like that only.  If you know Icon function code or symbol you put there,  I think it may works.  
    Thanks
    Ganesh

  • Cannot return to message list while in a message without clicking on "compose new message icon" and then cancelling it.

    After updating to 8.1 from 8 i cannot return to my message list from inside a message without clicking on the "compose new message" icon and then canceling out of that.
    Also, where it used to say return, it now says "Edit" and the word "Message" on the top of the screens is scruched together.
    Here is a link to a screenshot of my phone from the main messages listing.
    And here is a link to a screen shot of my phone from within a message.

    Hi Sir,
    Code snippet for reference:
    Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean)Handles OutlookApplication.ItemSend
    Try
       Dim SentMailItemObject As Outlook.MailItem
    SentMailItemObject = CType(Item,
    Outlook.MailItem)
    ‘Can
    we add here User property in Mail Object Reference?
     Catch ex As Exception
    MsgBox(ex.Message, MsgBoxStyle.Information)
     End Try
    End
    Sub

  • Video thumbs became icons and won't play in preview of Bridge

    I started a new project in Premiere Pro 6.  I'm not sure if it is relevant, but one thing I did differently on a new project was change the DV to HDV, the only time I've done that.
    Then when I was importing by dragging from CS6 Bridge a bunch of videos, it looked like they were disappearing, or being moved instead of copied, so I terminated and started over.  But after that some thumbnails switched icons and won't play in CS6 preview, though they do when clicked to open in media player.
    I think when I finished the video and was starting to export, that a window came up and said dynamic link fail or something.  I'd never seen before. Back in CS6, I went to a backup disk and copied the video files that here had thumbs, and copied to the folder with the icons.  They had the same number code, but had text in front on the originals.  Once I compared to make sure all thumbs and icons were represented, I deleted the icons, and then renamed the thumbs according to my current naming system, so they were just like the replaced ones.
    I had exported to queue, and now ran the queue.  I got the dynamic link error again, and when I looked back in CS6, the replaced thumbs had become icons like before.  Since I still had the window with the other backup disk open, I copied those.  But this time, even though they lacked the text in front of them, they arrived as icons instead of thumbs also. I thinkperhaps it is because PP can recognize that they are the same files even though they have different name.  Because when I have changed the names of files that are already in a video sequence, and PP asks where the file is, and I indicate the file, it accepts it with the new name, though the old one still shows in the sequence, and doesn't need to be redone when reopened. 
    The icons, when in PP do play as normal and the export went normally.  But  the icons won't play in the Bridge preview, and now it seems I can't get back thumbs at all.

    Have you tried the Bridge forum?
    Bridge General Discussion

  • How to create the ICONS and SYMBOLS

    how to create the ICONS and SYMBOLS
    Title was edited by:
            Alvaro Tejada Galindo

    HI,
    Check this sample code....Not mine...
    REPORT SHOW_ICONS.
    TABLES: ICON.
    INCLUDE <ICON>.
    FIELD-SYMBOLS: <F>.
    SELECT * FROM ICON.
       ASSIGN (ICON-NAME) TO <F>.
       WRITE:   /(5) <F>, 20 '@',21 ICON-ID+1(2),23 '@',ICON-OLENG,
                ICON-BUTTON,ICON-STATUS,ICON-MESSAGE,ICON-FUNCTION,
                ICON-NAME.
    ENDSELECT.
    Also Try this,
    INCLUDE <symbol>.
    INCLUDE <icon>.
    Write:/ 'Phone Symbol:', SYM_PHONE AS SYMBOL.
    SKIP.
    WRITE: / 'Alarm Icon: ', icon_alarm AS ICON.
    For more information check out the following link it will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9e4a35c111d1829f0000e829fbfe/content.htm
    Regards,
    Padmam.

  • An issue with DigitalColor Meter and HTML codes

    First off, I apologize if this is in the wrong area; it seemed to be the one most closely related i could find.
    I've been using the Mac's DigitalColor Meter program for ages now to grab color codes for my web design work. Until recently, it was fine; find the color you need, shift-command copy it, then paste it into the HTML source code as appropriate. Simple as pie.
    Roughly a month or two ago, however, I realized I was having issue with it. I could still copy-and-paste the hex code as normal, but suddenly it wasn't showing up correctly when viewed in soem browser, but fine in others. After a lot of hair-wringing and experimentation, I discovered that (presumably) something had changed with the way DCM copied/pasted its hex code.
    When I paste the code, it is inserting invisible characters after each pair of letters. It took me forever just to figure this out, as they were, well, invisible. I couldn't see them in my text editor, but when I used the arrow keys to move along the hex code as pasted, it would pause appropriately each time I got to those points. A friend of mine looked at the code in his (PC-based) text editor, and clearly saw the extra characters, altho it doesn't show up in any of my mac-based ones.
    What he saw: "#ab cd ef "
    What I see: "#abcdef"
    This is, as best I can tell, a recent development, and I'm not sure what prompted the change? Since different browser are interpreting the 'invisible' characters differently, it's causing me to have to manually type in the hex code after finding it in DCM to ensure no extra characters sneak in. Not a big deal, but annoying nonetheless.
    Any ideas out there as to why this has started happening? Any way to correct it? DCM was a staple of my web-working tools, and it's disheartening to have to handle things in the current way.

    Unfortunately it seems that this issue is a "feature not a bug". In tiger it used to work fine: you could paste into photoshop or a css file and it would work. It got changed in Leopard because Apple engineering decided that it was better coding practice to treat each hex value as "word" thus delineating it with these infuriating invisible characters. If you copy and paste into BBEdit on leopard and tiger machines you will see the difference.
    There might be a way to make an automator action that can strip these characters out when pasting. Another option includes using the less graceful (though you can manipulate the colours further after selecting) built-in color chooser and the HexColorPicker extension to it (google for download). You can write a script and save as an application to run the apple colour chooser as a stand alone.
    Open script editor and type: choose color
    Save as app, add nice icon and that's it.
    Xscope looks a bit overboard for my taste, plus its mo' money! Better invested into Pathfinder or something.

  • Disable the Dynamic Selection Icon from T.Code FBL1N

    Hi,
    I want to disable the Dynamic Selection Icon from T.Code FBL1N...
    Please Note that i found a link where some code is given for this problem.
    Remove the dynamic selection screen.......
    Please tell me where i paste that code....after initialization or where....
    Thanks...
    Edited by: Prince Kumar on May 16, 2009 8:59 AM

    Hi,
    1) COPY the program RFITEMAP and create a ZRFITEMAP
    2) and added this code in the INITILIZATION event. You can search ZRFITEMAP with INITIALIZATION and add below code there.
      INTIALIZATION.
      DATA: t_exclude TYPE STANDARD TABLE OF sypfkey.
      APPEND 'DYNS' TO t_exclude.
      "DYNS is the dynamic selection screen function code.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
        EXPORTING
          p_status        = sy-pfkey
        TABLES
          p_exclude       = t_exclude
    Regards
    Shital

  • ViewStack's TabBar: vertical position icon and description

    Hello everyone,
    I created a ViewStack with two tabs and I quote, in addition to the description, even an icon. The code is as follows:
    <mx:ViewStack id="viewstack" creationPolicy="all" left="0" right="0>
    <mx:Canvas label="Tab 1" icon="@Embed('icon1.png')" id="tab_1">
                                <! - Any elements ->
                   </ Mx: Canvas>
    <mx:Canvas label="Tab 2" icon="@Embed('icon2.png')" id="tab_2">
                                <! - Any elements ->
                    </ Mx: Canvas>
    </ Mx: ViewStack>
    In this way, the icon is placed next to the description of the tab, precisely on the left. I would rather that the icon is located above description, but I do not know how. I tried to set the vertical layaout the Application tag, but obviously I will change the entire layout.
    You can determine the position of the icon, or do I create a custom component for use in ViewStack Canvas?
    Thank you so much aid.

    This was for mx:ButtonBar (because I apparently didn't read your question very closely), but it should also work for MX TabBar with a bit of tweaking (like extending Tab instead of ButtonBarButton):
    http://blog.flexexamples.com/2010/11/09/changing-the-label-placement-on-an-mx-buttonbar-co ntrol-in-flex-redux/
    Peter

  • Need Of SDK and Sample codes

    I'm in need of SDK and sample codes to connect my HP Deskjet 3525 Printer from my own application (Android). Any help from your side???
    This question was solved.
    View Solution.

    Hi Yokesh,
    I would suggest you post your question on Android Forums. HP supports printing from Cloud Print,  Eprint and a few others but we would not have any support options for an app you have created. Maybe you could contact the platform company for assistance. For example if you were using Apps maker store you could contact them.
    Best of luck.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

Maybe you are looking for

  • MacBook Pro can't connect to iPod via wireless

    Hi, I have a fresh installed Mac OS X 10.5.5 on my new MacBook Pro. Nothing was installed on it! no firewall, nothing! But i can't get connection to my iPod touch 2g. I can see my iPod via bonjour, it has an IP, but i can't successful ping it. When i

  • IPad vs Mac book air

    Do you need both?

  • Document to pdf conversion

    can any body help me how to convert word document to pdf

  • Stored Procedure in MySql 5.0

    Hello, I want to create a stored procedure in Mysql5.0 that want to return a ResultSet(that is a select statemet returining multiple values).How can I write this.Can any body provide a sample code to me. I want to read that Result set values in my ja

  • Marketing Organisation in CRM 4.0

    Hi All, As we are aware in CRM 4.0 there is no scope for maintaining Marketing Structure - then how can we could map Marketing Organisation and its Attributes in CRM 4.0 while implementation. Needed valueable inputs. Regards, Amrita