Please I need advice for deployment with multiple screen resolutions

Hello

Sorry for my English

I am developing a project in labview with a PC (screen resolution 1920 * 1080) and I need to deploy to run on a PC with (screen resolution 1024 * 768 10 "), I use several spliters for this so I need some advice to make sure my exe not working

very well in this PC target so I need to know how to configure my principal vi; size of the window in the execution; etc... in my PC all work fine I can reduce window and blow it up when the project is running and all the objects have been scaling very

well I don't know what will happen in this target pc.

advice and assistance please

Hey Broutchoux,.

Here are some links of the knowledge base that relate to this issue.

http://digital.NI.com/public.nsf/allkb/7567EF257B9CFDF986256F630073228F?OpenDocument

http://digital.NI.com/public.nsf/allkb/4C03BE7BFD1D00948625670B0061CB6A?OpenDocument

I hope this helps!

Tags: NI Software

Similar Questions

  • Not possible to install the driver for netbook with a screen resolution 1024 x 576

    Hi I have a wireless all-in-one printer 6180.

    I tried to install the driver, so I can print from my new HP compaq mini 110 c netbook, but when the driver installation is running it stops with the error that the resolution of the computer screen is less than the required minimum. the computer has 1024 x 576 and the recommended minimum 800 x 600. Any help will be very appreciated!

    Netbooker wrote:

    Hi I have a wireless all-in-one printer 6180.

    I tried to install the driver, so I can print from my new HP compaq mini 110 c netbook, but when the driver installation is running it stops with the error that the resolution of the computer screen is less than the required minimum. the computer has 1024 x 576 and the recommended minimum 800 x 600. Any help will be very appreciated!

    The procedure described in this page may solve your problem.

    Kind regards
    Bob Headrick, Microsoft MVP printing and imaging

  • PLEASE I NEED DRIVER FOR HP 650 PCI (B6840EA)

    PLEASE I NEED DRIVER FOR HP 650 PCI (B6840EA)

    Thank OU, I solved the problem

    ERICO wrote:

    You need a driver PCI for which the component and OS?

    Are you sure that it is a laptop? When I search the references for the 650 HP come with desktop PC information. Laptops don't use PCI interfaces for external upgrades.

    is the product number has been woing 'b6m40ea '.

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • How to adjust the website to work with several screen resolutions?

    http://www.allenkey.com.au/

    Hello, I recently designed this Web site and the formatting isn't correct when read with different screen resolutions

    Help please sélectionner!

    Hello, I recently designed this Web site and the formatting isn't correct when read with different screen resolutions

    Just so you know, and to keep clear wire, the resolution got nothing to do with the result by your page or is formatted.  A given page appear exactly the same on any screen resolution requirement to retain the same value in pixels the width of the browser.  This is the variation of the width of a screen to another resolution which causes the difference.  And Yes, it's the fact that you used absolute positioning as a method of main layout that is the problem for the reason that JTANNA has already been mentioned.

    Now - how do you want your page to behave?  Do you want to be centered and fixed width (that would be the easiest).  In this case, change this.

    on this subject.

    and this-

    on this subject.

    Now, all your containers AP reposition so that the page is again aligned the way you want, and you're done.

  • Images with lower screen resolutions on Tecra M5 unclear

    Hello

    We have a few M5s with graphics card Intel that works perfectly with the screen resolution of 1024 * 768 usual.
    Now we buy some new ones equipped with nVidia Quadro M5s, and they seem to have a native resolution of 1400 * 1050.

    If I try to measure the resolution 1024 * 768 or 1280 * 1024, the images are badly blurred. But I think that the icons to 1400 * 1050 on a 14 "screen are really too small for the average users.

    No solution?
    Thank you

    Tecra M5 comes with three different views. If you buy one with a higher resolution display, resolution reduced with photo dimmish results.

    Sorry but there is nothing to do. For example, you can connect external monitor with lower resolution.

  • install xp os House of 7 bones pro, I need to get my 32-bit screen resolution

    I need to get my 32-bit screen resolution

    You will need video drivers provided by the manufacturer of the video device to the operating system, you will be running.  Given what you have, it's 32-bit Windows XP - but yes - with a newer driver that you could probably be able to download easily these days - you need to update Windows XP SP3 as soon as POSSIBLE.

  • I'm having a problem with the screen resolution cannot be superior to 800 x 600 pixels

    All this began after I plug an i9 phone to my pc to load

    later, to this day, when I turned on my pc screen resolution would not stay how I put it

    He wants to just go to 800 x 600 pixels.

    I ran microsoft security scan it found and deleted a virus java exploit cve 2010-4452

    but still having trouble with the screen resolution

    If the problem occurred after you plugged into your phone. I suggest to perform a restore of the system automatically, put it on a date 2 days before you had the problem. If this isn't the case, you can check the video card driver:

    Start > run > devmgmt.msc
    Check your video card driver or see if there are any missing drivers
    If its lack, then update or install the driver of your video card.
    I hope this helps you! Good luck.
  • How to package things in photoshop for deployment on multiple computers via ARD on OSX?

    I bought 10 licenses through adobe store.  I saw Adobe Creative Cloud package that can be used to create packages, but I do not have access to this tool.  Advice to the installed in a pkg to deploy on multiple computers?

    If you bought ten individual licenses rather than a volume license, then you will have a volume serial number or access to Packer, you need to package the software and deploy it. I'm not up-to-date on our refund policy, but you can contact the customer and to tell them about the opportunity to return these licenses and get a serial number of the volume. A volume license would come with access to the Adobe licensing website, and from here, you can download a copy of the packer. This is also where you would get your serial number. Enter the serial number in the links Manager, and you are out of the race.

    For items specifically: Adobe Photoshop elements 13 | Adobe Premiere Elements 13 | Installation instructions and the silent deployment

  • I need help for Windows Vista black screen during the connection, even with the login screen removed

    Hey, I have a problem in Windows Vista:

    I've been updating / updated my graphics card and it is the graphics card, I'm updating, after a while, a black screen will appear (PITCH BLACK) and I there is no cursor and I tried Ctrl + Alt + Delete, but nothing seems to work, after I turned off my laptop, starts to load then it was the new dark night! (NO LOGIN SCREEN). Then I turned off my laptop then I constantly pressed f8, then I pressed "Computer repair" then it loads then my screen showed "Another user", then I clicked it then I had to type my ID but I have no details of connection, I pressed on enter with no connection details, but this still does not work because I had to type in my login information. I tried everything, then I went to safe mode and fact a password and changed my admin account type, then I rebooted my laptop, then I have constantly pressed f8 and pressed "Computer repair" then it loads and then my screen showed 'Another user' again... .

    PLEASE I NEED HELP! I WANT TO PLAY MY GAMES!

    Hello

    Follow the steps below:

     

    Method 1: Do the Startup Repair to fix the problem.

    See the following article for more information on the Startup Repair:

    Startup Repair: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/startup-repair-frequently-asked-questions

     

    Method 2: Use the Bootrec.exe tool in the Windows recovery environment to troubleshoot and repair startup issues in Windows

    For instructions, see the following article:

    How to use the Bootrec.exe tool in the Windows recovery environment to troubleshoot and repair startup issues in Windows

    http://support.Microsoft.com/kb/927392

    Let us know if that helps.

  • El Capitan permissions bad for lib with multiple users

    On my Mac with multiple users and running El Capitan, I encountered a problem with an application (GoGlobal) failed to start with "errno = 13", which is a problem of permissions with usr/local/lib /.

    I determined that on Yosemite, usr/local/lib was owned by root and permissions: drwxr-xr-x. However, on El Capitan, usr/local/usr / local / lib lib is owned by one of the nicks (random?) and has permissions drwx-, which is the source of the errno = 13.

    I got around the problem by chmod 755 to lib /, but I fear that a future update will reset these permissions impassable previous values. Please correct these settings in install and update routines.

    GoGlobal isn't a request to Apple. You can send your message to the developer, who develops not only the Application itself, but the installation script that puts in place of its components.

  • Equium A200-1V0 - need advice for the new series of laptop

    I want to replace my Equium A200-1V0.
    I don't know not in range it originally was - base or more?

    What would be a good replacement for it now?
    What I use my current for internet, email, Word/Excel and simple games. I also use it to listen to the music and the iplayer.
    HD, also used to store photos and iTunes.

    I have a budget of about £300-£400
    Minimum specification of:
    Memory - 2 GB
    HD - 200 GB
    Intel processor - NOT a Celeron - duo or preference i3
    stereo speakers
    at least 2 USB ports
    HDMI port - optional
    Screen 15 ''

    Thanks in advance...

    Hey,.

    There are several laptops Toshiba with 15 screen I think that the important point is the price because other requirements such as 2 GB RAM, 200 GB, etc are no problem. Most laptop have 4GB or more of RAM and also tough with more disk space.
    Moreover the Intel Core i3 processor is standard CPU at the moment, some models have a Core i5

    Take a look at Satellite C650, L650 and L750. These models are to fundamental factors such as Internet, music, videos and simple games.

    You can compare all models on the official page of Toshiba:
    http://EU.computers.Toshiba-Europe.com/innovation/family/

  • Need advice for my business cards

    Hello world! Just, I created this card for my business place called Sticker Deals, A Printing Company. I used some condensation of text and a few tactics in PS and AI. Let me know what you think!

    Waiting for your words!

    Christie

    Christie Johann Business Card.jpg

    I can't tell if the text on the right is actually white, or blue of ligt, but whatever it is; Depending on the printing method that I might be a little concerned about these thin traits possibly shut up and get lost. But that's just me; I always worry for that with thin white text (or colored).

    Other that, I like it.

    -OB

  • Replace the screen for one with a higher resolution on Satellite P850-12Z

    Hi all

    I read a lot on the internet about the replacement of the screen on computers laptop toshiba and also I saw a video on [how to replace the screen for a Toshiba Satellite P855 | http://www.youtube.com/watch?v=Ncz3ZaI2I-s].

    Is it possible to replace the screen for a Toshiba Satellite P850 12Z (original: 15.6"@1366x768) to another screen with a higher resolution (say: 15.6"@1920x1080 or 15.6"@1600x900)?

    I'm sure that the graphics card is able to function perfectly with this screen (nVidia GeForce GT630M 2048 MB dedicated) and also I read a lot on laptop screen replacement, and I know that this screen has a connector 40 pin and it is an LED Panel, so I won't have to worry about the ups.

    I found several screens (15.6"@1920x1080) who say they are compatible with Toshiba, but I wan't to make sure a higher resolution Panel replacement is possible.

    Thank you in advance.

    Hello

    Exchange of the display is not supported by Toshiba, so I don't think that someone here can help you with this.
    I assume that Toshiba offers multiple views for this model of laptop. Only seller is different but resolution 1366 x 768 is always the same as on the original laptop specification.

    You can try to contact the nearest Toshiba service provider and ask for help. If someone can help you with that service of Toshiba. They have access to the database of Toshiba and can possibly tell if another view is usable on your machine.

    All this is quite complicated.

  • Problems with the screen resolution, Cloud based software and Photoshop after the last round of updates Windows 8.1.

    Original title: screen resolution problems.

    Since the last series of Windows 8.1 update the resolution of my monitors has been changed for the worse. I use an AOC 2367 M (resolution 1920 x 1080) as my first monitor and a 42 inch Sony Bravia (resolution 1920 x 1080) as my 2nd monitor. The changes are more noticeable on the Sony Bravia and any adjustment I make to the resolution only make worse it.

    I also have problems with some software clouds as I load using citrix and when I try and navigate once opened software, I can't because the pointer selects a point about 50 mm on the side of the where he is hovering. In fact it is very difficult to open and close as anything and I resorted to the laptop to get concrete results.

    Photoshop now also comes up with a message when I open it up to inform me that the monitor profile seems to be defective.

    Any suggestions would be helpful as I thought initially an another upgrade must follow to correct the ills of windows 8, but appears not to have happened.

    Hi Joseph,.

    Thanks for the reply.

    Method 1:

    I suggest you to download and install all Windows updates available including optional updates. You can also install the latest device drivers for all devices including display drivers and monitor drivers on the manufacturer's Web site.

    http://eSupport.Sony.com/Perl/select-System.pl

    http://www.aocmonitorap.com/root/ANZ/download_driver.php

    Method 2:
    Adobe Photoshop CC version 14 is compatible with Windows 8.1. See Windows Compatibility Center for more information. To solve the problem with Photoshop CC, I suggest you try the procedure described in the article and see if it helps.

    Cloud applications help creative /CC crash immediately after launch
    http://helpx.Adobe.com/Photoshop/KB/CC-applications-crash-immediately-launch.html

    If the problem persists, I suggest you to contact the Support from Adobe.

    http://helpx.Adobe.com/contact.html

    To solve the problem from software hosted accounts, you may need to contact the Support to count.

    Hope this information helps. Answer the post with an up-to-date issue report to help you further.

Maybe you are looking for