Display two screens on PDA

i am trying to display two GUI screens on my PDA. I know that PDA module 7.0 does not support Tab control feature. I don't want to create another VI and call it as another screen, because I want to limit my Data processing. Any other ideas?

Although the Tab control was not supported in LabVIEW PDA 7.0, it is supported in LabVIEW PDA 7.1. The tab control is really convenient for PDA because you can pretty much get several screens without having to add code or create subVIs that show their front panel. LabVIEW PDA 7.1 also has a lot of other features and general improvements that make it well worth the upgrade. You can check out some of the new features in the Getting Started with the LabVIEW PDA Module manual.
JR A.

Similar Messages

  • How can I use two screens to display one window

    Before Mavericks, MAC OS allowed you to use two screens (next to each other) in order to display one (big) window of one application.
    That would mean that a window would start on your left screen en would continue on the right screen.
    With Mavericks, however, this not possible any more. The window of the application can only be seen on ONE of the screens (i.e. the left one).
    Can any one tell me whether I've missed certain options or how to adjust my settings in order to get this feature back?

    Hey CGNL,
    First, if you haven't already, set up the displays as an extended desktop:
    Choose Apple menu > System Preferences, click Displays, then click Arrangement.
    Follow the onscreen instructions.
    Then, use Mission Control preferences to uncheck/turn off the option for "Displays have separate Spaces":
    Choose Apple menu > System Preferences, click Mission Control
    Uncheck "Displays have separate Spaces"
    That should enable you to stretch whatever window you want across multiple displays.
    via: OS X Mavericks: Connect multiple displays to your Mac
    http://support.apple.com/kb/PH13814
    and
    OS X Mavericks: Mission Control preferences
    http://support.apple.com/kb/PH13925
    Welcome to Apple Support Communities!
    Have a good one,
    Delgadoh

  • Displaying two pages on a single screen on iPad

    In the desktop version Adobe Reader can display two pages of a document on a single screen within the app. I hope Adobe will bring that feature on iPad which will be available if the iPad is in the landscape mode.

    In the desktop version Adobe Reader can display two pages of a document on a single screen within the app. I hope Adobe will bring that feature on iPad which will be available if the iPad is in the landscape mode.

  • Can we display the selected fields in two screen?

    HI friends i have got a problem where i am have two screen 1000 and 102.
    In 1000 screen i have got 2 push buttons display and cancel
    if i click display by giving emp_id then module and email has to be display for which i have given code as...
    MODULE STATUS_1000 INPUT.
    WHEN 'DISPLAY'.
       SELECT SINGLE NAME EMP_MODULE EMAIL
         FROM ZRIF_TABLE
        INTO (ZRIF_TABLE-NAME, ZRIF_TABLE-EMP_MODULE, ZRIF_TABLE-EMAIL)
        WHERE EMP_ID = ZRIF_TABLE-EMP_ID.
    this code is working according to the requirement
    But the same requirement is there in another screen(102) where if i click emp_id then name emp_module and email has to be displayed but it is not working with the above code.
    Caution is i will be having the same emp_id name and module in the same screen before wht it has displayed.
    To be clear request sent by details like emp_id name module
    request sent to emp_id name and module.
    code in 102 screen..
    CASE SY-UCOMM.
    WHEN 'EXIT'.
    CALL SCREEN 100.
    WHEN 'DISPLAY'.
       SELECT SINGLE NAME EMP_MODULE EMAIL
         FROM ZRIF_TABLE
        INTO (ZRIF_TABLE-NAME, ZRIF_TABLE-EMP_MODULE, ZRIF_TABLE-EMAIL)
        WHERE EMP_ID = ZRIF_TABLE-EMP_ID.
    endcase.
    endmodule.

    you should store data into a global structure (at program level) and display fields from this unique structure on various dynpros
    also this will be better than using the table name as structure name and will avoid to select from a field of the same structure...

  • How to display two grids in same screen using SALV Method

    Hi Freinds,
    Please let me know how to display two grids in same screen using SALV Method.
    Thank you
    Regards,
    SDV

    Using the same concept as described in How to dispaly Three Internal Table  Data (One below another) in ALV OOPS .
    All you need to add is passing your new containers as r_container parementer of factory method.
    "1st one
          cl_salv_table=>factory(
             EXPORTING
               R_CONTAINER    = g_top_container
    "2nd one
          cl_salv_table=>factory(
             EXPORTING
               R_CONTAINER    = g_bottom_container
    Regards
    Marcin

  • Can the iphone 5s display two clocks/time zones on my lock screen?

    Can the iphone 5s display two clocks/time zones on my lock screen?

    Sorry, no.
    If you'd like to see this as a feature, tell Apple:
    http://www.apple.com/feedback/iphone.html

  • Displaying two blocks in a single screen

    Hi all,
    I want to dispaly two screens in a single with as-usual properties.
    Please give your suggestions with steps.
    Thansk in advance,
    Regards,
    Balaaji.

    hi balaji ,
    create a main screen and in which  create two sub screens . like this .
    REPORT ZSUBSCREEN.
    TABLES: USR02,       "Logon data
             SSCRFIELDS.  "FIELDS ON SELECTION SCREENS
    SUBSCREEN 1
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-010.
        SELECT-OPTIONS: USERNAME FOR USR02-BNAME.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN END OF SCREEN 100.
    SUBSCREEN 2
    SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-020.
        SELECT-OPTIONS: LASTLOGI FOR USR02-TRDAT.
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN END OF SCREEN 200.
    SUBSCREEN 3
    SELECTION-SCREEN BEGIN OF SCREEN 300 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-030.
        SELECT-OPTIONS: CLASSTYP FOR USR02-CLASS.
    SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN END OF SCREEN 300.
    STANDARD SELECTION SCREEN FOR SCROLLING LEFT AND RIGHT
    SELECTION-SCREEN: FUNCTION KEY 1,
                       FUNCTION KEY 2.
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK SUB FOR 15 LINES,
                       END OF BLOCK SUB.
    START-OF-SELECTION.
         SELECT * FROM USR02 WHERE BNAME IN USERNAME
                               AND ERDAT IN LASTLOGI
                               AND CLASS IN CLASSTYP.
            WRITE: / 'User ', USR02-BNAME,
                     'Last Login Date ', USR02-TRDAT,
                     'Last Login Time ', USR02-LTIME,
                     'CLASS ', USR02-CLASS.
         ENDSELECT.
    END-OF-SELECTION.
    INITIALIZATION.
    SCREEN ICON LEFT AND RIGHT
       SSCRFIELDS-FUNCTXT_01 = '@0D@'.
       SSCRFIELDS-FUNCTXT_02 = '@0E@'.
       SUB-PROG = SY-REPID.
       SUB-DYNNR = 100.
    AT SELECTION-SCREEN.
       CASE SY-DYNNR.
         WHEN 100.
           IF SSCRFIELDS-UCOMM = 'FC01'.
             SUB-DYNNR = 300.
           ELSEIF SSCRFIELDS-UCOMM = 'FC02'.
             SUB-DYNNR = 200.
           ENDIF.
         WHEN 200.
           IF SSCRFIELDS-UCOMM = 'FC01'.
             SUB-DYNNR = 100.
           ELSEIF SSCRFIELDS-UCOMM = 'FC02'.
             SUB-DYNNR = 300.
           ENDIF.
         WHEN 300.
           IF SSCRFIELDS-UCOMM = 'FC01'.
             SUB-DYNNR = 200.
           ELSEIF SSCRFIELDS-UCOMM = 'FC02'.
             SUB-DYNNR = 100.
           ENDIF.
       ENDCASE.
    regard,
    sandeep patel
    reward point if helpful

  • Cannot display the screen of the macbook on TV. OS is Lion 10.7.2. Connection to the TV is over HDMI cable.  TV shows only the backgroud picture of Lion. Do you have any suggestions for help ?

    Cannot display the screen of my macbook on TV. OS is Lion 10.7.2. The Macbook is connected to the TV is over HDMI cable.  TV shows only the backgroud picture of the Lion OS and reacts even to mission control. Do you have any suggestions for help ?

    You have the display set in Extended Desktop mode. In System Preferences>Display on the MacBook screen there should be an Arrangement tab when you have the MacBook hooked up to the TV and both screens working. When you click the Arrangement tab do you see two monitors side by side? One of them will have a Menu Bar at the top. Just click on the Menu Bar and drag it to the second monitor. That will make the second monitor your main screen. You can now use your MacBook in Clamshell Mode with a wired or Bluetooth keyboard and mouse.  http://support.apple.com/kb/HT3131 When you disconnect from the TV your Menu Bar will automatically change back to the MacBook.
    Or if you want to work on the MacBook screen while showing it on a TV you can check the Mirror Display box on the lower left hand side of the Arrangement tab under the two monitors box.

  • Acrobat Pro XI v.11.0.06 - PDF created by Microstation Print Organizer - Windows 7 -  Printing shaded squares on top of shaded building and not displayed on screen, only displays on paper when printing

    I have attached an image of the sheet to show the areas that are shaded. The building is supposed to be shaded, however the two squares within are not. These squares are not in the file converted to pdf and do not display on screen when viewing the pdf. Also there are several sheets in the set with shaded buildings and only two of the buildings have this issue. Any help with this would be greatly appreciated.

    I'm seeing this same problem happen on multiple platforms here in the office. Every time this happens, the screen view does not show these shapes. I have been seeing the same problem except linework will be missing in one of these square shapes as well. Please give feedback if anyone knows what causes this problem. One thing to note -  these squares are the size and placement of a selection box within acrobat.  For example, if i use the selection tool and click near where the problem printed out, the shaded area that gets selected is in the exact same spot and is the exact size.@

  • One of my two screens stays off after coming from standby - OSx 10.10.2 MacMini

    When 'reviving' my macmini after not using it for a while one of my screens stays black (The screen stays off so there is no contact from the mac). Even after logging in again the screen stays black.
    I can get it to work again by disconnecting both screens and plugging them back in, but that is not a real solution of course. Also, after switching the position of the screens the other screen stays off, so the problem should be in the connection.
    I've got a relatively new MacMini with OSx 10.10.2 and have the two screens (same size but not identical) attached via two 'mini displayport to DVI adapters'.
    Does anyone have any idea what can cause this?

    Hi Snery,
    Welcome to the Apple Support Communities!
    I know you have already started some troubleshooting for this situation where your second monitor is not connecting when you wake your Mac mini from sleep. To continue this troubleshooting process, I would suggest reading over and working through the steps in the attached article to help isolate and resolve this issue. 
    Apple computers: Troubleshooting issues with video on internal or external displays - Apple Support
    Best regards,
    Joe

  • Two screens although there is no second connected

    Hi,
    I recently discovered that my 2008 Mac Pro (connected to a 30" Apple Display, Mountain Lion 10.8.4) shows two screens when I log in with screen sharing. I then tested it on the machine itself and yes, there was a second screen (800x600) in the upper right corner "virtually connected" to my MacPro - although there is just the 30" display physically connected.
    This phenomena reappears even after a restart.
    No, there is no second display connected via AirDisplay or so. When I look into the system profiler there is
    It doesn't bother me but I still want to understand it. And maybe even disable it.
    Any ideas?
    This is a screenshot of the sharing session (the rectangles are inserted by me before uploading, they are not artifacts. Actually is it a screenshot of a movie).
    Thanks in advance for any ideas!
    Andy

    Hi Malcolm,
    yes it is.
    Andy

  • I have a two screen system that reads left to right.  With Yosemite it now reads right to left.  How do I fix it?

    I have a two screen system that read left to right.  With Yosemite the screens have switch and now the mouse and my brain have to read right to left.  Any ideas how to fix this?

    a brody,
    After further scrutiny your solution solved the mouse problem of going left to right.  But now the home screen problem.  Display two on the right still has the dock below and the menu bars.  Any ideas how to fix this?

  • Manage two screens

    Hello,
    I just start to learn java. One of my projects is to create an application that uses two screens.
    Have somebody already done something with this kind of configuration ?
    Some more details :
    On my first screen (monitor) I would like to have the main application and on the second screen (monitor) I would like to have a other window that will display information to a customer.
    So I would like to set the position of the two windows.
    I already try to understand the Window class and GraphicalEnvironment, but I can't get a solution.
    Thanks for you help.
    Bernard

    I hope the following method helps:
    void showFrame(int preferredWidth, int preferredHeight) {
    Toolkit toolkit = getToolkit();
    Dimension dimension = toolkit.getScreenSize();
    // ensure preferred width fits user's monitor
    if (preferredWidth > dimension.width) {
    preferredWidth = dimension.width;
    // ensure preferred height fits user's monitor
    if (preferredHeight > dimension.height) {
    preferredHeight = dimension.height;
    pack();
    setBounds( (dimension.width-preferredWidth)/2,
    (dimension.height-preferredHeight)/3,
    preferredWidth, preferredHeight );
    setVisible(true);
    }

  • How to display two "columns" in combobox?

    Hi,
    I need to display two strings for each row of a combobox. Say string array str1 = {"abc", "aw", "axz12"}, str2 = {"12.1", "33.123", "5.06612"}. Now I want to display them in a combo box as a "table with 2 columns", i.e. when the drop down menu is clicked, it will show something like a table (with or w/o borders)
    abc 12.1
    aw 33.123
    axz12 5.06612
    if the first one is selected, it will show "abc 12.1". I could use jcomboboxA.addItem(str1[i] + " " + str2), but it does not show nicely -- not as a table. Is there any way to do it?
    Thanks!
    Harvey

    Thanks for the answer to the first question. Though if I include the list.setFont() method in the getListCellRendererComponent or in the custom UI i've created, I still get monospaced data.
    As for the second one about getting long data to display correctly
    I already changed the tabstop location from right to left and all data appears fine for most of the elements in the list, but if the text is very long for the second column, the long text values in the 2nd column smash up against the values in the first column. (I wish I could provide a screen print here... a thousand words and all that). Here's what the data looks like in the list:
    aa's really really really really really long description
    x x's description
    y y's description
    zz's really really really really long description
    I've already resized the popup list so there's plenty of room to show the long text. I'll paste the code here so you can see exactly what I've got. I give the combobox 2 string arrays, one for codes & one for descriptions. combo.getText() needs to give JUST the code. The popup window stuff is mostly cut & paste (probably from camikr's other posting), so I'm not sure if the difficulty is there... I cannot profess to understand each line.
    Thanks all, for any input...
    public class CustomComboBox extends JComboBox {
        public int _maxdatawidth = 0;
        private int size;
        public CustomComboBox(Object[] codes, Object[] names) {
            size = codes.length;
            int textlength = 0;
            String data [][] = new String[size][2];
            for (int i = 0; i < size; i++) {
                data[0] = (String) codes[i];
    data[i][1] = (String) names[i];
    if (data[i][1].length() > textlength)
    textlength = data[i][1].length();
    // create a customized model for getting selected item.
    DefaultComboBoxModel model = new DefaultComboBoxModel(data);
    this.setModel(model);
    setRenderer(new TabListRenderer());
    // set the maxwidth for popup size
    FontMetrics fm = this.getFontMetrics(this.getFont());
    // give 20% buffer to make sure the popup is big enough
    _maxdatawidth = Math.round((textlength) * fm.charWidth('W') * 1.20F);
    // select the first item by default
    // must select the item before setting the UI to show the default.
    // ttcp 7/1 trying to select item. >>> NOT working.
    this.getModel().setSelectedItem(data[1]);
    this.getModel().setSelectedItem(data[0]);
    // this.setSelectedItem(data[0]);
    // set the UI
    setUI(new CustomComboBoxUI(this));
    // select the first item by default
    // this.setSelectedItem(data[0]);
    // this.setSelectedIndex(0);
    // this.setSelectedIndex(0);
    public Object getSelectedData() {
    Object loReturn = null;
    loReturn = super.getSelectedItem();
    if (loReturn instanceof Object[]) {
    Object[] selecteddata = (Object[]) loReturn;
    if (selecteddata.length > 0)
    loReturn = selecteddata[0];
    else {
    loReturn = null;
    return loReturn;
    class TabListRenderer extends JTextPane implements ListCellRenderer {
    private static final int TAB_COLUMN = 12;
    private Color background = UIManager.getColor("ComboBox.selectionBackground");
    private Color foreground = UIManager.getColor("ComboBox.selectionForeground");
    // private Font font = UIManager.getFont("List.font");
    TabListRenderer() {
    setMargin(new Insets(0, 0, 0, 0));
    // can't seem to get the font NOT monospaced.
    setFont(new Font("Dialog", Font.PLAIN, 11));
    FontMetrics fm = getFontMetrics(getFont());
    int tabWidth = fm.charWidth('w') * TAB_COLUMN;
    TabStop tab = new TabStop(tabWidth, TabStop.ALIGN_RIGHT, TabStop.LEAD_NONE);
    TabStop[] tabs = new TabStop[1];
    tabs[0] = tab;
    TabSet tabSet = new TabSet(tabs);
    SimpleAttributeSet attributes = new SimpleAttributeSet();
    StyleConstants.setTabSet(attributes, tabSet);
    getStyledDocument().setParagraphAttributes(0, 0, attributes, true);
    setPreferredSize(new Dimension(tabWidth, fm.getHeight()));
    public Component getListCellRendererComponent(
    JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
    String leftData = ((String[]) value)[0];
    String rightData = ((String[]) value)[1];
    setText(leftData + "\t" + rightData);
    setBackground(isSelected ? background : null);
    setForeground(isSelected ? foreground : null);
    return this;
    class CustomComboBoxUI extends MetalComboBoxUI {
    final CustomComboBox _box;
    public CustomComboBoxUI(final CustomComboBox pobox) {
    super();
    _box = pobox;
    protected ComboPopup createPopup() {
    BasicComboPopup popup = new BasicComboPopup(comboBox) {
    public void show() {
    Dimension popupSize = _box.getSize();
    popupSize.setSize(_box._maxdatawidth, getPopupHeightForRowCount(_box.getMaximumRowCount()));
    Rectangle popupBounds = computePopupBounds(_box.getX(), comboBox.getBounds().height, popupSize.width, popupSize.height);
    scroller.setMaximumSize(popupBounds.getSize());
    scroller.setPreferredSize(popupBounds.getSize());
    scroller.setMinimumSize(popupBounds.getSize());
    list.invalidate();
    int selectedIndex = comboBox.getSelectedIndex();
    if (selectedIndex == -1) {
    list.clearSelection();
    } else {
    list.setSelectedIndex(selectedIndex);
    list.ensureIndexIsVisible(list.getSelectedIndex());
    setLightWeightPopupEnabled(comboBox.isLightWeightPopupEnabled());
    show(comboBox, popupBounds.x, popupBounds.y);
    popup.getAccessibleContext().setAccessibleParent(comboBox);
    return popup;

  • How to display two different hierarchical sequential lists in one o/p scree

    Hi Gurus,
    I have a requirement for displaying two hierarchical lists in one output screen. I have created my hierarchical sequential lists using
    function module : - 'REUSE_ALV_HIERSEQ_LIST_DISPLAY', but i dont know how to append my second hierarchical sequential list
    into this.
    Will it be easily possible through OO ABAP where i will have two containers at the screen and each container will display one hierarchical sequential list at the output screen. But i have no idea how to do this through OO ABAP.
    Please help...
    Thanks,
    Bhupender

    i want to display the records corresponding to the user details enterd
    in Text Fields in the same Frame by replacintg the previous display..1) Quit multi-posting.
    2) You where given an answer in your last posting on the topic.
    3) The code isn't formatted so don't expect us to read the code.

Maybe you are looking for

  • Page Thumbnails not displaying in Pages Panel

    Hi all, Hopefully a quick question...I've searched through the Forum and not spotted a similar issue. I have a user who is experiencing an unusual issue in InDesign CS6 - Page Thumbnails aren't displaying in the Pages Panel (such that the panel is co

  • Profit Center is not picking in F-29

    Hi Experts, Please let me know what could be the reason for not picking the Profit Center in F-29. Profit center is picking in case of F-48 but not in F-29.. New GL configuration is in place. Please let me know is there any other derivation method fo

  • Free Music with iTunes

    I just got an iPod and was informed that you can get free music from iTunes on Tuesdays or with special offers. How do I get the free music? Is there a special place you have to go on the iTunes site?

  • How to display cost center decription

    Hi I'm working with EBP. I want to display in the template SAPLBBP_SC_UI_ITS_120 the cost center description. I found that this field is KTEXT in the table CSKT in R3 system. I also found in EBP a structure called CSKS_HR with the field SHORTNAME. We

  • Triggering a workflow from a adobe interactive form...

    Hi, I am new to SAP. I hv to ceate a adobe form for creating CREDIT MEMO REQUEST... on filling the data and submitting, it should trigger a workflow, in which, the approver may approve or reject.. if it is approved it should be updated in the databas