Button aligned to left size

Hi All,
the code below suppose to show a list with a few buttons below.
in this dialog i have only minor problem.
The problem is that all my buttons aligned to left size.
if i omit line number 193 (jButtonPane.setLayout(new GridLayout(1,nOfButtons,1,1))),
it centralized but i am loosing the behaviour of the buttons.
when i shrinking the dialog the button dissapear:
and i need that the button will show like:
[OK...] [Cancel...] etc...
how can i centralized the buttons and still not "lost" the buttons.
this is my code:
package test;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GraphicsEnvironment;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.DefaultListModel;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class DialogFrame {
     String Message2Show="Default Message";
     JButton[] ButtonArray;
     String [] btnArrayText;
     String [] lineArray;
     String Title;
     int nOfButtons;
     int nOfLines;
     String[] data;
     private JPanel jContentPane = null;
     private JPanel jButtonPane = null;
     private JPanel jmessagePane = null;
     private JList MessageList=null;
     private JScrollPane jScrollPane = null;
     private JPanel jPanel2 = null;
     private DefaultListModel listModel;
     private static int DialogWidthPreferedSize=500;
     private static int DialogHightPreferedSize=200;
     final static boolean shouldFill = true;
    final static boolean shouldWeightX = true;
    final static boolean RIGHT_TO_LEFT = false;
      //Specify the look and feel to use.  Valid values:
    //null (use the default), "Metal", "System", "Motif", "GTK+"
     final static String LOOKANDFEEL = "System";
     public DialogFrame() {
          // TODO Auto-generated constructor stub
        // creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
     public DialogFrame(String message) {
          // TODO Auto-generated constructor stub
          ParseMessage(message);
        //          for test add data
          AddData2Message();
           //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
        private void createAndShowGUI() {
             initLookAndFeel();
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame(Title);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Display the window.
            int maxHeight = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()[0].getDisplayMode().getHeight();
            int maxWidth = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()[0].getDisplayMode().getWidth();
            frame.pack();
            frame.setSize(DialogWidthPreferedSize, DialogHightPreferedSize);
            frame.setLocation(GetWidth(maxWidth),GetHeight(maxHeight));
            frame.setContentPane(getJContentPane());
            frame.setVisible(true);
         private  void initLookAndFeel() {
            String lookAndFeel = null;
            if (LOOKANDFEEL != null) {
                if (LOOKANDFEEL.equals("Metal")) {
                    lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                } else if (LOOKANDFEEL.equals("System")) {
                    lookAndFeel = UIManager.getSystemLookAndFeelClassName();
                } else if (LOOKANDFEEL.equals("Motif")) {
                    lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
                } else if (LOOKANDFEEL.equals("GTK+")) { //new in 1.4.2
                    lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
                } else {
                    System.err.println("Unexpected value of LOOKANDFEEL specified: "
                                       + LOOKANDFEEL);
                    lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
                try {
                    UIManager.setLookAndFeel(lookAndFeel);
                } catch (ClassNotFoundException e) {
                    System.err.println("Couldn't find class for specified look and feel:"
                                       + lookAndFeel);
                    System.err.println("Did you include the L&F library in the class path?");
                    System.err.println("Using the default look and feel.");
                } catch (UnsupportedLookAndFeelException e) {
                    System.err.println("Can't use the specified look and feel ("
                                       + lookAndFeel
                                       + ") on this platform.");
                    System.err.println("Using the default look and feel.");
                } catch (Exception e) {
                    System.err.println("Couldn't get specified look and feel ("
                                       + lookAndFeel
                                       + "), for some reason.");
                    System.err.println("Using the default look and feel.");
                    e.printStackTrace();
         private JPanel getJContentPane()
              if (jContentPane == null) {
                   jContentPane = new JPanel();
                   jContentPane.setLayout(new BorderLayout());
                   //FOR THE LIST
                   jContentPane.add(getMessagePanel(), BorderLayout.CENTER);
                //FOR THE BUTTONS
                   jContentPane.add(getButtonPanel(), BorderLayout.SOUTH);
              return jContentPane;
        /*******      FOR THE LIST    **********/
         private JPanel getMessagePanel()
              if (jmessagePane == null)
                   jmessagePane = new JPanel();
                   jmessagePane.setLayout(new GridLayout(1,0));
                   jmessagePane.add(getJScrollPane(), null);
              return jmessagePane;
         private JScrollPane getJScrollPane() {
              if (jScrollPane == null) {
                   jScrollPane = new JScrollPane();
                   jScrollPane.setViewportView(getMessage());
              return jScrollPane;
         private JList getMessage() {
              if (MessageList == null) {
                   MessageList = new JList(listModel);
                   MessageList.setBackground(Color.cyan);
              return MessageList;
          /*******      FOR THE BUTTON    **********/
         private JPanel getButtonPanel()
              if (jButtonPane == null)
                   jButtonPane = new JPanel();
                   jButtonPane.setLayout(new GridLayout(1,nOfButtons,1,1));//test
                   jButtonPane.add(getJPanel2(),null);
              return jButtonPane;
         private JPanel getJPanel2()
              if (jPanel2 == null)
                   jPanel2 = new JPanel();
                   jPanel2.setLayout(new GridLayout(0,nOfButtons));
                   //Cretae Buttons Dynamically Regard user request
                   ButtonArray=new JButton[nOfButtons];
                   //Crteate Button objects
                   for(int i=0;i<nOfButtons;i++)
                        getButton(btnArrayText,i);
               //add buttons to panel
               for(int i=0;i<nOfButtons;i++)
                    jButtonPane.add(ButtonArray[i]);
          return jPanel2;
     private JButton getButton(String Text,int ind) {
          ButtonArray[ind] = new JButton(Text);
          ActionListener l = new ActionListener()
public void actionPerformed(ActionEvent e)
JButton SelectedButton = (JButton)e.getSource();
String ac = SelectedButton.getActionCommand();
MyActionEvents(ac,SelectedButton);
ButtonArray[ind].setActionCommand(String.valueOf(ind + 1));
ButtonArray[ind].addActionListener(l);
          return ButtonArray[ind];
     private int GetWidth(int maxWidth){
          int x=0;
          x=(maxWidth/2)-(DialogWidthPreferedSize/2);
          return x;
     private int     GetHeight(int maxHeight){
          int y=0;
          y=(maxHeight/2)-(DialogHightPreferedSize/2);
          return y;
     void ParseMessage(String message)
          Title="";
          String value="";
          int loc;
          /*****************TITLE TREATMENT*********************/
          for ( loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++)
               Title += message.charAt(loc);
          //Title += ":";
          /*****************BUTTON TREATMENT*********************/
          message = (message.substring(loc+1)).trim();
          value = "";
          for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
          nOfButtons=Integer.parseInt(value);
          btnArrayText=new String[nOfButtons];
          for (int i=0; i<nOfButtons; i++)
               message = (message.substring(loc+1)).trim();
               value = "";
               for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
               btnArrayText[i] = value;
          /*****************TEXT TREATMENT*********************/
          message = (message.substring(loc+1)).trim();
          value = "";
          for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
          nOfLines = Integer.parseInt(value);
          lineArray = new String[nOfLines];
          for (int i=0; i<nOfLines; i++) {
               message = (message.substring(loc+1)).trim(); value = "";
               for (loc=0; loc<message.length() && message.charAt(loc) != ':'; loc++) value += message.charAt(loc);
               lineArray[i]=value;
     private void MyActionEvents(String actionCommand,JButton SelectedButton)
          int val;
          val=Integer.parseInt(actionCommand);
          switch(val)
          case 1:
               System.out.println("ac = " + actionCommand);
          break;
          case 2:
               System.out.println("ac = " + actionCommand);
          break;
          case 3:
               System.out.println("ac = " + actionCommand);
          break;
          case 4:
               System.out.println("ac = " + actionCommand);
          break;
          case 5:
               System.out.println("ac = " + actionCommand);
          break;
          case 6:
               System.out.println("ac = " + actionCommand);
          break;
          case 7:
               System.out.println("ac = " + actionCommand);
          break;
          case 8:
               System.out.println("ac = " + actionCommand);
          break;
          int size = listModel.getSize();
String Name=SelectedButton.getText();
listModel.insertElementAt(Name,size);
     //For testing
     private void AddData2Message()
          listModel = new DefaultListModel();
          data=new String[lineArray.length];
          for(int i=0;i<lineArray.length;i++)
               listModel.addElement(lineArray[i]);
Tia
Gabi

The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4 and later.
Use one of these methods to open the tab history list:
* Right click on the Back or Forward button
* Hold down the left mouse button on the enabled Back or Forward button until the list opens
You can look at this extension:
* Backward Forward History Dropdown: https://addons.mozilla.org/firefox/addon/backforedrop/

Similar Messages

  • How to place the "go" button at left size in dashboard prompt

    how to place the "go" button at left size in dashboard prompt

    Change your code to this and it should work:
    PARAMETERS : p_date LIKE sy-datum ,
                  p_uname LIKE sy-uname.
    DATA: field1(8) TYPE c .
    AT SELECTION-SCREEN .
       IF p_uname IS INITIAL.
         field1 = 'P_UNAME'.
         SET CURSOR FIELD field1 .
         MESSAGE e001.
       ENDIF .
    I think you need to have the MESSAGE statement (or something similar).  If you don't have a message class assigned to your program, instead of
    MESSAGE e001.
    you can use
    MESSAGE 'Please fill in all required fields' TYPE 'E'.
    - April
    Message was edited by:
            April King

  • Tabstrip's Push buttons are align by left in 1 place

    Hi experts
       I put a Tabstrip in my screen,but his Push buttons are align by left in 1 place,How can i do something to make the push buttons align 1 by 1.
    BR
    Chris huang

    Those MM Rollover Menus are awful.  I'm not surprised you're having trouble with them.
    The Sordid tale of MM Fireworks Menus
    http://losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    The best advice I can offer is to scrap the MM Rollovers you have now and use a good CSS Menu system.
    DW Spry Menus
    http://layersmagazine.com/spry-navigation-dreamweaver.html
    CSS Express Drop-Down Menus  (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    List-O-Rama  (Free DW Extension)
    http://www.dmxzone.com/go?5618
    Pop-Menu  Magic2 by PVII (paid DW extension)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Orientation change button align from right to left

    Hi,
    On vertical view I want the button to be aligned to the right,
    and when is horizontal, align the button to the left
    I have put this code in the orientationchange event:
    if(window.innerHeight > window.innerWidth){
        sym.$("btnDeal").css('right', '10px');  // vertical
    } else {
       sym.$("btnDeal").css('left', '80px');  // horizontal
    I open the site in vertical mode, button looks good,
    change orientation to horizontal then the button change position, looks good
    now I put vertical again, this time the button is wrong, it stayed to the left, should go to the right.
    any change in the orientation the button keeps to the left
    please help, What Im doing wrong?
    thanks

    Please don't do that: https://wiki.archlinux.org/index.php/Fo … te#Bumping

  • [svn:osmf:] 14521: ChromeLibrary: moving live and recording buttons to the left hand side of the control bar , and making the button backdrops a little bigger.

    Revision: 14521
    Revision: 14521
    Author:   [email protected]
    Date:     2010-03-02 12:47:27 -0800 (Tue, 02 Mar 2010)
    Log Message:
    ChromeLibrary: moving live and recording buttons to the left hand side of the control bar, and making the button backdrops a little bigger.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/assets/control bar.ai
        osmf/trunk/libs/ChromeLibrary/assets/images/eject_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenEnter_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenLeave_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/pause_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/play_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_up.png
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/ControlBar.as

    Revision: 14521
    Revision: 14521
    Author:   [email protected]
    Date:     2010-03-02 12:47:27 -0800 (Tue, 02 Mar 2010)
    Log Message:
    ChromeLibrary: moving live and recording buttons to the left hand side of the control bar, and making the button backdrops a little bigger.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/assets/control bar.ai
        osmf/trunk/libs/ChromeLibrary/assets/images/eject_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenEnter_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/fullScreenLeave_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/live_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/minus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/pause_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/play_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/plus_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityAuto_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/qualityManual_up.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_disabled.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_down.png
        osmf/trunk/libs/ChromeLibrary/assets/images/record_up.png
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/ControlBar.as

  • Where is the Firebox Button in upper left corner of Firefox 5?

    Just downloaded and installed Firefox 5. Don't see the Firefox Button in upper left corner of browser screen, as shown on the New Features page. Does this have to be enabled? My browser says it's up to date, but I can't see much difference in appearance between 4 and 5.

    Right-click a toolbar, untick "menu bar".

  • Why does Firefox sometimes put the New Tab "+" button to the left of my open tabs instead of to the right?

    ''dupe of https://support.mozilla.org/en-US/questions/932160''
    [Re-posted with additional details when I thought this post had failed. Please respond to the other post and ignore this one. My apologies for the duplication.]
    In some windows, seems more likely after a crash recovery (but not sure there's a connection), Firefox puts the New Tab "+" button to the left of my tabs instead of the right. This is annoying, because once you're used to clicking it to the right of your open tabs, it's confusing to sometimes find it to the left.
    If I go into Customize mode, it still shows the "+" tab on the right, but as soon as I close Customize, it's really still there on the left edge of the screen.
    Why does this happen and can I stop it? I have seen no reports of this problem posted by others, but it's been happening for me since at least Version 12 and not fixed by version 13.0.1.

    This may be related to session restore.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=774943 bug 774943] - Session restore puts "+" button in the wrong spot and hides first tab
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=714382 bug 714382] - Leftmost tab is hidden when reopening browser window
    <i>([https://bugzilla.mozilla.org/page.cgi?id=etiquette.html please do not comment in bug reports])</i>

  • Yahoo just updated my email and now the buttons on the left side are letters, not buttons. What happened and how do I fix it?

    I like my Yahoo email, but they just updated it again and things are different again. Where there used to be buttons on the left side of my mail page to select for move, delete, or whatever, now there are rectangles with letters in them. They act the same, but are very distracting. How do I change it back so there is just a box to check?

    Those missing icons are actually supplied by a font that is downloaded from the server (@font-face) as you can see by the little boxes that show the hex code of the characters.
    You can check the <b>gfx.downloadable_fonts.enabled</b> pref on the <b>about:config</b> page and make sure that it is set to true (if necessary double-click the line to toggle its value).
    Make sure that you allow pages to choose their own fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

  • Let's say I'm in my email, and I double click the button to the left of the screen and it then shows the multiple screens I've looked at already. How do I clear those already seen pages?

    If I'm in my email acct, I click a hyperlink to another page and then to go back to my email page, I double click the button to the left of the screen and it shows a slide list of pages I have recently been to. How do I get rid of that? Or clear the pages?

    You mean the multi task bar at the bottom?  In iOS7 there is a big preview box above each app in the bar.  Just swipe it up and away.

  • Value in Query align by left

    Hi Experts,
    I have a problem in B1 query.
    For example my query is as follow
    Select  1.001
    B1 query will show
    1   : align by right
    The  problem is that the value is not 1.001
    If I change the query
    Select  '1.001'
    B1 query will show
    1.001   : align by left
    The value is ok, but the alignment is left. How to let the value align by right?
    Glen

    That is normal behavior of query result.  The first one is number so that will be aligned right.  The second one is text so that will be left.  Everything within ' ' would be a text no matter it is letter or number.
    Thanks,
    Gordon

  • MenuBar Component - Aligning Menu Left

    Hello all,
    I have a quick question. Is it possible to set the menubar
    component so that it's submenu is configured to display to the left
    ( if it was on the far left of the screen)?
    Currently I have it placed on the left side of the screen,
    with text aligned to right. The following problems occur :
    The arrows that are displayed when a menu has children is on
    the right, is it possible to align it left?
    The 2nd/3d level submenus open on TOP of their parent menu,
    instead of to the left, like I would like them to.
    Is there a sort of static property or something that I'm not
    finding that is made to align the entire menu to the right?
    Screenshot
    Here

    Can you please explain why you have PHP code inside your CSS body selector?
    PHP does not belong in your CSS code.
    body{
    <?php
    // define variables and set to empty values
    $nameErr = $emailErr = $genderErr = $websiteErr = "";
    $name = $email = $gender = $comment = $website = "";
    if ($_SERVER["REQUEST_METHOD"] == "POST") {
      if (empty($_POST["name"])) {
        $nameErr = "Name is required";
      } else {
        $name = test_input($_POST["name"]);
        // check if name only contains letters and whitespace
        if (!preg_match("/^[a-zA-Z ]*$/",$name)) {
          $nameErr = "Only letters and white space allowed";
      if (empty($_POST["email"])) {
        $emailErr = "Email is required";
      } else {
        $email = test_input($_POST["email"]);
        // check if e-mail address is well-formed
        if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
          $emailErr = "Invalid email format";
      if (empty($_POST["website"])) {
        $website = "";
      } else {
        $website = test_input($_POST["website"]);
        // check if URL address syntax is valid (this regular expression also allows dashes in the URL)
        if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%= ~_|]/i",$website)) {
          $websiteErr = "Invalid URL";
      if (empty($_POST["comment"])) {
        $comment = "";
      } else {
        $comment = test_input($_POST["comment"]);
      if (empty($_POST["gender"])) {
        $genderErr = "Gender is required";
      } else {
        $gender = test_input($_POST["gender"]);
    function test_input($data) {
      $data = trim($data);
      $data = stripslashes($data);
      $data = htmlspecialchars($data);
      return $data;
    Nancy O.

  • Close, minimize, resize buttons in top left dissapeared

    Any help MUCH appreciated!!... I cannot seem to figure out how i've lost my close, minimize and resize buttons in top left. IT's only in Illustrator. I have a MacBook Pro..
    Any thoughts???
    Thanks,
    Elena

    Chances are the buttons are merely behind the Control Panel or your'e simply in Full Screen Mode.
    If your document is behind the Control panel, tap the Tab key to hide all panel, then move the document down so it's not behind the control panel.
    If you are in Full Screen Mode, tap the F key on the keyboard until you see the buttons again.

  • My iTunes is freezing up when I click to Podcast button on iTunes left Menu

    How can I get over this problem, every time I click to Podcast button on the left menu, iTunes is frozing up and a circular rainbow shows up... :S What can I do to fix it?
    Thank You for yout time and help.

    Temporarily disable your firewall and antivirus software and try again...
    See here for Connection Issues
    http://support.apple.com/kb/TS1379
    From Here
    http://www.apple.com/support/itunes/troubleshooting/

  • UNABLE TO SEE/ANSWER INCOMING CALLS. Instead, there is a "call status" button in lower left hand corner of screen...

    UNABLE TO SEE/ANSWER INCOMING CALLS. Instead, when there is an incoming call, there is a "call status" button in lower left hand corner of screen...if i try to select the "call status" button, it does not do anything. Is this a reception issue?  Very strange.....please help!!!!
    Post relates to: Treo Pro T850 (Sprint)

    yeah, that's pretty strange. i suggest to try soft reset first and then if it's still showing the same behavior. do a hard reset. that should help. however if it's still acting strange, you call the palm tech support hotline. 1-877-426-3777. they will help you with your sprint treo pro.

  • Font just does not align totally left

    Hi folks, I need to know, how i can align the text totally to the border of the text frame, as you can see in the picture it just does not align totally left.
    I´ve been searching the web for solutions but did not find anything. I tried "Textrahmenoptionen" - I guess in english it´s text frame options, but there everything seems so to be right, please help me. Thanks in advance

    Check this thread:
    Re: Text alignment to column (not baseline) guides

Maybe you are looking for

  • Cannot delete file after calling JAI.create() method

    hi all this is the first time i write to this list today i began to use the JAI api on a project it works fine but i am not able to delete a file after using it my code: for(int i=2; i<2+filenames.size(); i++)                            try          

  • Add-On PKG Applications Available - What Applications Do You Want (Wishlist)

    Today we have multiple applications that run directly on the Smart Storage devices and can be installed via in the simple PKG process.   These are wide ranging applications that help with asset management, content management, e-commerce, web publishi

  • VIDEO IPOD HELP....REAL BAD

    i've just about had it with Apple...this isn't the first time (last year with my 20 GB i had all sorts of trouble) AND ITS STARTING TO **** ME OFF. I got a video ipod about a year ago and and its been working beautifully and i treated it like a baby.

  • How to hide the FRIEGHT CHARGES.. URGENT

    hi guru's Can anybody explain how to hide the frieght charges in PO print out.If the frieght vendor is different from Main vendor, my client wants to Hide the frieght charges only in Print outs, please any one explain the configuration details for th

  • Javascript won't work on a website

    I always could view my paycheck stubs online, but now the javascript won't open a new window for me to login to do that. I restarted Firefox, tried safe mode, cleared caches, updated firefox, unistalled and reinstalled java, and ran my ccleaner. What