Urgent: How to bring the workspace launcher window back in Eclipse

Hi all,
I accidently checked the "Use this as the default and do not ask again" checkbox appeared in the workspace launcher window in eclipse.
Now I want to create a new workspace. But don't know how to do it.
I guess if I can see the workspace launcher window in, probably I can create a new directory and lauched the eclipse, and then the new workspace will be created.
Any ideas. Thank you!

However if you want to cheange the workspace then you can do the following.
1. Find the shortcut of your eclipse
2. Right click on it, and select 'properties'
3. In the target text field, after the path of eclipse write -data path of workspace.
4. Apply
5. You have a new default workspace.
Check this link for any problems.
http://help.eclipse.org/help21/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/running_eclipse.htm
Also as much as I know you change the workspace very easilly when you create a new project.

Similar Messages

  • Urgent - How to deactivate the popup reminder window

    I want to know how to deactivate the reminder popup window when you restart a Captivate movie.
    I have an application made with Flash that load in wrapper some captivate movie. When i load a movie that i 've just loaded before, a popup reminder window with "do you want to continue from last slide..?"  appears. How can I deactivate this popup? Or Is it possible to change the language text of this window?
    Thank you very much for your help

    I believe that is controlled by the 'self paced learning' option in the table of contents settings.
    in windows, Project > Table of Contents > Settings (under the list of the TOC)

  • Urgent: How to bring the same pricing procedure in reversal order??

    Hi,
    We have recently implementated CIN at our client location. For the orders present in the system before CIN implementation, when we are creating the reversal orders, system is bringing the new pricing procedure with CIN condition types?
    Can we bring the same pricing procedure in the reversal order as in the sales order? 
    Please advise urgently.
    Regards,
    Peeyoosh.

    Dear Peeyoosh
    I am unable to understand from your comments
    "For the orders present in the system before CIN implementation, when we are creating the reversal orders"
    Please let me know how do you reverse a sale order.  To my knowledge, we can reverse delivery and billing but not sale order.  Either we can close the sale order by assigning some reason for rejection or delete the sale order.
    This being the case, please let me know why you are reversing and how you are reversing.  If you want the same pricing procedure for both normal sales and returns, then maintain the same pricing procedure for both document types.
    thanks
    G.  Lakshmipathi

  • Where is my sent folder how to bring the orginal sent folder back

    it seems that i set up another imap account's sent folder to be my sent folder..
    but when i send emails from my mac email.. the emails are not saved at all..at least they arent in a folder inn the mail program
    anyone have any suggestions..

    hi there
    i think you would be best off at this point to back up mail (see this attachment--you can also back up preferences if you wish http://docs.info.apple.com/article.html?artnum=301239) and then to set up the account all over again, or accounts. make sure you have correct incoming/outgoing mail server info, email addresses, etc., then delete account pressing the minus sign at bottom of page, then set it up again. then everything will be in working order. the article is straight forward, and guides you through importing the info back into the account. hope this helps you. 8)

  • How to deploy the Workspace Agent Services as a Window Service!

    Hi all,
    does anyone know how to install the Workspace Agent Service back as a Windows Service after i re-installed an reconfigured the workspace completly i do not see the Agent anymore in my Windows Services. I sure would like to avoid to have to uninstall and set it up completely again.
    The agent start file is located in common\workspacert\9.5.0.0\bin.
    Your help is much appreciated
    Cheers
    André

    I hit the same problem after reinstalling workspace.
    It seems that the config tool does not create the workspace agent service on subsequent configurations.
    A quick search of the configtool.log from the original installation/configuration yields the following:
    com.hyperion.avalanche.config.CoreService, INFO, Running command: D:\Hyperion\common\workspacert\9.5.0.0\bin\wksagent.exe -RegService -Auto -Name HyS9Core1 -DisplayName Hyperion Workspace - Agent Service -Description HyS9Core1, Provides service infrastructure to run services locally
    Dropping the above line at the command prompt fixed the issue for me.
    Cheers,
    Aaron
    Edited by: user8871938 on 15-Feb-2010 06:56

  • How to bring the data from application server to presentation server

    hi,
    i have one problem,i have written the program which will open the files in the application server when we run the program in the background(sm37),the same data from application server i want to bring into presentation server in the format of (.csv),how to bring the data from application to presentation server can any body help me on this  topic.folowing is the code .
    *& Report  ZPFA_HIER_LOAD
    REPORT  ZFPA_HIER_LOAD.
    *---- Declaration of Oracle connectioN
    DATA con_name LIKE dbcon-con_name VALUE 'COMSHARE'.
    DATA: MFL1(9),MFL2(5),MFL3(9),MFL4(2),MFL5(8) TYPE c.
    DATA : mfilename type string.
    data: begin of matab1 occurs 0,
          MFL1(9) TYPE C,
          MFL2(5) TYPE C,
          MFL3(9) TYPE C,
          MFL4(2) TYPE C,
          MFL5(8) TYPE C  ,
         end of matab1 .
    data: setid(8) type c.
    data: begin of source occurs 0,
          setid(8) type c,
          end of source.
    *PARAMETERS : p_pfile LIKE filename-FILEEXTERN.
    *PARAMETERS : m_bsenty(8). " type c obligatory.
    *mfilename = P_PFILE.
    EXEC SQL.
      SET CONNECTION :con_name
    ENDEXEC.
    EXEC SQL.
      CONNECT TO :con_name
    ENDEXEC.
    EXEC SQL PERFORMING get_source.
      SELECT set_id FROM UNIT_SET INTO
      :setid
      ORDER BY SET_ID
    ENDEXEC.
    start-of-selection.
    LOOP AT SOURCE.
      REFRESH matab1. CLEAR matab1.
      EXEC SQL PERFORMING evaluate.
    SELECT TO_CHAR(MEM_ID),TRIM(TO_CHAR(MEM_PID)) FROM UNIT_TREE INTO :MFL1,
    :MFL5
    where set_id = :SOURCE-SETID ORDER BY MEM_ID
      ENDEXEC.
      if SOURCE-SETID = '80000000'.
       mfilename = '/tmp/aesorg'.
      elseif SOURCE-SETID = '80000006'.
       mfilename = '/tmp/Consolidation_Manager'.
      elseif SOURCE-SETID = '80000010'.
       mfilename = '/tmp/10org'.
      elseif SOURCE-SETID = '80000012'.
       mfilename = '/tmp/20org'.
      elseif SOURCE-SETID = '80000018'.
       mfilename = '/tmp/30org'.
      elseif SOURCE-SETID = '80000025'.
       mfilename = '/tmp/40org'.
      Endif.
      mfilename = '/usr/test.dat'.
    ************************This was i tried***********************
      open dataset mfilename for output in text mode encoding default." IN
    *TEXT MODE ENCODING DEFAULT.
    if sy-subrc <> 0.
    exit.
    endif.
    close dataset mfilename.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         FILENAME         = MFILENAME
         FILETYPE         = 'ASC'
       TABLES
         data_tab         = matab1
       EXCEPTIONS
         file_write_error = 1
         invalid_type     = 2
         no_authority     = 3
         unknown_error    = 4
         OTHERS           = 10.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
      clear matab1.
    ENDLOOP.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
    close dataset mfilename.
         MFL5 = '0'.
       CLEAR MFL5.
    FORM evaluate.
      if MFL5 = -1.
        MFL5 = ''.
      ENDIF.
      concatenate MFL1 ','   into MFL1.
      concatenate MFL1 ','   into MFL3.
      matab1-MFL1 = MFL1.
      matab1-MFL2 = 'ZBUE,'.
      matab1-MFL3 = MFL3.
      matab1-MFL4 = ' ,'.
      matab1-MFL5 = MFL5.
      append matab1 .
      CLEAR MFL1.
      CLEAR MFL2.
      CLEAR MFL3.
      CLEAR MFL4.
      CLEAR MFL5.
    ENDFORM.
                     "evaluate
    *&      Form  GET_SOURCE
          text
    FORM GET_SOURCE.
      source-setid = setid.
      append source.
      clear source.
    ENDFORM.                    "GET_SOURCE

    Hi Rammohan,
    You cannot use OPEN DATASET to transfer data from application server to presentation server.
    You can do the following :
    <b>Do 1st point in BACKGROUND</b>
    1. Read the data file from application server into an internal table using OPEN DATASET
    <b>Do 2nd point in Foreground</b>
    2. Once you get the data into an internal table, then use FM GUI_DOWNLOAD to download it on presentation server
    You cannot use the above 2 point together in Background because its not possible. Hence you need program it partially in background and partially in foreground.
    Best regards,
    Prashant

  • How to remove the pop-up window ''Wireless Radio Status" for t430s

    Hi, I have owned my t430s for now about 2 years without any major complaints recently I've had to use the fn + f5 function quite frequently, because of my poor internet connection. so that way i can reset which signal I want to choose because the default signal I am connected to is not mine. My problem is similar to what is posted here: https://forums.lenovo.com/t5/X-Series-Tablet-and-Helix/how-to-remove-the-pop-up-window-Wireless-Radio-Status/td-p/1191059 I really want to get rid of the pop up for this feature, I've tried to follow what the other thread user's have done and try out their solutions but it does not work for my t430s i tried changing the pmev thing to what was posted in the thread. Can anyone help me? Thanks!  

    I already tried that as mentioned in my original post, it doesn't work. I still get the pop up message: this is me pressing fn + f5 

  • How to detect the HTML extension window close in In-design? Does the In-design throws any event on opening/closing of extensions?

    How to detect the HTML extension window close in In-design? Does the In-design throws any event on opening/closing of extensions?
    I have a HTML extension running in In-design CC 2014 version.
    I want to perform some required set of actions before my extension window is closed(by clicking on the cross button on top right corner).
    Does In-design throws any event for it? Or can we capture it using C++ plugin in some way?

    Naah.......haven't got any event for that yet.
    Although, since HTML extensions are using chromium browser,  as a workaround, u can attach listener to HTML onClose event, but it won't solve any purpose if you
    are looking to logout session or do some business login in your code.

  • How to bring the hyperlink in a JLabel object ?

    How to bring the hyperlink in a JLabel object ?
    I tried the following--> [ this is a sample ]
    JLabel label;
    label=new JLabel("<HTML><A HREF='file://D:/Examination/calc.exe'>Calculator</A></HTML>");Using this JLabel object in an JDialog the label comes perfectly with such a look of the hyperlink
    [ Blue coloured and underlined ] that's all !!
    It doesn't work anything that it should do.
    While all the html tags work perfectly in java then why the hyperlink in label doesn't ?
    If you have an idea then please send me the code.
    Thanks!

    see JXHyperLink at https://swingx.dev.java.net/
    Yeah, I looked at this. I agree with the other guy who said that all this does, presumably, is change the color of the text when the button is getting mousedover. That doesn't solve anything.
    As far as JEditorPane, it has its bad points and ... well, mostly bad points. However that's not really fair. JEditorPane was not designed to be on the level of an IE or FireFox.
    The BEST thing to use JEditor's web browsing facilities on is for creating your own documentation and help pages for software you are developing. Here is a list of some of the things JEditorPane does not come equiped with (as of 1.4 I haven't tried playing with it in 1.5):
    1. Form submission, PUT, and GET
    2. Download status
    3. Caching
    4. Cookies
    5. Plugins (ie Java, Flash, Quicktime)
    6. No javascript.
    Beyond that it is extremely brittle in parsing the HTML, and if the HTML is not totally well formed (and many pages are not) you won't get anything

  • How to bring the Cost of Depreciation to Costing

    Hi,
    How to bring the Depreciation Cost, Interest on Working capital to Costing.
    We have created the Cost components for those mentioned items and what criteria we can bring the values to Costing.
    Thanks
    Prasad

    It's a big topic, ahah.
    Depreciation, Interest and Capitals  must be different primary cost element, right?
    Maintain cost component structure TC:OKKN to make sure your cost component split is by primary cost element splitting. Assign the cost elements of depreciation, interest or capitals to relevant cost component.
    Two way to define the cost bring to cost components,
    1. Define splitting structure TC: OKES and assign to manufacturing cost centers TC:OKEW
    2. Conduct activity type dependent planning through TC:KP06.

  • How to Increase the Selection screen window length width big....

    How to Increase the Selection screen window length width big....  I cant able to do some enter text... because of the window size it gives error... can anyone help me out this...
    Thanks in advance

    hi,
    Maximum size is fixed for selection-screen.
    Split your text into different lines to fit it.
    Create a text element for your text and write it as comments.
    selection-screen begin of block b3 with frame title text-041.
      selection-screen begin of line.
        parameters : p_all radiobutton group g2 default 'X'.
        selection-screen comment 10(75) text-049.
      selection-screen end of line.
      selection-screen begin of line.
        parameters : p_iloc radiobutton group g2.
        selection-screen comment 10(75) text-050.
      selection-screen end of line.
    selection-screen end of block b3.
    Regards
    Sailaja.

  • How to Expand the Screen of Windows Server 2003 on VMware Server 2 ?

    Folks,
    Hello. Because Windows 7 is not compatible to be installed PeopleSoft PIA, I have to install VMware Server 2 and then install Windows Server 2003, that is compatible with PIA, on the virtual machine.
    But when I open Windows Server 2003 on the virtual machine, the screen of Win2K3 is very small, and its size is about 1/4 of the screen of my computer screen. This is not comfortable to work for a long time.
    Does any folks know how to expand the screen of Windows Server 2003 on VMware Server 2 virtual machine so that its size covers the entire screen of my computer ?
    Thanks in advance !
    Lucy

    Did you already installed the VMWare tools onto your VMWare guest OS ? Generally, it helps a lot to be able to redefine a larger screen definition.
    Nicolas.

  • How to save the credentials in windows security when opening a report?

    How to save the credentials in windows security when opening a report?
    in Silverlight program, user click a link to SQL server report services link, it pops up a new IE window and ask for windows security.
    Type the user name password in and check save password. reports showed and close IE. user click again, the same windows security popup dialog showed up. how to really remember the credentials?
    If keep the IE open, reports shows in second tab of the same IE window for the second click, and it didn't ask for the windows security.

    Hi Lascorpion,
    According to your description, users need to type username and password before they can open the SSRS report when reopening IE, right? If I have anything misunderstood, please point it out.
    Base on my research, this issue offten occurs on IE9 which ships with Windows 7 operating systems. In this case, to avoid this issue we can add the report URL to the trust site, for the detail information, please refer to the link below.
    SSRS Prompt for username and password in IE
    Regards,
    Charlie Liao
    TechNet Community Support

  • How i fix the problem on windows 7  itunes could not connect to the iphone because an invalid response was received from the device

    How i fix the problem on windows 7  itunes could not connect to the iphone because an invalid response was received from the device

    take a look at https://discussions.apple.com/message/24243668#24243668.  i had this problem and that solved it for me.

  • How to bring the labour cost into costestimate

    Hi friends,
    How to bring the labour cost into costing run, please let us know. i have given the configuration settings but i am not able to get the accurate result. so friends please help me on this.
    where were i have to give the config settings and the   links please tell me.

    Dear,
    The cost sheet format is,
    1. Material cost,
    *2. Labour cost -
    SPRO -> Controlling -> Product Cost Controlling -> Product Cost Planning -> Basic Settings for Material Costing -> Overhead -> Costing Sheet: Components -> Define Calculation Bases*
    1. Here just check whether you have assigned the Labour cost Cost elements with Labour group or not.
    2. T Code - OKTZ : Check whether you have assigned the Cost elemnts here or not
    3. Labour cost is based on : Activity types and Cost center figures updation in KP26
    Let us know if you still need any help
    Thanks
    Edited by: nkonnipati on Feb 15, 2012 4:01 PM

Maybe you are looking for