Button in JTabbedPane tab

Greetings,
i'd like to have a button on every tab in JTabbedPane, like close button in NetBeans when you edit the code. By default, you can put an icon only. Do you guys know how to do that?
thanks in advence.

If you can wait another couple of months (or if you are willing to use the beta version), you can use the new JTabbedPane features in Java 6 (Mustang). Have a look at the method setTabComponentAt:
[url http://download.java.net/jdk6/docs/api/javax/swing/JTabbedPane.html#setTabComponentAt(int,%20java.awt.Component)]setTabComponentAt

Similar Messages

  • Icon and a button in JTabbedPane Tabs

    Hi,
    i want to put an icon on the left side of the text and a button on the right side(Same as the eclipse tabs). Can any one help me how to do this.
    thnx in advance.

    Search the forum using "jtabbedpane close icon" for other discussions on this topic.

  • Add button to JTabbedPane to add new tab

    Does anyone know how to add a JButton to a JTabbed pane (in the tab bar) so that it is always at the end of all the tabs and when it is clicked it will add a new tab into the tabbed pane.
    The functionallity I am looking for is the same as that provided by the button in the tab bar for Firefox and Internet Explorer.

    Along the line of what TBM was saying:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    class NewTabDemo implements Runnable
      JTabbedPane tabs;
      ChangeListener listener;
      int numTabs;
      public static void main(String[] args)
        SwingUtilities.invokeLater(new NewTabDemo());
      public void run()
        listener = new ChangeListener()
          public void stateChanged(ChangeEvent e)
            addNewTab();
        tabs = new JTabbedPane();
        tabs.add(new JPanel(), "Tab " + String.valueOf(numTabs), numTabs++);
        tabs.add(new JPanel(), "+", numTabs++);
        tabs.addChangeListener(listener);
        JFrame frame = new JFrame(this.getClass().getName());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(tabs, BorderLayout.CENTER);
        frame.pack();
        frame.setSize(new Dimension(400,200));
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      private void addNewTab()
        int index = numTabs-1;
        if (tabs.getSelectedIndex() == index)
          tabs.add(new JPanel(), "Tab " + String.valueOf(index), index);
          tabs.removeChangeListener(listener);
          tabs.setSelectedIndex(index);
          tabs.addChangeListener(listener);
          numTabs++;
    }

  • JTabbedPane with one close button for all tabs

    Hello,
    there have several solutions been posted for JTabbedPane subclasses that provide tabs with icons working as close buttons on each tab. I think this is not user friendly because the user can hit the close button accidentally when selecting a tab. And a "really close?" dialog is clumsy.
    Therefore I prefer the Netscape browser style: There's only one close button rightmost of the tabs that closes the selected tab. But I don't have an idea how to achieve this.
    Does anyone have a solution or an idea? Thanks in advance for help.

    This solution has been posted several times and is not what I wanted. But I rewrote the thing so that
    - the close buttons are on the right hand side of each tab so that it is conformant with Eclipse style, and
    - the close buttons work only with a left click (see code below).
    I just wonder how I can move the text a little bit to the left so that the appearence is a bit more balanced. Can someone help, please?
    import java.awt.Color;
    import java.awt.FontMetrics;
    import java.awt.Graphics;
    import java.awt.Rectangle;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.plaf.basic.BasicTabbedPaneUI;
    class TabbedPaneCloseButtonUI extends BasicTabbedPaneUI {
        public TabbedPaneCloseButtonUI() {
            super();
        protected void paintTab(
            Graphics g,
            int tabPlacement,
            Rectangle[] rects,
            int tabIndex,
            Rectangle iconRect,
            Rectangle textRect) {
            super.paintTab(g, tabPlacement, rects, tabIndex, iconRect, textRect);
            Rectangle rect = rects[tabIndex];
            g.setColor(Color.black);
            g.drawRect(rect.x + rect.width -19, rect.y + 4, 13, 12);
            g.drawLine(
                rect.x + rect.width -16,
                rect.y + 7,
                rect.x + rect.width -10,
                rect.y + 13);
            g.drawLine(
                rect.x + rect.width -10,
                rect.y + 7,
                rect.x + rect.width -16,
                rect.y + 13);
            g.drawLine(
                rect.x + rect.width -15,
                rect.y + 7,
                rect.x + rect.width -9,
                rect.y + 13);
            g.drawLine(
                rect.x + rect.width -9,
                rect.y + 7,
                rect.x + rect.width -15,
                rect.y + 13);
        protected int calculateTabWidth(
            int tabPlacement,
            int tabIndex,
            FontMetrics metrics) {
            return super.calculateTabWidth(tabPlacement, tabIndex, metrics) + 24;
        protected MouseListener createMouseListener() {
            return new MyMouseHandler();
        class MyMouseHandler extends MouseHandler {
            public MyMouseHandler() {
                super();
            public void mouseReleased(MouseEvent e) {
                int x = e.getX();
                int y = e.getY();
                int tabIndex = -1;
                int tabCount = tabPane.getTabCount();
                for (int i = 0; i < tabCount; i++) {
                    if (rects.contains(x, y)) {
    tabIndex = i;
    break;
         if (tabIndex >= 0 && ! e.isPopupTrigger()) {
    Rectangle tabRect = rects[tabIndex];
    y = y - tabRect.y;
    if ((x >= tabRect.x + tabRect.width - 18)
    && (x <= tabRect.x + tabRect.width - 8)
    && (y >= 5)
    && (y <= 15)) {
    tabPane.remove(tabIndex);
    import java.awt.BorderLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JTabbedPane;
    public class TabbedPaneWithCloseButtons {
    JFrame frame;
    JTabbedPane tabPane;
    public TabbedPaneWithCloseButtons() throws Exception {
    frame=new JFrame();
    frame.getContentPane().setLayout(new BorderLayout());
    tabPane=new JTabbedPane();
    tabPane.addTab("test1xxxxxxxxxxxxxx", new JLabel("1"));
    tabPane.addTab("test2xxxxxxxxxxxxxxxxxxx", new ImageIcon("images/icon.gif"), new JLabel("2"));
    tabPane.addTab("test3xxxxxxxx", new JLabel("3"));
    tabPane.setUI(new TabbedPaneCloseButtonUI());
    frame.getContentPane().add(tabPane);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200,200);
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
    public static void main(String[] args) throws Exception {
    TabbedPaneWithCloseButtons test=new TabbedPaneWithCloseButtons();

  • Putting a button on a tab like in netbeans

    In netbeans, the tabbed panes have buttons on the tabs so that you can close a file right there.
    Does anyone know how to do this?
    Thanks,
    LNMEgo

    This question has been asked a lot, and I know I saw a handy solution posted recently - you might try a search on this forum. Inspired by the solution I found, I came up with an implementation that allows you to add an Action (which provides the icon and the behavior) to a JTabbedPane tab. It is an extension of JTabbedPane along with an Icon that presents buttons for the added Actions. It could use a little work, but here's the code:
    //     ActionableTabbedPane.java
    //     A JTabbedPane that supports an ActionTabIcon.
    package whatever.package.actiontabs;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ActionableTabbedPane extends JTabbedPane
         public ActionableTabbedPane()
              super();
              ActionButtonListener abl = new ActionButtonListener();
              addMouseListener(abl);
              addMouseMotionListener(abl);
         public void addTab(String title, Component component, Action action)
              ActionTabIcon icon = new ActionTabIcon();
              icon.addAction(action);
              super.addTab(title, icon, component);
         public void addTab(String title, Component component, Action[] actions)
              ActionTabIcon icon = new ActionTabIcon();
              for (int i=0; i < actions.length; i++)
                   icon.addAction(actions);
              super.addTab(title, icon, component);
         private ActionTabIcon findActionTabIconAt(int x, int y)
              int tabNumber = getUI().tabForCoordinate(this, x, y);
              if (tabNumber < 0) return null;
              Icon icon = getIconAt(tabNumber);
              if (icon == null || !(icon instanceof ActionTabIcon)) return null;
              else return (ActionTabIcon)icon;
         private class ActionButtonListener extends MouseInputAdapter
              private ActionTabIcon      nPressedIcon = null;
              public void mousePressed(MouseEvent e)
                   int x = e.getX();
                   int y = e.getY();
                   ActionTabIcon icon = findActionTabIconAt(x, y);
                   if (icon != null)
                        nPressedIcon = icon;
                        Rectangle rect = icon.getBounds();
                        icon.showPressed(x - rect.x, y - rect.y);
                        repaint();
              public void mouseReleased(MouseEvent e)
                   if (nPressedIcon == null) return;
                   nPressedIcon.showReleased();
                   nPressedIcon = null;
                   repaint();
              public void mouseDragged(MouseEvent e)
                   if (nPressedIcon == null) return;
                   int x = e.getX();
                   int y = e.getY();
                   Rectangle rect = nPressedIcon.getBounds();
                   nPressedIcon.showDragged(x - rect.x, y - rect.y);
                   repaint();
    //     ActionTabIcon.java
    //     An icon comprised of one or more buttons that can perform an action
    //     when clicked. These buttons will be displayed on a tab in a
    //     JTabbedPane.
    package whatever.package.actiontabs;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    class ActionTabIcon extends JPanel implements Icon
         private JButton          oLastPressedButton = null;
         private int          X = 0,
                        Y = 0;
         public ActionTabIcon()
              // I use a custom layout manager here, but you can use BoxLayout
              setLayout(new BoxLayout(this, BoxLayout.X_AXIS));
              setBorder(BorderFactory.createEmptyBorder(3, 0, 3, 0));
              setOpaque(false);
         public void addAction(Action action)
              JButton jb = new JButton(action);
              jb.setOpaque(false);
              jb.setBorder(null);
              add(jb);
         public JButton getButtonAt(int x, int y)
              Component[] comps = getComponents();
              for (int i=0; i < comps.length; i++)
                   Rectangle r = comps[i].getBounds();
                   if (r.contains(x, y))
                        return (JButton)comps[i];
              return null;
         public void showPressed(int x, int y)
              JButton b = getButtonAt(x, y);
              oLastPressedButton = b;
              if (b == null) return;
              b.getModel().setPressed(true);
              b.getModel().setArmed(true);
         public void showDragged(int x, int y)
              if (oLastPressedButton == null) return;
              JButton b = getButtonAt(x, y);
              if (b != oLastPressedButton)
                   // disarm the last button
                   oLastPressedButton.getModel().setArmed(false);
                   oLastPressedButton.getModel().setPressed(false);
              else
                   // ensure that the last button is armed
                   oLastPressedButton.getModel().setPressed(true);
                   oLastPressedButton.getModel().setArmed(true);
         public void showReleased()
              Component[] comps = getComponents();
              for (int i=0; i < comps.length; i++)
                   JButton b = (JButton)comps[i];
                   if (b != null)
                        b.getModel().setPressed(false);
                        b.getModel().setArmed(false);
         public void paintIcon(Component c, Graphics g, int x, int y)
              this.X = x;
              this.Y = y;
              setSize(getPreferredSize());
              g.translate(x, y);
              paintComponent(g);
              paintChildren(g);
              paintBorder(g);
              g.translate(-x, -y);
         protected void paintChildren(Graphics g)
              Component[] c = getComponents();
              doLayout();
              for (int i=0; i < c.length; i++)
                   int x = c[i].getX();
                   int y = c[i].getY();
                   g.translate(x, y);
                   c[i].paint(g);
                   g.translate(-x, -y);
         public int getIconWidth()
              return getPreferredSize().width;
         public int getIconHeight()
              return getPreferredSize().height;
         public Rectangle getBounds()
              Dimension d = getPreferredSize();
              return new Rectangle(X, Y, d.width, d.height);
    //     app.java
    //     A test application for the ActionableTabbedPane
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import whatever.package.actiontabs.*;
    public class app extends JFrame
         /////////////////////// Main Method ///////////////////////
         public static void main(String[] args)
              if (!(args != null && args.length > 0 &&
                        args[0].equalsIgnoreCase("-plaf")))
                   try { UIManager.setLookAndFeel(
                        UIManager.getSystemLookAndFeelClassName()); }
                   catch(Exception ex) { }
              new app();
         private ActionableTabbedPane     oTabs = null;
         public app()
              // Set up the JFrame...
              setTitle("Test app");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setSize(400, 300);
              setLocationRelativeTo(null);
              Container c = getContentPane();
              c.setLayout(new BorderLayout());
              // Create some actions for the tabs...
              Icon closeIcon = new ImageIcon("docClose.gif");
              Icon saveIcon = new ImageIcon("docSave.gif");
              Icon savedIcon = new ImageIcon("docSaved.gif");
              CloseAction closer = new CloseAction("close", closeIcon);
              SaveAction saver = new SaveAction("save", saveIcon, savedIcon);
              // closer and saver are duplicated/cloned so that changes
              // to the action's icon affect only the associated tab...
              Action[] acts1 = { closer.duplicate(), saver.duplicate() };
              Action[] acts2 = { closer.duplicate(), saver.duplicate() };
              Action[] acts3 = { closer.duplicate(), saver.duplicate() };
              Action[] acts4 = { closer.duplicate(), saver.duplicate() };
              Action[] acts5 = { closer.duplicate(), saver.duplicate() };
              // Create the tabbed pane and add some tabs with panels...
              oTabs = new ActionableTabbedPane();
              // Can't use scroll tab layout due to a bug in 1.4 which
              // blocks mouse events from reaching our custom buttons...
              // // oTabs.setTabLayoutPolicy(oTabs.SCROLL_TAB_LAYOUT);
              oTabs.addTab("Document 1", createPanel(Color.blue), acts1);
              oTabs.addTab("Document 2", createPanel(Color.gray), acts2);
              oTabs.addTab("Document 3", createPanel(Color.yellow), acts3);
              oTabs.addTab("Document 4", createPanel(Color.white), acts4);
              oTabs.addTab("Document 5", createPanel(Color.green), acts5);
              c.add(oTabs, BorderLayout.CENTER);
              setVisible(true);
         private JPanel createPanel(Color bg)
              JPanel p = new JPanel();
              p.setBackground(bg);
              p.setOpaque(true);
              return p;
         private class CloseAction extends AbstractAction
              public CloseAction(String actionCommand, Icon icon)
                   super("", icon);
                   this.putValue(ACTION_COMMAND_KEY, actionCommand);
              public void actionPerformed(ActionEvent ae)
                   if (ae.getActionCommand().equals("close"))
                        oTabs.remove(oTabs.getSelectedIndex());
                   System.out.println("Close button fired");
              public CloseAction duplicate()
                   String actionCommand = (String)getValue(ACTION_COMMAND_KEY);
                   Icon icon = (Icon)getValue(SMALL_ICON);
                   return new CloseAction(actionCommand, icon);
         private class SaveAction extends AbstractAction
              private Icon saveIcon = null;
              private Icon savedIcon = null;
              public SaveAction(String actionCommand, Icon save, Icon saved)
                   super("");
                   saveIcon = save;
                   savedIcon = saved;
                   this.putValue(this.SMALL_ICON, saved);
                   this.putValue(ACTION_COMMAND_KEY, actionCommand);
              public void actionPerformed(ActionEvent ae)
                   // Clicking the save button switches icons (just to demonstrate)
                   Icon icon = (Icon)this.getValue(SMALL_ICON);
                   if (icon == saveIcon) putValue(SMALL_ICON, savedIcon);
                   else putValue(SMALL_ICON, saveIcon);
                   System.out.println("Save button fired");
              public SaveAction duplicate()
                   String actionCommand = (String)getValue(ACTION_COMMAND_KEY);
                   return new SaveAction(actionCommand, saveIcon, savedIcon);

  • How to point to another tab on click of a button in another tab?

    Hi all,
      I am creating an application in which I am using Tabbar and then referring separate canvas for each tab using viewstack.Now I have a button in in one tab and on click of the button i need to open another tab.For reusability i have created separate mxml for each functionality of subtabs.Please help me on how to link the click of button in one tab screen to another tab.
    Thanks in advance.

    I would suggest creating a custom event that contains the index of the tab (viewstack child) you are wanting to move too.  The button would dispatch the event and the tab navigator would require an eventListener to listen for the event type.  The handler for the eventListner would then take the index passed and make the change myViewStack.selectedIndex=2 (or whatever the custom event contained)
    Note:  you could also pass the name of the tab you were wanting to move to and set it that way.
    -Joe

  • When I attempt to open a new tab by clicking the "new tab" button on the tabs bar, the tab will not open. Can this be fixed and how?

    When I open my Firefox browser, the normal 1 tab comes up. But when I attempt to open new tabs with the "new tabs" button, a new tab will not open. I have also tried right-clicking on the tabs toolbar but tabs will not open. The only way I can get a new tab to open is by right-clicking on a link and selecting the "open new tab" option in the right-click menu.

    The Ask Toolbar is causing that in the Firefox 3.6.13 version. Disable that extension or un-install it.

  • In FF 7.0.1, the New Tab button on the Tab Strip disappeared after clicking the Tab Group icon and trying to return, so I'm looking for advice on how to get the New Tab to reappear on the Tab Strip.

    In Windows Vista, FF 7.0.1, I selected the Tab Group button to try it out. However, when I selected the Tab Group button again to close that view, the New Tab button in the Tab Strip no longer appears. I'm requesting help to restore the New Tab button (has the "+" sign on it) on the Tab Strip just to the right of the currently open tabs.

    You can find the New Tab button showing as a '+' on the Tab bar.
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.<br />
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.

  • When I click on the new tab button, a new tab does not open or when I go to file new tab a new tab will not open either.

    When I click on the new tab button, a new tab does not open or when I go to file new tab a new tab will not open either.

    Un-install the '''''Ask Toolbar''''' until Ask fixes the problem caused by their toolbar.
    *http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on

  • How do i add "open a new tab" button back to tabs & bookmarks back to the menu bar? i was able to click & drag bookmarks there and the tab button was always thr

    how do i add the "open a new tab" plus sign button, back to tabs & bookmarks back to the menu bar? i was able to click & drag bookmarks and folders containing bookmarks from the bookmark menu to a toolbar and the tab + button was always on the right side of a tab before i saw ff 13.0.1 on windows 7.
    areas i need back, have red around 'em
    http://i48.tinypic.com/25gue0x.jpg

    Somehow your bookmarks that normally appear on the separate Bookmarks Toolbar (the part on the left) got onto your main Navigation Toolbar. To move them back, return to Customize mode and drag "Bookmarks Toolbar Items" to the Bookmarks Toolbar. Then click Done and hopefully that will stick.

  • Is there any add on which i can reload all tabs from offline mode to online immediately without press the resend button in each tab?

    Hello to everyone!
    I want to ask if there is any add on to firefox which I can reload all tabs from offline mode to online mode immediately without press the resend button for each tab all the time.

    is it illegal to record a conversation without the other caller knowing?
    That depends on where you are... In the state of New Jersey, where I live, I believe that it is legal to record a conversation if at least one party to that conversation knows that it is being recorded, and there is no legal duty to inform the other party that the conversation is being recorded.
    This means that I could legally record all conversations I have with other people within the state of NJ, and likewise anybody whom I call or who calls me can record out conversations. However, it would be illegal for a third party to record out conversation without our knowledge and consent.
    Now the situation becomes more complex if I call somebody, or somebody calls me, across state lines... I've not made a study of the laws in every state, but I would not be surprised if there are states where both parties must give consent for the conversation to be recorded. This is probably the reason for the announcement "your call may be monitored and recorded for quality purposes" at the beginning of every call to customer support... 
    Wikipedia has a useful introductory article, and a quick Google search turns up much more information.
    http://en.wikipedia.org/wiki/Telephone_recording_laws
    http://www.google.com/search?q=legality+of+recording+telephone+conversations&ie=utf-8&oe=utf-8&safe=...
    K..

  • Using Firefox 26. How do I get a close button for each tab at the top of the screen?

    Some time ago, I had a close tab button for each tab on the top of the screen. I want that back. I have no additional add ons and the close tab is set to 1. Changing it to 2 does nothing.

    Do you have installed this extension?
    *Firefox/Tools > Add-ons > Extensions
    If you do not have the extension and also have no need for the feature that it provides then you can ignore this.
    If it works in Safe Mode and in normal mode with all extensions (Firefox/Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: Firefox > Quit Firefox; Linux: Firefox/File > Quit)
    You can use one of these to start Firefox in <u>Safe Mode</u>:
    *On Windows, hold down the Shift key while starting Firefox with a double-click on the Firefox desktop shortcut
    *On Mac, hold down the Options key while starting Firefox
    *Help > Restart with Add-ons Disabled
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to call a macro(check for unsaved data) before calling refresh button of EPM TAB

    Hi,
    I want to show a popup message for any unsaved data before USER hit the refresh button on EPM tab.
    I write the macro like as below in module
    Function TestForUnsavedChanges()
        If ActiveWorkbook.Saved = False Then
            If MsgBox("There is unsaved data, save the data otherwise u will loose the data. Do You Want to Save the Data ?", vbYesNo, "Warning") = vbYes Then
            bSave = True
            Else
            bSave = False
            Application.Undo
            End If
        End If
    End Function
    so how to execute this macro before Refresh ?
    Thanking in Advance !!

    Hi Nilesh,
    Try to add this macro under Function BEFORE_REFRESH.
    Hope this helps.
    Regards,
    Astha

  • Pressed "start transformation" button in test tab

    I created Data Type/Message Type/Message Interfaces/Interface mappings/Message Mappings for source/target system.
    when I pressed "start transformation" button in test tab in message mappings, I get a error:
    Mapping object MM_xxx incomplete. Unable to continue execution
    structure with min!=max without mapping
    Please help me,many thanks

    Mikenl,
    Usually this type of error comes when the mapping is not properly done . and Mandatory target fields are not mapped .
    there are plenty of threads in SDN with the similar problem . Kindly go thorugh them .
    http://forums.sdn.sap.com/search.jspa?threadID=&q=%22Unabletocontinueexecutionstructurewithmin!%3Dmaxwithoutmapping%22&objID=f44&dateRange=all&numResults=15&rankBy=10001
    Regards ,

  • Object Status button in Status tab of Item

    Hi All
    How can i configure to see Object status button in Status tab of item in the Sales order data.
    Please list down the steps.
    Right now i dont have Object status button.
    Thanks in advance
    Sonali

    Dear Sonali
    Create a Profile in BS02, maintain the required controls there and save.  Now go to VOV8, select your sale order type and execute.  There you can see the field "Status profile"  under the tab "Transaction flow".   Assign the profile here and save.
    Now create a sale order and check whether you could see the status profile.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Back-to-Back PO from Sales Order

    On Sap B1 2005 when we made a Back-to-Back PO's from Sales Orders the Sales Order information stayed on the screen in the background and was very handy when doing a multiple line items as we put the list prices on non-printable text lines for future

  • Slow Build in Builder 3 during Refresh

    I'm having an issue when I build my project it is very slow at: Building Workspace Building all....: Refreshing '/path/bin-debug' any ideas? Using Builder 3 Plug-In on Vista w/ remote ColdFusion 8 Server on LAN for output path. It can take a few minu

  • SAPRouter service is not starting Error:1067

         Hi All, I Installed a Sap Router on windows2008R2 with SNC, For installation i followed all the steps shown in below link SAProuter via SNC - Basis Corner - SCN Wiki  But when i am trying to  start the SAProuter service in the services it is not

  • Plugin Webservice in ClearSpace

    Hi all! I am working with clearspace at the moment but when I build a simple webservice plugin to clearspace successful I continue building a web client for request to simple webservice, that I have build. An error appear: my code java: public class

  • What's going on with my recent iTunes purchase?

    I bought the Dark Knight Trilogy on iTunes last night and the films showed up in my library and I was able to stream them without issue. However, today they're not in my library on my Mac or my iPhone, nor do they show up under the "purchased" sectio