Problem in the GUI

Hello

I want to create a GUI like this:

Image of border - constant

The response from the server - verticalScrollable

Horizontal bar - constant.

In the constructor of the form, I added the topbar first

{

Topbar

Try

{

the server response

showData(); - it displays the response in the area of the scrollbale and repeat 3 - 4 times

}

}

showData()

{}

Now, where should I put the code bottombar?

I do not understand your question, but I suspect that this review will help you:

http://supportforums.BlackBerry.com/T5/Java-development/MainScreen-explained/Ta-p/606644

Tags: BlackBerry Developers

Similar Questions

  • problem with the Finder - files and folders displaying incorrectly

    After acquiring a new iMac, I noticed a problem with the Finder - files and folders are displayed wrong (see table).

    This is what happens always after the files have been transferred from one folder to another. I was reminded of my days of using Mac OS in the 1980s when automatic setting of files was not so "automatic." I use Mac OS for decades and I don't remember the last time I had to think about GUI problems like that.

    Other problems in the graphical display of files and folders were introduced, such as when you have hundreds of files in a single folder, you end up deleting about 30 to 40 of them say in a particular section, and you end up with gaps of the ChartSpace where files used to be, that is the remaining files automatically rearrange themselves (fill in these gaps) - never. A week later, you open the folder, and the gap of GUI is still there.

    I decided to do a clean install of the operating system but nothing works.

    Is there some setting in Prefs I'm missing?

    Hi there highland99,

    Looks like your folder icons are not accommodating themselves automatically you plan to do. To me, this indicates that you have organize by the None value in the view menu. You can change the way files and folders are prepared automatically by clicking on view > reorganize by and selecting how you would like that fixed.

    Thank you for using communities of Apple Support.

  • Problem with the configuration of NOR-9481

    I can't configure my NI9481 correctly so that the relay and switches are available in a picker of IO control. I tried to use the example or 'Switch Connect - 2 Channel.vi' to test the relay, however I generates the following error: "-200069: specified device is not a valid switch mechanism. This inclines me to believe that the examples of the switch do not work for the 9481.

    If I go to MAX, highlight the NI9481 and select 'Test panels... '. "I can't open/close the relay using the GUI.

    I am currently using a chassis OR cDAQ-9172 8 slots which houses 2 NI9239 ADCs, 1 DAC of NI9263 and a NI9481. I'm trying to use the relay (9481) to toggle the analog signal generated by the NI9263 to be read by the NI9239. I was able to create analog signal and scanned it by the NI9239s without problem.

    Can someone shed some light on what I might have missed when you attempt to configure the 9481...

    I could find the correct example that produces the effect I was looking for. For those interested, this is the 'write dig Port.VI' found in the examples of NEITHER.

  • Problem with the cable on PC with usb54g wireless network

    I have a pc with a usb54g interface that communicates very well with my wrt54g2 router.  The router is 192.168.1.1 (default), and the pc has a static (wireless) address of 192.168.1.10.  My problem just is whenever I try to connect to one of the connections on the pc to a switch 100base2.  (The 100baseT interface is on 192.168.2.1).

    Whenever I turn on the switch, I lose my connection to the IP address that my satellite modem has attributed to the 'internet' on the wrt54g2 interface.  I am running Windows XP, SP3 on the pc.  Can I fix my problems with the installation of the network in the windows GUI, or should I change my command prompt routing tables?  I suspect that, when I get an address for one network other than that the pc is aware, he is trying to use the interface that he thinks is faster, obviously wired LAN.   I apologize in advance if this has already been covered on the forum.

    You can do this by using the GUI under Windows by changing the metric parameter of the interface under the advanced part of the configuration of the connection network GUI.

    See this LINK for more information:

    http://www.windowsreference.com/Windows-2000/change-the-interface-metric-on-a-network-adapter/

  • Problems withdraw the application for RuntimeStore

    I have an application that listens to gps, e-mail and sms events. Because I need this application to run at startup of the bb, I used the method mentioned in many articles in kb by placing my application in the Bank to run at startup so that when my gui starts the user interface checks the runtime of the application store and proceeds accordingly. It all works perfectly. My problem comes when I need to stop the background of the GUI thread. I call shutdown in which the application stops all threads, that it is running and then I call a system.exit (0). All threads stop perfectly and closes my gui. However when I return to run the GUI with to restart the phone the waitForSingleton recover again the same background as application before having no threads running in it, and so nothing happens in the GUI (map changes). I also tried to remove the substantive application of the RuntimeStrore through .abolish. When I do cela background threads perfectly but the user interface may not start because an Exception is thrown stating that

    application running in this process... However, this is not when I call the store of runtime. Any ideas as to what I'm doing wrong?

    Thanks in advance

    if(args.length>0 && args[0].equals("gui"))
            {
    
                System.out.println("Starting GUI");
                Controller controller=waitForSingleton();
                try{
                WhereAreYouMain app=new WhereAreYouMain(controller);
                app.enterEventDispatcher();
                }
                catch(Exception e)
                {
                    System.out.println("************EXCEPTION: "+e.getMessage());
                    return;
                }
            }
            else
            {
    
                    boolean AutoStart=true;
                    if(ApplicationManager.getApplicationManager().inStartup() && AutoStart)
                    {
                        System.out.println("********************STARTING WHEREAREYOU*************************");
                    Controller app=waitForSingleton();
                    System.out.println("****************************Started WhereAreYOU**********************");
                    }
                }
            }
    
        public static Controller waitForSingleton()
        {
            RuntimeStore store=null;
            store=RuntimeStore.getRuntimeStore();
            Controller controller=null;
            controller=(Controller)store.get(AppId);
            if(controller==null)
            {
                try{
    
                store.put(AppId, new Controller());
    
                }
                catch(Exception e)
                {
                    System.out.println("Error putting app in storage"+e.getMessage());
                }
            }
            return (Controller)store.get(AppId);
        }
        public static void removeFromRuntimeStore()
        {
            RuntimeStore store=RuntimeStore.getRuntimeStore();
            store.remove(AppId);
    
        }
        public WhereAreYouMain(Controller controller)
        {
            WhereAreYouMainScreen screen=new WhereAreYouMainScreen(controller);
            controller.setMainScreen(screen);
            pushScreen(screen);
        }
    

    When stop you your application, you also have to remove all listeners?  If one of them has a reference, your application will be not eligible for garbage collection and it will remain.

    I understand that this approach (to put the application in RuntimeStore) is actually used in some articles in the KB, but I wouldn't recommend it.

    Instead, I would say put you a small 'data only' RuntimeStore object, call this myRuntimeStore object.  I - this so that you can set a reference to your UiApplication in this document, for example. Have a myRuntimeStore.setMyApp (.) method.  Now your audience can get your app if they want, using myRuntimeStore.getMyApp ().  More importantly, you can erase it and make sure that your application will.  You may encode your listeners to do nothing if your application is not present.

    However, I would like to recommend more than you do not actually store references to your application.  If you need something to initiate treatment in your application process, use a global event.  This beautifully isolates your application of your listeners.

  • Problems with the time in Windows 7 (64-bit)

    The time on my computer is always off.  Even when I change the time to the exact time in my bios the weather is bad in Windows.  I chose the right time zone, but it's still 6 hours off.

    When I was first troubleshooting I could just sync the clock to the internet through the GUI, but after a reboot or two time, the weather was wrong, once again.  I was looking for something more permanent then I tried things like the time service restarts windows.  I followed these instructions then because this person was having a similar problem.  It was suggested to run these commands:

    net stop w32time

    w32tm /unregister

    w32tm /register

    net start w32time

    w32tm/Resync

    This helped temporarily, but now I have an error the command net stop time w32t.  CMD says "the time service Windows is not started."

    When I go to my services time service Windows is there but not started.  When I try to run it I get this error:

    Here is a picture...

    I hope this is enough information.  Thanks for the help!

    Hi EvanDinelli,

    To resolve this issue, follow these steps:

    Note:
    this section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article: back up the registry in Windows 7

    a. Click Start, type regedit in the search box and then click regedit.exe in the list programs.

    If you are prompted for an administrator password or a confirmation, type your password, or click on continue.
    b. Locate the following registry subkey and click on it:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TapiSrv

    (c) in the part of details, right-click ImagePath and then click on edit.

    d. in the value data box, type the following registry value, and then click OK:
    %SystemRoot%\System32\svchost.exe k NetworkService

    Note if NetworkService does not appear in the registry %SystemRoot%\System32\svchost.exe - k NetworkService value, the problem that is described in the "Symptoms" section may occur.
    e. exit the registry editor and then restart the computer.
    Note
    if you try to start the telephony service before you restart the computer, you may receive the following error message:

    Error 1290: Starting the service failed because one or more services in the same process have a service SID inconsistent type parameter. A service with service restricted SID type can only coexist in the same process with other services with a restricted SID type. If the type of SID for this service has been configured, you must restart the hosting process in order to start this service.

  • VCS slow response in the GUI after X7.1 upgraded

    We recentlty improved our VCS to X7.1 and see the GUI response is very slow.

    We have the box integrated with LDAP for authentication for the admin user. We tried using the box with both local and remote authentication.

    But still the connection time takes about 3 minutes.

    Should check us here to continue further on that. Pls suggest.

    Reboot option will be the last resort.

    I had the same problem with one of my VCS highways after the implementation of LDAP authentication on 7.1.

    I have 6 VCS commands and 4 highways all on the same version of the software and the integration of LDAP in the same environment video and just a box was not happy.

    Cisco suggested I try to factory reset the box and reconfigure but which did not help.

    I eventually found a number of RMA.

  • Problem with the network - ACS 4113 device configuration

    We have problems with two particular devices. I'm trying to delete and add devices, but when I do a search and go to their intellectual property, I get.

    Impossible to edit blahblah.ourdomain... Reason: The host no longer exists.

    How can I get rid of this so I can readd devices?

    Thank you

    Dwane

    How many characters is the host name. If more than 32, you will not be able to change it in the GUI. Use the CSUTIL to remove. Re-create it with less than 32 characters.

  • KB3057839 breaks the windows services that run the GUI programs

    For reasons of inheritance, one of our tracks to windows service applications a 3rd party tool which is a graphical application in general. but also has command line switches to run in batch mode. The 3rd third party provider does not (and will not) provide a lot of command line application that is stand-alone/separated from the GUI, which leaves us with no alternative at the moment.

    So far, this approach has worked on Windows 7, Windows 8, Windows 8.1, Windows Server 2008 R2, Windows Server 2012, and Windows Server 2012 R2 - regardless of the registry setting 'NoInteractiveServices' in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Windows.

    But since the installation of the KB3057839 (which relates to the MS15-061) this approach has stopped working and caused the application GUI stuck, to consume 100% of one heart. The only way to get the old behavior is the following:

    1. Change NoInteractiveServices to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Windows to the value '0' (Windows 8 and later versions; Windows 2012 and later only)
    2. Start the UI0Detect Service ("Interactive Service detection"), defining eventually it starts automatically. and according to the other settings the same set up a recurring task to restart the service (because it stops after a while).

    As soon as UI0Detect is running, the application GUI thaws and works as expected; but also long UI0Detect is running. And since the application GUI does not in fact all the message boxes or similar which require user input, this is the kind of a workaround longshot.

    Uninstallation of KB3057839 Gets the old behavior back, but I doubt that this should be the recommended way of going. And after a search, users also have many problems with this patch.

    We checked on a virtual machine that has been reset to a snapshot prior to installation (where the intended behavior is always given); installation of KB3057839 breaks, and arranges the uninstallation of KB3057839 once again.

    Is this behavior with the installation of KB3057839, or is it a bug/pervert of the fix MS15-061 effect?

    Thanks to Ståle L. Hansen

    KB3070102 (exit 14. July 2015) replaces KB3057839 and will most likely solve your problems.

    KB3070102 / MS15-073: vulnerability in the Windows kernel-mode driver could allow elevation of privileges
    https://TechNet.Microsoft.com/library/security/MS15-073
    https://support.Microsoft.com/kb/3070102

  • Up-to-date values of VM CPU/Memory in the GUI framework for ASD action

    I have a worfklow vRO work custom as an action of ASD resource that allows the user to resize their VM provisioned based on a variety of preconfigured sizes, choice of the user as part of the DSA application form. It is to replace the built in option to reconfigure so that users cannot select the random sizes for their virtual machines, all the items in the catalogue are configured with thus predefined sizes.

    The end result is that everything that the user selects meets a set of CPU and RAM for example values small = 2vCPU 2 GB RAM and these values are then used to change the vCPU and RAM on the underlying vCenter VM values, before the entity VM vCAC for CPU properties. County and Memory.Size are updated by using the line System.getModule ("com.vmware.library.vcac") .addUpdatePropertyFromVirtualMachineEntity (host, virtualMachineEntity, "VirtualMachine.CPU.Count", cpuCount, propertyIsHidden, propertyIsRuntime, propertyIsEncrypted, doNotUpdate); for example, the CPU.

    It works very well, the virtual machine is reconfigured in vCenter and the CPU. County and Memory.Size values are updated on the virtual computer in the vRA, but when you look at the virtual machine in respect of points it's CPU and RAM boxes still display the old values. These are updated to reflect the new values when the inventory in vRA jobs then run but cela could be up to an hour later in my system.

    I was wondering that if there is a way to update these GUI elements in my work, I see three possibilities:

    1. Add a collection workflow data force at the end (would be allowed, but I work in a small environment, but do not think that this would put across large environments)
    2. Rework my work flow so that it uses the option reconfigures integrated to resize the virtual machine based on the value of some users (this would probably work, but I would have to rewrite most of my workflow and test again)
    3. I missed a property or an attribute, a place that controls the values displayed in the user interface and these only need to be included in the workflow

    Anyone who provides a custom action to do something that affects the values displayed in the GUI, if yes, how do you currently part update or someone at - he of the alternatives that might require less effort to implement?

    It is on the vRA 6.2.1 with external device vRO 6.0.1 screenshots showing the situation running...

    vRA GUI.JPGvRA VM properties.JPG

    > Add a workflow of data force collection at the end (would be allowed, but I work in a small environment, but do not think that this would put across large environments)

    Good or bad... That's what we do at the end of our CPU, Mem, and storage increase the flow of work.  We have yet to meet a problem.  It will be proportionally to the size of your environment in a way... but in reality, it would be more relative to the amount of change requests.  (less likely in the applications of appropriate sizes)

    > Rework my work flow so that it uses the option reconfigures integrated to resize the virtual machine based on the value of some users (this would probably work, but I would have to rewrite most of my workflow and test again)

    I don't like this idea... even if it is the method that I use for a change in ownership.  (search for ID users, collect the request and bind values machine, run request a resource workflow Action) You can give the vRO/vRA plugin service account permission to reconfigure in your environment. (I don't remember our initial plan in particular configurations... but currently in our environment reconfigures I cannot change CPU/MEM/storage).

    > I missed a property or an attribute, a place that controls the values displayed in the user interface and these only need to be included in the workflow

    Well, if find you... I really hope that you share.

  • Mapping the privileges predefined to those indicated in the GUI-> Administration-> roles-> privileges


    Hello

    This time, I have a question about the GUI Web Client itself.  I've been working on looking for predefined privileges before offering a feature in our plugin.

    I am able to know if the privilege is granted for an object in my data provider.

    Now, I'm ready to test, so I have:

    -created a new user in the WebClient service

    -created a role that will be assigned to this user of an object (host)

    Now, I want to assign privileges to the role, but has problems to understand GUI.

    I go to Administration-> roles

    -create a new role

    -Click on the tab 'privileges '.

    Here, I see a tree containing all the privileges that can be assigned to the role, but I'm not able to map these 1 x 1 to

    the ones I'm looking for.  An example is

    'Host.Config.Settings' that is needed to perform the UpdateIPMI() operation for a host.

    For example, in the tree, I opened

    v home

    v Configuration

    I expected to see 'Settings', but only

    -Advanced settings

    -Change the settings

    So my question is, how do I know which of these to be defined (without error). Is there a documentation which maps the privileges in the GUI to

    the 'real' like 'Host.Config.Settings '?  The link help for the link to the Documentation isn't really help here.

    These are the privileges for which I find no parameters (at least, it's not intuitive)

    Host.Config.Autostart

    Host.Config.Settings

    Host.Config.NetService

    Thanks for the Info.

    Cathy

    Hi Cathy,.

    Here's what you'll need:

    Host.Config.AutoStart = startup configuration automatic virtual machine

    Host.Config.Settings = change the settings

    Host.Config.NetService = security profile and firewall

    Concerning

    Kaloyan

  • Why a sound card would be usable in the GUI, but not in mode command line?

    I am able to connect my audio capture card and stream with GUI, but get an error in the command mode line indicating "error: problem with the audio capture device.»  Please check

    the audio capture device works correctly and is not already in use. "I can start several encoding in the GUI sessions using the same card and listen at the same time.

    I was using this card with OUT 3.1 coding as a background service on Server 2003.  3.1 or 3.2 works in command line on

    Windows Server 2008 Standard or another system with 2008 R2 company. This is direct encoding audio only and it occurs using newly registered configuration original\modified profiles. My process: copy FMLECmd.exe and rename, copy saved GUI startup.xml and name to match streamnameCMD.exe, and then use a batch file that launches the streamnameCMD.exe configured by streamname.xml. Anyone have any ideas on how to solve this problem?  FYI, from GUI, I get a popup "not detected no video capture device" because it is not installed and the session doesn't AutoStart so I can't use Exe-to-SVC or AlwaysUp to run it in the background instead of streamnameCMD.exe.

    Logs show:

    Friday, July 10, 2015 13:58:30: rename the existing file from c:\flash_logs\streamname.stream.log to the c:\flash_logs\streamname. stream.8.log

    Friday, July 10, 2015 13:58:30:

    Audio settings: -.

    Feature: Wave in 1 31160616 (Op 7-Orban

    Format: Mp3 stereo

    Sample rate: 44100 Hz

    Bitrate: 96 Kbps

    Volume: 75%

    Stream to Flash Media Server: -.

    The FMS URL: rtmp: / /Server/ live

    Backup URL:

    Name of the stream: streamname

    Friday, July 10, 2015 13:58:31: audio input device selected: wave in 1 31160616 (Op 7-Orban

    Friday, July 10, 2015 13:58:31: failed with the error 80040154:CoCreateInstance(CLSID_NullRenderer,_0,_(CLSCTX_INPROC_SERVER|)) (CLSCTX_INPROC_HANDLER), IID_IBaseFilter, pFilterRenderer.ppv ()) system specs: HP DL580 G7, Intel E7530 1.87 GHz 24 hearts 16 Gb Windows 2008 R2 Enterprise x 64, 1101e Orban capture cards. 

    Thank you very much for your advice!

    I have it.  There is a problem with WMI communication between hardware and software layers, which is solved with the addition of the function of the office experience in Server Manager.

    Once this is installed, with the required file + print feature, sharing the program will recognize the audio card when running as a service and allows multiple instances of encoding using the same card.

  • Player version listed in the GUI does not match that of the executable file (new)

    I've posted about this before (http://forums.adobe.com/message/4817948), but has never been able to find an answer.

    I am currently deployment of Adobe Reader versions 10.1.5 using the MSI installer and group policy. The problem is that a user stops his midway to Windows 7 computer while installation MSI interrupt (i.e. screwing) installation process. I had to remove some entries from the registry and restart the PC of the user in order to restart the installation of the reader (something I've done in the past).

    To verify that the drive has been installed successfully, I navigate to the Reader (AcroRd32.exe) executable Program Files, double-click the executable, select on Adobe on the Help menu, check the version number in the info box and see that the version number is 10.1.4 (i.e. the old version that I'm upgrading to). However, when I travel to the Reader (AcroRd32.exe) executable in Program Files and and open the properties of the file, I see the version 10.1.5 (i.e. the new version I am upgrading to).

    So the Player version listed in the GUI does not match that specified in the executable box.

    It's the second time that this has happened with a Windows 7 PC. I've never known this kind of thing with a PC running Windows XP.

    Why is the different version number in the GUI? Where the version number read to leave for the GUI? The registry? Anyone can shed some light on this situation?

    Hi Grittyminder,

    Remove some reg entries is not going to give you clean uninstall if you pouvez get a viable product. You can run this to get a better result: http://labs.adobe.com/downloads/acrobatcleaner.html.

    While I don't know what the problem is, it would be interesting to check the version of the product using the MSI API as described in the guide of the administrator to the www.adobe.com/go/acrobatetk.

    Ben

  • Since my 10.0.2 upgrade on my iPhone 5 my Wifi doesn't connect anywhere except home! This has never been a problem in the past I have connected everywhere wherever I was going to automatically! Is - this rare?

    Since my upgrade to 10.0.2 on my iPhone 5 my phone only connects to Wifi when I'm at home (cancelling the purpose of a MOBILE phone). This was never a problem in the past a my phone automatically and I received and could send emails, messages and use messenger etc automatically. Is - this rare?

    Hi John,.

    Please visit Apple support communities.

    I see that your iPhone 5 is not connect to other Wi - Fi networks after update to iOS 10. We offer troubleshooting tips.

    Since your wireless network is working, but you cannot connect to other networks, start with the next step in If your iPhone, iPad or iPod touch connects to a Wi-Fi network:

    Reset your network settings. Tap Settings > general > reset > reset network settings. This also resets the Wi - Fi networks and passwords, cell parameters and VPN and APN settings you used before.

    Sincerely.

  • Anyone having problems with the new iPhone LTE connection 7 on Verizon?

    I am now on my iPhone second 7 with Verizon. I had four phones for me and my family. I have now had issues where I have no signal in the same areas where my signal allows to be strong. I can't solve the problem with the activation/deactivation of the airplane and then mode again in normal mode. My phone will rest with no signal for 5 minutes, then going to LTE with three bars. I also had the problem where I had only 1 x signal, while my son standing right next to me has LTE. And he had the same questions, where I'm on LTE and it gets no signal. I use to have LTE where I live and work all the time, now it's spotty at best. Apple has replaced me and my sons iPhones but not luck. Still do. Any ideas or an any other suffering?

    (1) go to settings/cell phone/cellular data Options/enable LTE and select ONLY the DATA. This seems to solve the problem (as a temporary solution) for most of the people affected by this problem. The bad part is your request might not be as clear (since they cannot use the highest LTE signals) and you can make calls and data at the same time. But it does not solve the issue.

    (2) there are rumors (but you didn't hear that from me that we only are not supposed to discuss beta software program Apple in this forum) that the new version of Apple Beta for iOS (which also includes an update of the software carrier Verizon to 26.0) seems to solve this problem. So, there's a light at the end of the tunnel.

Maybe you are looking for