JTextField does not redraw properly

Hi,
I have a JPanel that displays some buttons amongst some textfields and labels. One of my buttons is labeled Add Customer. When the user clicks on Add Customer he is presented with a number of JTextFields and JLabels which are all displayed fine.
However, when the user clicks on Cancel or closes the InternalFrame in which the JTextFields and JLabels are displayed and then clicks on Add Customer again, then the JTextFields are not redrawn properly. I image of this behavior can be seen at
http://www.grosslers.com/totals.07.png
As soon as I start to type text into the textfield then the whole textfield redraws itself as it should, but when it looses focus then the textfield becomes invisible once again.
     // Some textfields
     private     JTextField textField_customerEditCompanyName = new JTextField(10);
     private     JTextField textField_customerEditContactName = new JTextField(10);
      * Panel that will hold all the buttons for the quote request details tabbed panel
     public JPanel createQuoteRequestDetailsButtons() {
          // Panel to act as a container for the buttons
          JPanel panel_quoteRequestDetailsButtons = new JPanel();
          // Create, register action listeners and add buttons to the panel
          JButton button_addCustomer = new JButton("Add Customer");
          button_addCustomer.addActionListener(new ActionListener() {
               public void actionPerformed (ActionEvent actionEvent) {
                    // Add a new customer
                    addCustomerListener();
          panel_quoteRequestDetailsButtons.add(button_addCustomer);
          return panel_quoteRequestDetailsButtons;
      * Display a new internal frame when the user wants to add a new customer
     public void addCustomerListener() {
          // Master panel for the add customer details
          JPanel panel_addCustomerMaster = new JPanel();
          // Add the customer details panel to the master panel     
          panel_addCustomerMaster.add(customerDetailsPanel());
          // Ensure that all the textfields are blank
          resetCustomerDetailsPanelTextFields();
          // Add the buttons panel to the master panel          
          panel_addCustomerMaster.add(addCustomerButtons());
          // Add the master panel to the internal frame
          internalFrame_addCustomer.add(panel_addCustomerMaster);
          // Add the internal frame to the desktop pane
          JupiterMainGUI.desktopPane.add(internalFrame_addCustomer);
          // Set the size of the internal frame
          internalFrame_addCustomer.setSize(500,420);
          // Set other properties of the internal frame
          internalFrame_addCustomer.setClosable(true);
          internalFrame_addCustomer.setIconifiable(false);
          internalFrame_addCustomer.setMaximizable(false);
          // Set the location of the internal frame to the upper left corner
          // of the current container
          internalFrame_addCustomer.setLocation(0,0);
          // Set the internal frame resizable
          internalFrame_addCustomer.setResizable(false);
          // Show the internal frame
          internalFrame_addCustomer.setVisible(true);
      * Panel that displays the textfields and labels when the user clicks on
      * add or view customer details
     public JPanel customerDetailsPanel() {
          // Create master container for this panel
          JPanel panel_customerDetailsMaster = new JPanel();
          // Create the container that will hold all the textfields/labels for
          // the creation of a new customer          
          JPanel panel_customerDetails = new JPanel(new SpringLayout());
          // Add the details panel to the master panel
          panel_customerDetailsMaster.add(panel_customerDetails);
          // Set the border for the panel
          panel_customerDetails.setBorder(BorderFactory.createTitledBorder("Customer Details"));
          // Create textfields/labels, add them to the internalFrame
          JLabel label_customerCompanyName = new JLabel("Company Name : ");
          JLabel label_customerContactName = new JLabel("Contact Name : ");
          panel_customerDetails.add(label_customerCompanyName);
          panel_customerDetails.add(textField_customerEditCompanyName);
          panel_customerDetails.add(label_customerContactName);
          panel_customerDetails.add(textField_customerEditContactName);
          //Lay out the panel.
          SpringUtilities.makeCompactGrid(panel_customerDetails,
                                2, 2, //rows, cols
                                5, 5,        //initX, initY
                                5, 5);       //xPad, yPad
          return panel_customerDetailsMaster;
      * Panel holding the buttons when the user clicks on add customer
     public JPanel addCustomerButtons() {
          // Container for the buttons
          JPanel panel_addCustomerButtons = new JPanel();
          // Create the buttons for the panel
          JButton button_customerOk = new JButton("Ok");
          JButton button_customerCancel = new JButton("Cancel");
          button_customerOk.addActionListener(new ActionListener() {
               public void actionPerformed (ActionEvent actionEvent) {
          // Closing the internal frame. When i re-open this internal frame again
              // the labels are re-drawn properly but not the textfields.
          button_customerCancel.addActionListener(new ActionListener() {
               public void actionPerformed (ActionEvent actionEvent) {
                    try {
                         // close and remove the internal frame from the desktop pane     
                         internalFrame_addCustomer.setClosed(true);
                    } catch (PropertyVetoException exception) {
                    JupiterMainGUI.desktopPane.remove(internalFrame_addCustomer);
          panel_addCustomerButtons.add(button_customerOk);
          panel_addCustomerButtons.add(button_customerCancel);          
          return panel_addCustomerButtons;
     }So far I have a solution, and that is to use the GTK look and feel, but it is not really an option. Another way that I have managed to get the textfields to display properly is to create them in the same method, where I create the labels. Again, this is not really an option as i need to access the textfields outside the method scope.
Any help would be greatly appreciated
-- Pokkie

I added the following :
     * Panel that displays the textfields and labels when the user clicks on
     * add or view customer details
     public JPanel customerDetailsPanel() {
          // Create master container for this panel
          JPanel panel_customerDetailsMaster = new JPanel();
          // Create the container that will hold all the textfields/labels for
          // the creation of a new customer          
          JPanel panel_customerDetails = new JPanel(new SpringLayout());
          // Add the details panel to the master panel
          panel_customerDetailsMaster.add(panel_customerDetails);
          // Set the border for the panel
          panel_customerDetails.setBorder(BorderFactory.createTitledBorder("Customer Details"));
          // Create textfields/labels, add them to the internalFrame
          JLabel label_customerCompanyName = new JLabel("Company Name : ");
          JLabel label_customerContactName = new JLabel("Contact Name : ");
          panel_customerDetails.add(label_customerCompanyName);
          panel_customerDetails.add(textField_customerEditCompanyName);
          panel_customerDetails.add(label_customerContactName);
          panel_customerDetails.add(textField_customerEditContactName);
// Added this line , but doesn't seem to make a difference. also called revalidate() on the
// internalFrame in which this panel is displayed but no luck either. Called revalidate()
// on panel_customerDetailsMaster but nothing :(
          panel_customerDetails.revalidate();
          //Lay out the panel.
          SpringUtilities.makeCompactGrid(panel_customerDetails,
2, 2, //rows, cols
5, 5, //initX, initY
5, 5); //xPad, yPad
          return panel_customerDetailsMaster;
Thanks for the response thou, much appreciated

Similar Messages

  • TS1702 When I update to IOS6 on my 4S Facebook does not work properly, the news feed never updates it only says no new storeys and shows a picture of an antenna. When I reset my phone and go back to IOS5 Facebook works fine. What's up with IOS6 ????

    When I update my iPhone 4S to iOS six Facebook does not work properly the newsfeed doesn't load properly and I can never see what's going on all I see is a picture of an antenna and a little thing underneath it says no new stories when I reset my phone back to iOS 5 then it works just fine and I don't have any issues so there must be something wrong with iOS six that isn't letting Facebook load properly

    No I did not use any unauthorized methods for anything, I simply reset my phone back to factory.
    <Edited By Host>

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • Flash player does not work properly on Windows 7 32 bits

    Hello,
    My flash player does not work properly on Windows 7 32 bits with Firfox and IE8 (lasts versions).
    My Flash player version : 10.0.45.2, but I tried with version 9 too, with same problems.
    I have tried to uninstall, reboot, reinstall several times, ... witch did not worked.
    In fact, it works correctly on some sites, like youtube, but not on some others like :
    http://www.dailymotion.com/ => black screen instead of videos, right click gives flash context menu
    http://www.canalplus.fr/ => videos does not load, right click gives flash context menu
    http://www.myspace.com/ => no audio player, right click gives flash context menu
    some games in http://www.kongregate.com/ => black screen instead of games, right click gives flash context menu
    I have no problem with shockwave in http://www.adobe.com/shockwave/welcome/
    No problem too with flash player on http://www.adobe.com/software/flash/about/
    But in the Global Privacy Settings panel (http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager02.htm l), I cannot change any settings :
    I cannot check boxes,
    My changes are not saved.
    In most of flash animations, videos, ...,
    when I click on parameters, I cannot do anything, even closing.
    when I am in full screen mode, the message "press escape to exit...." does not disappear.
    Last thing, all those problems was not there when I was on Windows XP, few weeks ago, and appear with my registered Windows 7 premium familly edition, with the same hardware configuration...
    Thank you for your help

    Hi eidnolb
    Thanks for your answer.
    This is what I have :
    Verify user permissions
    I have an administrator account.
    I tried (uninstall, install and run) with super-administrator account for same results
    Install the most current version.
    I am running the latest version (10.0.45.2)
    Run the Clean Installer to Fix 3rd Party Flash Player Cleaners
    I did not "clean" my computer.
    Troubleshoot Pop-up blockers
    I have no Pop-up or esle blocker  software.
    Ensure that Internet utilities do not block Flash Player
    I tried (uninstall, install and run) without Avast.
    I have windows 7 firewall. I do not know where I can allow ActiveX  controls and Flash (SWF) content. I do not see anything relative to ActiveX an Flash in allowed program list.
    Fix machine crashes when displaying Flash content
    I have no freez or crash.
    Using IE, Shockwave Flash Object is Enabled and vs 10.0.45.2
    Using FF, I have SWF vs  10.0.45.2 and it is Enabled
    I really do not understand !!
    Thanks,
    Ju'

  • TestStatnd operatore Interface does not close properly

    Hi
    I am using LabVIEW 8.2 and TestStand 3.5. I use the default Operatore Interface (full featured) provided by NI. The TestExec.exe does not close properly when I exit the application. Everytime the process is running in windows. I had to use Windows Task Manager to kill the TestExec.exe manaully.
    Is there a fix for this?
    Thx
    Abdulla

    Hi,
    Do you start any new executions either from within your sequences or from within a step that you are not closing properly?
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Cannot send email. When I click Write the window does not open properly. Does not have the "send, spelling, attach security save" line.

    Cannot send email. When I click Write the window does not open properly. Does not have the "send, spelling, attach, security, save line there. Then when I click File, then Send now it will not send. A message comes up saying my SMTP server failed. Have check and everything appears to be o.k.

    Hi Stephen,
    What version of MS Office are you using?
    Are you facing the issue similar to that mentioned here: Acrobat/Reader: Attach to Email button not working for PDFs referenced from long URLs
    Open Acrobat. Use the click-path Edit - Preferences - select the Category "Email Accounts". In the dialog there is the "Add Account" drop-down. Select "Add Other". The "Add Webmail Account" dialog presents. You'll fill out the dialog's fields with Outlook.com settings. (don't forget the "Advance Settings" button)
    From a look-see on the web it appears that the following are the needed settings. BUT, you'll be wanting to validate.
    The Outlook.com SMTP server settings for sending outgoing messages from an email program on desktop, cell phone or mobile device are:
    • Outlook.com SMTP server address: smtp.live.com
    • Outlook.com SMTP user name: Your full Outlook.com email address (not an alias)
    • Outlook.com SMTP password': Your Outlook.com password
    • Outlook.com SMTP port: 587
    • Outlook.com SMTP TLS/SSL encryption required: yes
    For incoming messages from an Outlook.com account to an email program using POP, use the Windows Live Hotmail POP3 server settings.
    The Outlook.com POP server settings for downloading new incoming messages to email program, cell phone or mobile device are:
    • Outlook.com POP server address: pop3.live.com
    • Outlook.com POP user name: Your full Outlook.com email address (not an alias)
    • Outlook.com POP password: Your Outlook.com password
    • Outlook.com POP port: 995
    • Outlook.com POP TLS/SSL encryption required: yes
    Regards,
    Rave

  • Image display control scrolling does not work properly when zoomed in

    I am using a ROI on an image in the image display control. When zooming into the image to fine-adjust the positioning of the ROI, the image scrolling does not work properly. As far as I understand, the image should scroll automatically when the ROI is leaving the visible area. However, the scrolling behaviour seems to depend on the origin of the Labview panel, not the origin of the image display control, which might require to move the ROI way out of the visible area before the scrolling takes place. In other words: the coordinate system of the image display control is shifted with respect to the true visible image area, depending on where you place it on the front panel. As a consequence, when clicking on a ROI which is in the visible area, but is outside of what Labview thinks is the visible area, it might immediately jump to the left border of the image, making the positioning of the ROI really difficult.
    Has anyone noticed this behaviour, and what would be a reliable solution to avoid this? 
    Dirk

    Hello,
    no, I am not talking about the tools palette. Just place an image control with some image in it on a new VI front panel. Then, use the rectangle from the tools and select a ROI in the image. If you zoom in (using the magnification glass), and then grab the ROI and move it around, the image scroll with the ROI. So far, so good. If you now place the image control elsewhere on the panel, or add new control above it, resize the panel, etc. , this scrolling when moving the ROI will not work correctly if the origin (0,0) of the panel is far away from the image control.
    I have attached a VI for simplicity (although there is hardly any code in it).
    If you make a ROI and try to move it down, you will notice that scrolling starts if you move the mouse out to about 10cms below the image (depens on your screen, of course). After that, if you click on the ROI, the scroll bars and ROI might jump up to the upper end of the image. Imagine how annoying this is if you try to finely adjust the ROI position. 
    I think it is a bug in the implementation of the image display control.
    Thanks,
    Dirk
    Attachments:
    scrolling.vi ‏818 KB

  • Subvi does not work properly when called inside a vi

    Hello Every body
    thanks for your help. i am using a sub vi for sine signal generation. as a vi it works fine. but when i called this subvi inside another VI it gives some problems. for example timer indicator works properly.it reinitializes as well in the sub vi, but in the main VI it does not work properly. means does not count the time.in the sub vi on the fly i can change the values of frequency and amplitude in real time, but when i use as sub vi, it does not reponse as i change the values in the control arrays.similarly pause and continue works properly in the sub vi, but once again in the main VI, it does not work properly.graph indicator also work properly in the sub vi. but here once again it does not work properly in the main VI.the pause resume indicator also does not blink, when it is continue. in the subvi it blinks very well.generally why the sub vi does not work properly inside the VI?i am sending my VI and sub vis.
    any tips would be highly appreciated.
    thanks
    Regards
    Attachments:
    vi.zip ‏87 KB

    I just want to add some more details to Dan's answer. The subVI is acting exactly like you've coded it. The mistake is in understanding how subVIs work. When you call a subVI (or a function in any other language), you pass some parameters to it, the subVI does it's thing and returns values. the subVI does not accept new parameters from the calling VI until it returns to the caller and the caller runs the subVI again. In your case, you have a subVI with a while loop. You have some front panel control wired to the subVI's stop terminal. When first called, the value is false. So the subVI will keep running until the subVI's stop button becomes true but you cannot change it from main until the subVI finishes and returns so the subVI will never stop. As Dan says, the solution is pass references of front panel controls to the subVI and have the subVI monitor those references for changes and to update references to indicators on Main. You subVI does not need any front panel controls or indicators of it's own.

  • SSRS report does not rendering properly in sharePoint 2013

    Hi everyone,
    I'm a newbie with the MSBI development tool, I've tried to create a testing SSRS reports and its layout showed correct when preview them in Visual Studio (2010 and 2012). Then I migrated the report in SharePoint 2013, but the layout do not rendering as I
    expected, some data mix-up on the matrix table
    The Ident on detail data (drill down) does not render properly compare the layout in when preview in Chrome or Visual Studio (SSRS)
    The summation on second matrix table went wide on both browsers compare when preview thereport in Visual Studio
    The export PDF (using the "action" button on the report in the browsers) showed the second matrix table is overlaps the first matrix table.
    This report has 3 main queries (2 for the matrix tables and 1 for the chart) on a Dev environment:
    Window server 2008 R2 with service pack 2
    SQL server 2012 enteprise with service pack 2
    SharePoint 2013 (no service pack) with integrated mode on the report service 
    Visual Studio 2010 development tools
    I'm very appreciate for anyone can provide any solution to solve this issue.
    Thank you so much,
    Dac.
    P.S.: I attached the preview of the report in both browsers (IE & Chrome) and its preview in Visual Studio.
    An update: ... due to the setting space on"snap to grid" default to 20 and I've made the 2nd matrix table overlaps the 1st one, therefore the it showed overlaps when export to PDF file ... it's solved.
    But the Indent on IE and summation still persist in both browsers.

    Hi everyone,
    The PDF's export has been solved due to the 2nd matrix table overlaps on the 1st table. 
    Also, I don't know why the summation (aka Row Total) went wide when data represented on the 2nd matrix table (see previous post on the row named as "Premium over 5000$" on both browser. So I've redesigned the 2nd table as normal table instead of
    matrix table ... and the summation showed correct (it's so weird)
    For the "Indent" issue showed in IE on both drill down of the 1st table and 2nd table which cannot be fixed, and the end user used only IE.
    Could someone can enlighten me please?
    Many thanks.

  • View objects, view links, does not search properly

    Hi,
    I am using Jdev 11.1.2.0
    I have created a search criteria based on view objects and view links. It has entities and entity associations as base. The structure is as follow:
    vo1 ->vl (1 to 1) - > vo2
    ->vl ( 1 to many) -> vo3
    Any search attribute which is not from vo1 return bad result. It happens in running app module and in the jspx page. In app module, it sometimes complains about populating the wrong attribute for the named criteria.
    The search criteria is using "exists" statement for vo2 and vo3 for adding the conditions. It has many attributes within the exist statement.
    So what is the problem. Why it does not join properly? Why does it return bad result when search attribute is from vo2 and vo3? Please help.
    Any more information requires to solve the problem?
    Thanks,
    Arthur

    Hi,
    Two more information: vo1 is composed of Entity1 (1..M) Entity2 and Entity1 (1..1) Entity 3. vo2 is composed of Entity 2 and vo3 is composed of Entity 4.
    I follow the information from http://download.oracle.com/docs/cd/E16162_01/web.1112/e16182/bcquerying.htm#BCGIFHHF
    to create the search criteria.
    Arthur

  • My Mac App Store on my MacBook Pro does not work properly.

    My Mac App Store on my MacBook Pro 15 inch does not work properly. When i go on to the app store, my wi-fi resets and then my app store quits. Why is this? How can i fix this problem? Please Help

    Back up all your files, on boot up when you first press the power button, press CMd and r and keep pressing until you get something apart from a apple logo. Then click reinstall Mac OS X or something like that. You may be prompted to insert your disk.
    Good luck

  • Sync between MacBookPro and iPhone 3G does not sync properly.  Calendars duplicate events but worse is that only contacts from Address book from letter T onwards sync.  Any contacts on iPhone which are not on Mac are lost during sync.

    Sync between MacBookPro and iPhone 3G does not sync properly.  Calendars duplicate events but worse is that only contacts from Address book from letter T onwards sync.  Any contacts on iPhone which are not on Mac are lost during sync.
    Solutions?

    No, I never really found an easy solution.  I believe it is an issue with some corruption in the iTunes database on the specific device.  In my case, both my iPad and iPhone now show duplicate stream songs if viewed through iTunes on my Mac, but they show different songs.  A couple years ago I had a similar issue on my iPhone, and Apple support suggested I back up the phone, completely reset it, and then restore it from the backup.  It did work, so I imagine it would probably work for my current issues with the iPhone and iPad.  But resetting and restoring an iPad or iPhone always makes me a little nervous that something will get lost.  When I did reset/restore the iPhone, I do have to say, the restore process was 100% perfect and I did not lose any data at all even though Apple support said I might.  If you try to go that route, I would suggest backing the device up both to a computer through iTunes, and to the iCloud so that you have a double backup.
    None of this really resolves the issue with how the iTunes databases are becoming corrupted on the apple devices though, so it is very likely to happen again until they fix it.  I have been unable to determine if there were any specific actions or conditions which caused the corruption to happen in the first place.
    Might be worth another call to Apple support, or dropping in the local Apple store if you have one near by.

  • My Ipod touch does not work properly.When i charge it,it only works for 5 min.n gets discharge.I showed it to the apple store in banglore n the person told me its fine n It is working properly.Bt its not working properly.Can someone help

    My Ipod touch does not work properly.When i charge it,it only works for 5 min.n gets discharge.I showed it to the apple store in banglore n the person told me its fine n It is working properly.Bt its not working properly.Can someone help

    If after you charge it for about three hours and it only last about five minutes the battery is probably dead or there could be another hardware problem.  I would go back to the Apple store and ask them specifically how can it be OK if the fully charged battery only lasts five minutes.

  • Image blanks when clicking with Polygon Lasso - does not redraw

    When I am in an image, selecting an area with the polygon lasso tool, every time I click a point, the image blanks out and does not redraw. I am left with my pologon selection lines and a white image where the photo should be.
    The only way to get the image back is to force it to scroll. I have to extend the tool off one side of the image or another to make it scroll.  Otherwise the screen does not redraw.  I am forced to work with my images in a window instead of fullscreen to ensure that I have part of the image to scroll to when the image blanks out.  It is doing this with every click of the polygon lasso tool.
    Needless to say, this is maddening!  Has anyone seen this behavior before? 
    I am running Adobe Photoshop CS3 on Windows XP and the program is up to date.  I have two gigs of ram and have moved up the memory allocated to Photoshop from half to two thirds.  I have stopped having other programs opened.  I also tried turning off the preference for the 3D graphics acceleration. So far nothing has worked to fix the problem.
    I have about 1100 product photos to clip out - HELP!
    Many thanks,
    Lynne

    I have reset the prefs, first for the polygon tool, which did not fix the problem.  Then I held down the keys on startup and told it to delete the prefs file.  I am still having the problem, although not on every single click.  It has become intermittant, which is bizarre!
    This laptop was recently completely reformatted and reloaded with everything when they passed it down to me.
    I checked my video driver and it is up to date.  I am on a Dell XPS Gen2 laptop running NVIDIA Gforce Go 6800 Ultra.  Unfortunately the NVIDIA site is referring me back to Dell for the driver, and the Dell driver has not been updated since 2005.  Oh, the joys of running on older equipement!
    Lynne

  • I'm attempting to create a pdf from InDesign and the Illustrator image does not appear properly.

    I'm attempting to create a pdf from InDesign and the Illustrator logo does not appear properly. The logo has a light blue color background with a black to white gradiant over it with a multiply designation set at 100%.  I flattened the logo in illustrator before importing into InDesign. When the pdf is created, the blue background of the logo drops out and the only thing showing is the graduated screen of black. PLEASE HELP!!!!!!

    Thanks for your reply Peter,
    I'm on Mac OSX (10.5.8) using Acrobat 7 Professional and Acrobat 
    Reader 9 to view the pdf. I created it by exporting. Attached is a 
    screen capture of the letterhead. Since I posted, I sent a test pdf to 
    my partner's computer eventhough it didn't look right on my system and 
    she said it looked fine to her. I've restarted my computer and tried 
    again and still get the same results.
    Thanks for your help,
    Pat Boullion
    Boullion Graphics
    281 444-5749
    Fax: 281 444-6507
    CONFIDENTIALITY NOTICE
    The information in this email may be confidential and/or privileged. 
    This email is intended to be reviewed by only the individual or 
    organization named above.
    If you are not the intended recipient or an authorized representative 
    of the intended recipient, you are hereby notified that any review, 
    dissemination or copying of this email and its attachments, if any, or 
    the information contained herein is prohibited. If you have received 
    this email in error, please immediately notify the sender by return 
    email and delete this email from your system.

Maybe you are looking for

  • Orga and expense hierarchy in discoverer

    Hi, we currently test the functionality and performance of the discoverer product. hierarchies which can be set up in discoverer (as described in the admin manual) are created using attributes from the underlying table(s). Business Area -> Cost Cente

  • Personas: How set the default screen size when Personas starts up

    Hi Personas experts, When Personas starts, its screen size is by default small, say, size_A. One can press "+" to increase the screen size, say, size_B. Now I want Personas to start with a bigger screen size, say, size_B instead of the default size,

  • ACL does not correctly order the permissions when they are updated

    Outlook Connector sjab32.dll 7.1.228.0 sjms32.dll 7.1.228.0 sjui32.dll 7.1.228.0 sjtp32.dll 7.1.228.0 Problem: We have identifed an issue with editing calendar permissions using the Outlook Connector. Basically the calendar ACEs are evaluated on a fi

  • Error 500:30

    Getting error message 500:30 when I try to open photoshop cs4 on mac with mountain lion. help

  • RV042 Web Gui Port

    Dear ALL, what port used RV042 WEB GUI ? port 80? can we change that port?maybe become port 8080? because we have another web server use port 80 too. please give me info. thanks & regards,