Publising front panels of not visible subvis on the web

High
my main program has tab object with 10 pages. Within the main program there are several subvis whose front panels i want to publish on the web.
The front panels of these subvis are not visible in the main program.  Front panels of some subvis are displayed correctly in browser (IE, Firefox) but some not.
Fields of the object are empty or their fields are not refresh with new data (att. pict " array indicators").
The problem is worse if not visible subvi contains chart object. In the browser window data are moved out of the chart window (att. pict. "chart within...").
For monitoring front panels of the subvis i use MONITOR mode of the LabVIEW web server.
Any idea, hints or simple example is welcome.
Thanks and regards
Trajan
Attachments:
chart within the browser2.jpg ‏16 KB
three array indicators2.jpg ‏5 KB

Duplicate post!
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • Content OF  Panel Is Not Visible. Need Help

    Hi Guys,
    Can someone tell me why the contents of the "VisPanel" (JPanel) class is not showing up in the main window. I just don't understand why it is not visible after i add it to the main window.
    Here is the code. You can test it. Only the button shows up. The contents of "VisPanel" class is not visible.
    Replace the images in the "VisPanel" class with any image of your choice. I made them 130 X 130. I would have like to add the images in the post but i don't think it is possible to add images to post in this forum.
    public class TilesImage extends JFrame{
         private static final long serialVersionUID = 1L;
         public TilesImage(){
                this.setLayout(new GridLayout(2,1));
                this.setSize(600,600);
                this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                VisPanel vis = new VisPanel();
                JPanel pana = new JPanel();
                pana.add(vis);
                BufferedImage sub = vis.getImg().getSubimage(261, 260, 129, 129);
               JButton but = new JButton(new ImageIcon(sub));
               pana.add(but);
               this.add(pana);
               this.setContentPane(pana);
               this.setVisible(true);
               repaint();
           public static void main( String[] args ) {
                 new TilesImage();
                 //new VisPanel();
    class VisPanel extends JPanel{
          private static final int IMAGE_TYPE = BufferedImage.TYPE_INT_ARGB;
           private BufferedImage img;
          public VisPanel() {
                 // here you should create a compatible BufferedImage
                 //img = new BufferedImage( 450, 350, IMAGE_TYPE ); 
                 img = new BufferedImage( 525, 500, IMAGE_TYPE );
                     this.setSize(img.getWidth(), img.getHeight());    
                 final int NB_TILES = 4;
                 BufferedImage[] tiles = new BufferedImage[NB_TILES];
                 tiles[0] = createHorizontalRail( new Color( 255, 255, 255 ) );
                 tiles[1] = createVerticalRail( new Color( 255, 255, 255 ) );
                 tiles[2] = createCrossing( new Color( 255,   0, 255 ) );
                 final int[][] map = new int[][] {
                             {4, 4, 1},    
                               {4, 4, 1},
                               {0, 0, 2},
                               {4, 4, 4}, 
                 for (int i = 0; i < map[0].length; i++) {
                       BufferedImage tile = null;
                     for (int j = 0; j < map.length; j++) {
                          if(map[j] == 0){
                   tile = tiles[0];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
                   //img.setRGB( x + i * 45, y + j * 32, tile.getRGB(x,y) );
              } if(map[j][i] == 1){
                   tile = tiles[1];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
              if(map[j][i] == 2){
                   tile = tiles[2];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
         this.setVisible( true );
         private BufferedImage createHorizontalRail( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/crossingsHorizontal.JPG"));
         } catch (IOException e) {
         return img;
         private BufferedImage createVerticalRail( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/crossingsVertical2.JPG"));
         } catch (IOException e) {
         return img;
         private BufferedImage createCrossing( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/railCrossing2.JPG"));
         } catch (IOException e) {
         return img;
         public void paintComponent(Graphics g) {
         g.drawImage(img, 0, 0, null);
              public BufferedImage getImg() {
                   return img;
              public void setImg(BufferedImage img) {
                   this.img = img;
    Thanks for your help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    kap wrote:
    The "pana" panel must contain both the contents of the "VisPanel" panel and the button i created. So it is correct to set the contenPane to the "pana" panel. I tried to set the content pane to the "VisPanel" panel. It is visible but the button i added to the "pana" panel cannot be visible.
    I hope you understand what i mean here.He understands exactly what you mean and has pointed out your mistake and offered a decent solution. I suggest you take his advice and set the layout of pana not the JFrame.

  • When the screen saver turns off my front panel does not refresh.

    when the screen saver turns off my front panel does not refresh. If I use the show desktop button sometimes I can not maximize my vi by just clicking on it from the start bar.

    I utilize both a screen saver and the show desktop feature but have never seen this problem in the past. You might play around with your screen saver settings to see if they have any affect. You might also try another computer just to make sure something larger scale isn't going on. Also, testing with other programs to make sure it isn't a general OS issue is always a good idea. Other possibilities include changing your Video Driver settings, updating your video driver, and uninstalling - reinstalling.

  • Front panel sound not working

    Front panel sound not working* Hello everyone,
    I've just bought a PCI Express X-Fi Titanium. So far everything works great with my 5. sound system, but I have problems with my front panel audio.
    My case only supports AC97 front panel audio, but has all individual connectors (so 7 single connectors, not one with 0 pins).
    I've already tried only connecting 5 pins (the two AC97 return pins unconnected) and connecting all 7 pins. In both ways the microphone works, but sadly not the headphone output. I also tried changing the two options in the driver but that changed nothing.
    I did some Google searching and found many reports where the sound itself works with an AC97 front panel on an HD soundcard, just no jack detection.
    Any ideas why that isn't working for me?

    ! Try here for pinouts of your jacks. I have a Cooler Master case that has AC97 and INTEL HD front panel jacks, but here is the kicker. The AC97 jacks come from the front panel first and then about fi've inches from this jack is an INTEL HD jack. A few wires are changed but perhaps these will help...
    http://www.intel.com/support/motherboards/desktop/sb/CS-0585.htm
    Cheers,
    Jerry Macguire

  • K9N2G Neo Front panel audio not working

    I have plugged in various cases and i/o bays into the audio connector on this mb and NONE of them work. Yes I have tried the "disable detection" option with no luck. I am currently trying to use a silverstone fp32 i/o bay that definately supports hd audio but it still doesn't work. I made no wiring mistake as it was a plug and not seperate wires.
    http://www.silverstonetek.com/products/p_contents.php?pno=fp32
    What do I have to do to get front panel audio that was promised with this board?
    edit: you know I have NEVER had trouble with AC97 yet I have NEVER gotten HD audio to work properly EVER

    It doesn't follow AC97. But it is a Realtec chip, and they often run into problems. For example they'd like their drivers installed while in SafeMode.
    Where exactly did the problem come up? Is the HD controller enabled, (BIOS)?
    Is this relevant, stolen from the Englizsch only manual:
    "When you are playing the first audio source (for example: use Windows Media
    Player to play DVD/VCD), the output will be played from the rear panel, which is the
    default setting.
    Then you must to select the Realtek HD Audio front output from the scroll list
    first, and use a different program to play the second audio source (for example: use
    Winamp to play MP3 files). You will find that the second audio source (MP3 music) will
    come out from the Line-Out audio jack of Front Panel."
    Off: Think this is the first time this board come before my eyes in this forum.

  • Running executable as a service, the front panel doesn't display properly upon the second logon.

    I am running a LabView executable as a service.  When I logon the first time, I see the front panel correctly.  When I logoff, the service still runs properly.  If I logon a second time, the frontpanel never fills in.  (I see the desktop through the front panel).  The service still runs, but when I click on any menu, the computer freezes.  Any suggestions?  (Other than not logging on twice)

    Hi chach,
    I hate to say it, but I'm surprised it even runs once.  If you check out:
    this link
    It says the following:
    "The service must run without a user interface."
    As the article mentions, you could still have a separate front panel that communicates with the service, but the service itself probably doesn't have an accessible front panel.
    Joe Z.

  • I own a ipad mini and a iPod touch , both configured on the same apple account, how do I ensure that my data on the ipad mail,notes,pics etc is not visible/accessible on the ipod

    I own a ipad mini and a iPod touch both configured on the same id
    How do I ensure that my data on the ipad mail,notes,pics etc is not visible/accessible on the iPod touch when the iPod is connected to a wi fi connection

    Mail: do not have the same account loaded onto the two devices.
    Photos: go into Settings->Photos & Camera->and turn off photo stream.
    everything else, sign out of the Apple ID on the device you dont want to be visible.
    good luck

  • I accidently click for a full screen view on Firefox and now I can't undo it. My bar with tools, bookmarks, etc. is not visible. As the browser opens, the bar appears but then jumps up where it can't be reached. How do I turn off the full screen?

    I accidently clicked for a full screen view on Firefox and now I can't undo it. My bar with tools, bookmarks, etc. is not visible. As the browser opens, the bar appears but then jumps up where it can't be reached. How do I turn off the full screen without access to view options?

    Co-el, This wasn't possible as there wasn't a navigation bar available. The F11 did the trick though. Thanks for adding to the discussion.

  • Field not visible when uploading the file in application ser

    Hi,
    I have added a new field at the end of a structure and When i upload the data in the application server it is not visible there. The new field length is 30chars(say field 'A')  and the one just before this one is 250 chars(say field 'B'). When i reduce the length of field 'B' to 30 chars or 40 chars the value which i populated in field 'A' is visble in the output file.
    Since the complete file was not visible in AL11 transaction, i used the CG3Y tcode as well to download the data to presentation server so that i can view the complete file. Even after downlaoding in presentation server the new field value is not visible.
    Can anyone please suggest why is the value in field 'A' not visible when the length of field 'B' is 250 chars? Also, how can i display the value of the new field in the application server.I cannot change the layout of the structure as per the requirement. Any help will be very useful.
    Thanks in advance,
    Sneha.

    Hi Sneha.. Happy new year
    <you subject is missing ver from the server, thats why your server doesnt like you :P>
    -ok, lets go step by step. how did you upload the file?
    -after uploading the file check the file in OS level(goto SM69, execute CAT, in additional parameter (not in parameter) give the full path (case sensitive), execute. ). here you can see the actual content of the file... check you data is present or not
    -which structure are you using to download and upload? a temp work area.. then please provide the WA details, so that i can try on my system.
    lets see what happens next
    one more thing: regarding AL11, it can read upto length 510 characters. check program RSWATCH0 form SHOW_FILE. here the read dataset into butffer is 510 characters.

  • My front camera is not working. it shows the shutter pic and won't work on any apps. does anyone know how to reset it? i have already done reset and full reset.

    my front camera is not working. it shows the shutter pic and won't work on any apps. does anyone know how to reset it? i have already done reset and full reset.

    Did you try to set it up "as new device" without using the backup afterwards? How to set up your iPhone or iPod touch as a new device
    If this does not work, get it serviced or visit your next Apple Store.

  • Connecting the chassis-mounted front panel audio I/O module to the X-Fi Extreme Mu

    Hello to everybody.
    Many pc chassis provide two audio connectors on the front side, usually for the headphones with microphone.
    I need to know if I can connect the chassis-mounted front panel audio I/O module to the Sound Blaster X-Fi Extreme Music.
    I saw that the X-Fi Extreme Music has the internal connector (named AD_EXT) to connect . Is there a pin mapping of the AD_EXT connector? Is it possible to connect the chassis-mounted front panel I/O module cable to the proper pin of the AD_EXT connector?
    Thank you.

    Hi and thank you for your response.
    Unfortunatelly I actually haven't got a X-Fi card, because I need to know if I can connect the chassis-mounted front panel audio I/O module to the card before buying it.
    For this reason I don't know what is the J you're talking about. Is it an internal connector avaiable in the X-Fi Extreme Music card? Can I use this J to connect the chassis-mounted front panel audio I/O module to the card?
    Thank you.

  • Why can my 8500 A Plus not download forms from the web?

    Why can my 8500 A Plus not download forms from the web?

    Hey indianadave,
    Are you're apps working from the front panel of the printer? You will want to make sure that you have internet connection to your printer. If you don't, you can follow these steps:
    1. Find your printer's IP address.
    2. Enter the IP address in the address bar of your internet browser.
    3. Click the network tab.
    4. Click IPv4 under the wireless/wired menu on the left hand side of the printer screen.
    5. Set Manual settings.
    6. Set a Manual preferred DNS of 8.8.8.8 and alternate DNS of 8.8.4.4.
    7. Click apply and try downloading the forms again.
    Although I am an HP employee, I am speaking for myself and not for HP.
    If I have resolved your issue, feel free to provide Kudos and make sure you mark this thread as solution provided.

  • Adobe reader X will not open files on the web

    Adobe reader X will not open files on the web.  It works fine on off-line files.

    Hello Ray,
    Please try following steps:
    1. Run the installed Adobe Reader X.
    2. Click on Edit in the menu bar.
    3. Then click on Preferences in the drop down menu list.
    4. Click on the Internet category on the left pane.
    5. Now, make sure that Display PDF in Browser option is checked.
    If above steps doesn't work then let me know which Browser you are using, may be we have to do some settings there.

  • Hey...... my ipod touch 2g wifi dose not work.... it connects to the network but does not open any of the web pages or internet acess!! HELP ME???

    Someone plz help me out with this problemm... My IPOD TOUCH 2G connects to the wifi network but could not open any of the web pages... i've tried SAFARI, FIREFOX, and OPERA.... nothing in wifi retrieves data!!! it makes me so angry...
    possible reasons???? i've searched net.. and many of the people r having these problems... maybe with the ne iOS4.2.1
    HELPPPPPPPPPPP????
    ...Fateh

    - Reset the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    - Reset network settings: Settings>General>Reser>Reset Network Settings
    - The troubleshooting here:
    iPhone and iPod touch: Troubleshooting Wi-Fi networks and connections
    - Does the iPod successfully connect to other routers?

  • Have just loaded Safari 5.1.  4 times.  It presents a blank page but will not load anything from the web.

    Have just loaded Safari 5.1.  4 times.  It presents a blank page but will not load anything from the web.   What do I have to do to get it to work.   It worked fine until the update was offered.

    Funny thing, even this page was loaded and then quickly turned blank for me (I'm writing from Chrome).
    Hope they fix it soon!

Maybe you are looking for

  • Java EE 5.0 for LINUX vs. Windows

    Hello, I am beginner. Just to be sure I would like to ask whether JAVA EE 5.0 specification is fully implemeted for LINUX as well as for Windows. I need to be sure that if I will create some JAVA EE application and I will tun it on Glassfish AS on Wi

  • JAR Files...great

    So...me and some friends wrote some personal financial software (pure java) and it is pretty much complete. With only one problem though. An execitable like file that can be clicked on and ran (yes, I know a JAR File) but we have 18 text files used a

  • How much money would i get back if i returned a droid razer with nothing wrong to it

    how much money will I get back if I return a droid razor with nothing wrong with it

  • Problem on configuration

    Hi, we are going to implement SAP BW on SAP ECC 6.0 , which server we should take cluster or stand alone. regards, sr

  • How do I return a SIM activation Kit purchased from the Verizon Store?

    I purchased a SIM Activation Kit from your online store and even though the web site said it would work with my phone it didn't.  I called support 3 times and they were unable to activate the SIM.    I need to return the kit. I called Customer Servic