Problem with extending an extended class

Hi JDC
I have to use a scrolled list several times among my program so I create a class named ScrolledList that extends Jpanel and an inner class that extends ScrolledLIst.
The problem shows up when I?m trying to add an item inside the inner class, the code pass compilation, it even enter the addItem() but its dont add item
public class ScrolledList extends JPanel{
  DefaultListModel dlm = new DefaultListModel();
  JList list = new JList();
  JScrollPane js = new JScrollPane(list);
  ScrolledList(){
    setLayout(new BorderLayout());
    add(js,BorderLayout.CENTER);
}here is the class i use whenever i need this scrolled list:
public class innerClass extends ScrolledList{
  public void addItem(String item){
    System.out.println("addItem invoked...");
    this.dlm.addElement(item);
  public static void main(String[] args) {
        JFrame frame = new JFrame("InnerClass");
        frame.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {System.exit(0);}
        frame.getContentPane().add(new innerClass(),
                                   BorderLayout.CENTER);
        frame.setSize(400, 125);
        frame.setVisible(true);
        innerClass ic = new innerClass();
        ic.addItem("Shay");
}what im doing wrong(code example please)?
Thanks

Hi
i tried this , its still dont add item to the list:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ScrolledList extends JPanel{
  //List variables
  private DefaultListModel dlm = new DefaultListModel();
  private JList clientsList = new JList(dlm);;
  private JScrollPane clientScroll = new JScrollPane(clientsList);
  public final  boolean PRINTLN=true;
  public  void p(String out){
    if(PRINTLN)
      System.out.println(out);
  public ScrolledList() {
    try {
      jbInit();
    catch(Exception e) {
      e.printStackTrace();
  private void jbInit() throws Exception {
    this.setLayout(new BorderLayout());
    this.add(clientScroll);
   public void addClient(String client){
    p("addClient invoked....");
    dlm.addElement(client);
  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new ScrolledList());
      frame.addWindowListener(new WindowAdapter() {
        public void windowClosing(WindowEvent e) {
          System.exit(0);
      frame.setSize(300,300);
      frame.setVisible(true);
      ScrolledList s  = new ScrolledList();
      s.addClient("Shay");
}thanks

Similar Messages

  • Are there any problems with a "required Extended Protection" / "Always On" / "Livelink Server" combination?

    Hello,
    we have a Livelink  Server database running with two replicas on two nodes as Always On Group, both instances running extended protection in "allowed" mode.
    Our company security policy demands setting the extended protection to "required".
    Are there any known problems with a "required Extended Protection" / "Always On" / "Livelink Server" combination?
    Environment:
    OS: Windows Server 2008 R2 Enterprise X64 SP1
    DB: SQL Server 2012 (11.0.5556.0)
    Thx & BR
    Achim

    Hi Achim,
    According to my knowledge, there are no known problems with a "required Extended Protection" / "Always On" / "Livelink Server" combination.
    Extended Protection helps to prevent an authentication relay attack by using service binding and channel binding. We need to note that when Extended Protection is set to
    Required, only connections from protected applications on protected operating systems are accepted. This setting is the most secure but connections from operating systems or applications that do not support Extended Protection will not be able
    to connect to SQL Server. For more details, please review the following article.
    Connect to the Database Engine Using Extended Protection
    https://msdn.microsoft.com/en-us/library/ff487261(v=sql.110).aspx
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Problem with running the midlet class (Error with Installation suite )

    hi everyone...
    i have problem with running the midlet class(BluetoothChatMIDlet.java)
    it keep showing me the same kind of error in the output pane of netbeans...
    which is:
    Installing suite from: http://127.0.0.1:49296/Chat.jad
    [WARN] [rms     ] javacall_file_open: wopen failed for: C:\Users\user\javame-sdk\3.0\work\0\appdb\delete_notify.dat
    i also did some research on this but due to lack of forum that discussing about this,im end up no where..
    from my research i also find out that some of the developer make a changes in class properties..
    where they check the SIGN DISTRIBUTION...and also change the ALIAS to UNTRUSTED..after that,click the EXPORT KEY INTO JAVA ME SDK,PLATFORM,EMULATOR...
    i did that but also didnt work out..
    could any1 teach me how to fix it...
    thanx in advance... :)

    actually, i do my FYP on bluetooth chatting...
    and there will be more than two emulators running at the same time..
    one of my frens said that if u want to run more than one emulator u just simply click on run button..
    and it will appear on the screen..

  • Problem with HP-UX extended procedures that use C++ Standard library

    I am experiencing a problem with using the C++ standard library on HP-UX inside my extended procedures.
    Here is the definition for the library and procedures:
    -bash-3.2$ more nuhash2.sql
    CREATE OR REPLACE LIBRARY xp_nuencryption_l
    AS
    '/home/jchamber/datasecure/lib/libxp_nuencryption.sl';
    CREATE OR REPLACE PACKAGE xp_nuencryption
    AS
    PROCEDURE xp_nuhash2;
    END xp_nuencryption;
    CREATE OR REPLACE PACKAGE BODY xp_nuencryption
    IS
    PROCEDURE xp_nuhash2
    IS EXTERNAL
    LIBRARY xp_nuencryption_l
    NAME "xp_nuhash2"
    LANGUAGE C;
    END xp_nuencryption;
    Here is the PL/SQL test program:
    -bash-3.2$ more testnuhash2.sql
    SET SERVEROUTPUT ON SIZE 1000000
    DECLARE
    BEGIN
    xp_nuencryption.xp_nuhash2 ();
    END;
    Here is the implementation of the extended procudure - notice how we are using the C++ Standard library:
    -bash-3.2$ more xp_nuhash2.cpp
    #include <string.h>
    #include <iostream>
    #include <fstream>
    class MyException {
    public:
    MyException() {}
    int func(std::ofstream& fout )
    fout << "func: About to throw exception in func()" << std::endl;
    throw MyException();
    extern "C"
    void xp_nuhash2 ()
    std::ofstream fout("/home/jchamber/xp_nuhash2.txt");
    try {
    fout << "xp_nuhash2: About to call func()" << std::endl;
    func(fout);
    catch (MyException& ex) {
    fout << "xp_nuhash2: caught MyException" << std::endl;
    fout << std::flush;
    fout.close();
    Here is how we build the library on HP-UX:
    # compile
    aCC -g -AA DA2.0W DS2.0 +z -c xp_nuhash2.cpp -o xp_nuhash.o
    #link using aCC
    aCC -g -AA DA2.0W DS2.0 +z -b -o /home/jchamber/datasecure/lib/libxp_nuencryption.sl xp_nuhash.o \
    /usr/lib/pa20_64/libstd_v2.a \
    /usr/lib/pa20_64/libCsup_v2.a
    chatr +dbg enable /home/jchamber/datasecure/lib/libxp_nuencryption.sl
    Here is how we test:
    SQL> @nuhash2
    Library created.
    Package created.
    Package body created.
    SQL> @testnuhash2
    DECLARE
    ERROR at line 1:
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "JCHAMBER.XP_NUENCRYPTION", line 0
    ORA-06512: at line 3
    Now, if i use classic C++ (aCC -AP) it works. The trouble is, we have a lot of code that uses the Standard C++ library and we don't have the time to port it back to classic C++.
    The problem seems to be with an incompatibility with the standard C++ library. What is the magic potion of linker and/or compiler switches that would enable my extended procedures to use the standard C++ library?
    Here is the environment we are using:
    Oracle 9i (64-bit)
    HP UX 11.11
    Regards

    I am experiencing a problem with using the C++ standard library on HP-UX inside my extended procedures.
    Here is the definition for the library and procedures:
    -bash-3.2$ more nuhash2.sql
    CREATE OR REPLACE LIBRARY xp_nuencryption_l
    AS
    '/home/jchamber/datasecure/lib/libxp_nuencryption.sl';
    CREATE OR REPLACE PACKAGE xp_nuencryption
    AS
    PROCEDURE xp_nuhash2;
    END xp_nuencryption;
    CREATE OR REPLACE PACKAGE BODY xp_nuencryption
    IS
    PROCEDURE xp_nuhash2
    IS EXTERNAL
    LIBRARY xp_nuencryption_l
    NAME "xp_nuhash2"
    LANGUAGE C;
    END xp_nuencryption;
    Here is the PL/SQL test program:
    -bash-3.2$ more testnuhash2.sql
    SET SERVEROUTPUT ON SIZE 1000000
    DECLARE
    BEGIN
    xp_nuencryption.xp_nuhash2 ();
    END;
    Here is the implementation of the extended procudure - notice how we are using the C++ Standard library:
    -bash-3.2$ more xp_nuhash2.cpp
    #include <string.h>
    #include <iostream>
    #include <fstream>
    class MyException {
    public:
    MyException() {}
    int func(std::ofstream& fout )
    fout << "func: About to throw exception in func()" << std::endl;
    throw MyException();
    extern "C"
    void xp_nuhash2 ()
    std::ofstream fout("/home/jchamber/xp_nuhash2.txt");
    try {
    fout << "xp_nuhash2: About to call func()" << std::endl;
    func(fout);
    catch (MyException& ex) {
    fout << "xp_nuhash2: caught MyException" << std::endl;
    fout << std::flush;
    fout.close();
    Here is how we build the library on HP-UX:
    # compile
    aCC -g -AA DA2.0W DS2.0 +z -c xp_nuhash2.cpp -o xp_nuhash.o
    #link using aCC
    aCC -g -AA DA2.0W DS2.0 +z -b -o /home/jchamber/datasecure/lib/libxp_nuencryption.sl xp_nuhash.o \
    /usr/lib/pa20_64/libstd_v2.a \
    /usr/lib/pa20_64/libCsup_v2.a
    chatr +dbg enable /home/jchamber/datasecure/lib/libxp_nuencryption.sl
    Here is how we test:
    SQL> @nuhash2
    Library created.
    Package created.
    Package body created.
    SQL> @testnuhash2
    DECLARE
    ERROR at line 1:
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "JCHAMBER.XP_NUENCRYPTION", line 0
    ORA-06512: at line 3
    Now, if i use classic C++ (aCC -AP) it works. The trouble is, we have a lot of code that uses the Standard C++ library and we don't have the time to port it back to classic C++.
    The problem seems to be with an incompatibility with the standard C++ library. What is the magic potion of linker and/or compiler switches that would enable my extended procedures to use the standard C++ library?
    Here is the environment we are using:
    Oracle 9i (64-bit)
    HP UX 11.11
    Regards

  • Problem with airport express extending wifi from extreme

    My setup is an airport extreme wired to the internet with two iMacs connected by wire and an airport express to extend wifi from the extreme to the further parts of my house.  When originally installed about a year ago this arrangement worked perfectly, but I noticed a few weeks ago that neither my iphone, ipad, nor my MBP 13" is connecting to the aitport express anymore and the network extension is not working as intended.
    Last night I investigated the isue and found that the express is connected wirelessly to my extreme because when I wired my MBP to the express and turned off the wireless connection it could still reach the internet.  But, even with the express sitting plugged in next to my iPhone I could not get it to connect to the express - it always uses the extreme and while I'm in range there is no problem.  The problem is that my house is old and the wals tend to cause problems with reception and I can't get wifi in the garden and some parts of the house.
    I have the express and the extreme configured to allow access only by the client macs that I have provided and it looks like the two devices share this information when they are in extend mode (but not sure about that).  When I set up the system I added the aitports mac addresses to the approved list in the access control screen, which seemed to be necessary then though I removed them (the airport mac addresses) fromt he list last night to see what effect this had and biefly the airport did connect to my MBP.  But after returning it to its location where it usually is I have not been able to reconnect to it.
    In brief;  I have an airport express extending an airport extreme wifi, it used to work, but now all wifi clients will only connect to the master.  I have a suspicion that a recent airport update has caused this (both airports are up-to-date) but can't be sure.  I have the express correctly configured to extend the wifi of the extreme as it was originally working.
    One thing I have noticed - I had the express set to use a fixed IP by setting 'static' in the internet screen - this is not the current setting (it's reverted to DHCP) and I cannot force it to update to and remain set to static.
    Does anyone know how I can restore the correct functioning of the express as an extension of the wifi network?
    Thanks
    Damon

    Perform the Factory Default Reset one more time. Hold the reset button until the amber light has been blinking rapidly for 8-10 seconds before you release the reset button
    Run the setup wizard, and wait for screen similar to this to appear, then click on Other Options:
    Select the Add to an existing network option, then click Next and follow the prompts.
    If you are still having difficulty, try running the setup utility on an iPhone or iPad, since Yosemite has a number of bugs in the setup process.

  • Problems with installing CS5 extended

    Hi, I'm in the process of setting up a new computer and had no problems with installing Lightroom but installing photoshop CS5 is proving to be a real pain. At first it refused to install itself and after many hours of trying it finally did but then I found out I needed to update camera raw so I downloaded that but that one now is refusing to install itself. At first it told me the Applications manager needed to be updated so I did that and still it refuses to install itself. I have tried to get help from Adobe but not a single person is responding to my requests for help so I am now trying the forums so does anyone know what is going on with it?
    Thanks!

    Do a search on adobe's site for the specs of cs5 and make sure your system will support it. Also see if your OS is listed as being supported. It is possible that cs5 is too old for your system.
    For  now all we can do is guess. Maybe someone else will have an idea.

  • Problem with setContentPane() in JFrame class

    I recently discovered a problem with the setContentPane method in the JFrame class. When I use setContentPane(Container ..), the previously existing contentPane remains in the stack. I have tried nullifying getContentPane(), and all manner of things, but, each time I use setContentPane, I have another instance of a JPanel in the stack.
    I'm using code similar to setContentPane(new CustomJPanel()); and each time the user changes screens, and a similar call to that is made, the old CustomJPanel instance remains in the stack. Can anyone suggest a way around this? On their own the panels do not take up very much memory, but after several hours of usage, they will build up.

    I tried what you suggested; it only resulted in a huge performance decrease. The problem with memory allocation is still there.
    Here is the method I use to switch screens in my app:
    public static void changeScreen (JPanel panel){
              try{
                   appFrame.setTitle("Wordinary : \""+getTitle()+"\"");
                   appFrame.setContentPane(panel);
                   appFrame.setSize(appFrame.getContentPane().getPreferredSize());     
                   appFrame.getContentPane().setBackground(backColour);
                   for (int i = 0; i < appFrame.getContentPane().getComponents().length; i++)
                        appFrame.getContentPane().getComponents().setForeground(textColour);
                   //System.out.println("Background colour set to "+backColour+" text colour set to "+textColour);
                   appFrame.validate();
              catch (Exception e){
                   //System.out.println("change");
                   e.printStackTrace();
    And it is called like this:
    changeScreen(new AddWordPanel());The instantiation of the new instance is what is causing the memory problems, but I can't think of a way around it.

  • Problem with Dynamically accessing EJB Class objects in WL 7.0 SP1

    I am trying to build a component which has the ability to instantiate and execute
    an known EJB method on the fly.
    I have managed to build the component but when I try and execute it I get a ClassNotFoundException.
    I know that the EJB I am trying to invoke is deployed and available on the server,
    as I can see it in the console, I also seen to have been able to get the remote
    interface of the object, my problem occurs when I try and access the class object
    so I can perform a create on the object and then execute my method
    The code I have written is below:
    private Object getRemoteObject(Context pCtx, String pJNDIName, String pHomeBean)
    throws Exception {
         String homeCreate = "create";
         Class []homeCreateParam = { };
         Object []homeCreateParamValues = {};           
    try {  
    //This call seems to work and doesn't throw an exception     
    Object home = pCtx.lookup(pJNDIName);
    //However this call throws a java.lang.ClassNotFoundException
    Class homeBean = Class.forName(pHomeBean);
    Method homeCreateMethod = homeBean.getMethod(homeCreate,homeCreateParam);
    return homeCreateMethod.invoke(home, homeCreateParamValues);
    } catch (NamingException ne) {             
    logStandardErrorMessage("The client was unable to lookup the EJBHome.
    Please make sure ");
    logStandardErrorMessage("that you have deployed the ejb with the JNDI
    name "+pJNDIName+" on the WebLogic server ");
    throw ne;
    } catch (Exception e) {
    logStandardErrorMessage(e.toString());
    throw e;     
    Any advice would be really appreciated, I'm fast running out of ideas, I suspect
    it has something to do with the class loader but I'm not sure how to resolve it
    Regards
    Jo Corless

    Hello Joanne,
    Congratulations! I'm very happy that you've managed to fix your problem. It's
    always essential to understand how to package applications when deploying on BEA
    WebLogic. Usually, by throwing everything into an EAR file solves just about all
    the class loader problems. :-) Let us know if you have any further problems that
    we can assist you with.
    Best regards,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    "Joanne Corless" <[email protected]> wrote:
    >
    >
    I've fixed it!!!!!!!!
    Thanks to everyone who gave me help!!!!
    The class loader was the culprit which is what I suspected all along.
    As soon
    as I put the 2 jar files I was using into an EAR file the problem went
    away!!!!!
    Thanks again
    Jo Corless
    "Ryan LeCompte" <[email protected]> wrote:
    Hello Joanne,
    As Mr. Woollen mentioned, I also believe it's a problem with the class
    loader.
    You need to be careful how you arrange your EJBs, because WebLogic has
    a specific
    method in which it loads classes in an EAR, JAR, and WAR file(s). Please
    refer
    to http://dev2dev.bea.com/articles/musser.jsp for more information about
    BEA WebLogic
    class loading mechanisms and caveats. Also, try printing out the various
    methods
    that are available on the object that was returned to you via reflection.
    For
    example, use the getMethods() method, which returns an array of Method
    objects
    that you can subsequently cycle through and print out the various method
    names.
    This way you can discover if the class found/returned to you is indeed
    the one
    you intend to locate.
    Hope this helps,
    Ryan LeCompte
    [email protected]
    http://www.louisiana.edu/~rml7669
    Rob Woollen <[email protected]> wrote:
    I believe the issue is the home interface class for this EJB is not
    available in the class loader which is doing the reflection.
    If you do:
    getClass().getClassLoader().loadClass(homeInterfaceClassName)
    I suspect it will fail. Reflection still requires that the class be
    loadable.
    -- Rob
    Joanne Corless wrote:
    Hi Slava,
    If I make my code look like you describe below I get a compliationerror telling
    me that
    home.getMethod() is not recognised (no such method)
    If I change it slightly and use
    Method homeCreateMethod =
    home.getClass().getMethod(homeCreate,homeCreateParam);
    The code will compile OK but when executed it still throws a NoSuchMethodException
    Any ideas ?
    Thanks for your help so far
    Regards
    Jo Corless
    Your code should look like
    Object home = pCtx.lookup(pJNDIName);
    Method homeCreateMethod =
    home.getMethod(homeCreate,homeCreateParam);
    return homeCreateMethod.invoke(home, homeCreateParamValues);
    Regards,
    Slava Imeshev
    "Joanne Corless" <[email protected]> wrote in message
    news:[email protected]...
    Hi Ryan,
    I also wanted to mention that if you do a "header search" in this
    particular
    newsgroup
    with the search query as "reflection", you will see many previousmessages
    regarding
    reflection and EJBs. I believe you could learn a lot from thedifficulties
    that
    others have faced and solved.I tried that and although there was a number of similar cases noneof them
    actually
    seem to fix my issue. Thanks for the suggestion though
    Are the EJBs that you are trying to access accessible via your
    system
    classpath?
    Try to avoid having them accessible via the main system classpath,and
    only bundle
    them in your appropriate EJB jar files (contained in an EAR file,for
    example).Maybe I should have laid the problem out a little clearer.
    I have a number of EJB's bundled up in a JAR file which is hot deployedto
    the
    server. Within this first JAR file is an EJB (SSB) component that
    needs
    to
    be
    able to invoke a known method on another EJB. This second EJB may
    or
    may
    not be
    within the first JAR file but it also will be hot deployed.
    The component trying to invoke the method on the 2nd EJB has to
    be
    able to
    create
    an instance of the 2nd EJB without actually knowing anything bar
    a
    JNDI
    Name which
    is passed in at runtime.
    I can get as far as doing the
    Object home = pCtx.lookup(pJNDIName);
    This returned a class with the name
    "com.csc.edc.projects.allders.httppostoffice.postman.PostmanBean_mp8qy2_Home
    Impl_WLStub"
    My problem seems to occur when I try and invoke the create method
    Method homeCreate = home.getClass().getMethod("create", new Class[0]);
    My code throws a java.lang.NoSuchMethodException at this point so
    I
    am
    unable
    to progress to the next step of :
    Object bean = homeCreate.invoke(home, null);
    So I can return the instantiated bean back to the calling client.
    Why am I getting the NoSuchMethodException, is is because I am gettinga
    stub
    back rather than the home interface and if so how do I get the truehome
    interface
    from the bean
    Thanks in advance
    Jo Corless

  • Problems with Sandisk 16Gb microsdhc Class 2 in N8...

    Hello to you all..
    Yesterday my 16Gb microSDHC died... I wanted to charge my phone and suddenly the phone freezes and it refused to turn back on. So I decided to eject the 16Gb card and gladly I managed to turn my phone back on. So the problem was the microSDHC card. I had tested it with my PC but no response..
    This is my 2nd 16Gb card!! I never had problems with the standard 8Gb card..
    So finally I went to the shop and returned the dead card and got a refund.So now I am back to my old 8Gb card and till now everything works fine.
    But is there somebody else that had problems with a 16Gb microSDHC card in a N85 (particulary Sandisk)? Because I think the card reacted on some sort of Voltage level that he could not handle... Can this be possible?
    Black Nokia N97, productcode 0585162 FW V20.0.19 NL and 8Gb microSDHC A-data card

    hi n97fanboy
    The class thing is to do with the minimum write speed of the cards, and thus the class only describes "how good" a card is for the type of device the card is used with. Some devices require slower speed cards than others, some devices might require faster ones. Grschinon further up this thread indicated that class 2 may be too slow for the N85, and that it's minimum write speed is that of a class 4, which is the class of the micro SHDC card that the UK version of the N85 is supplied with. This makes sense.
    However, the Nokia website states that the N97 and N85 is compatible with their Class 2 16GB card, but we're not sure that this is correct given the behaviour of Sandisk Class 2 16GB cards in the device (I've had one fried, and almost lost the second one). Personally I've gone back to the 8GB Class 4 supplied with the phone, and will try and find a larger class 4 or above card at a later date.
    I'm sorry I can't help with the best card for the N97 as I've only played with the device in the Nokia Store. If it comes supplied with a microSDHC card, check for the digit on that card. If you do decide to upgrade it to a larger card, you should stick to the same class number it has or a larger one, from the experiences dkawa and myself have had with the N85. Best to try and get someone from Nokia's technical department's to confirm.
    HTH
    S.
    Black/Copper N85 sw v.30.019 Nokia 8GB Class 4 microSDHC

  • Problem with name of Servlet Class

    Hi to all,
    I have a class named AClassName and it work fine when a spider come in my web site he try to connect to the class named aclassname. I try to create a class with all lower case letter, but in windows system it's not possibile to have in the same directory a file named AClassName.class and one with the name aclassname.class
    Any help will be appreciated
    Regards
    Rinaldo

    you can solve this using servlet mapping,
    which is the correct way to call servlets,
    instead of using the invoker
    <servlet-mapping>
       <servlet-name>ListaLoc</servlet-name>
       <url-pattern>/listaloc</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
       <servlet-name>ListaLoc</servlet-name>
       <url-pattern>/ListaLoc</url-pattern>
    </servlet-mapping>

  • Printing Problem with CS 6 extended and Canon Pro 9500

    My prints are no longer coming out centered. I have the "center" box checked in the CS6 print dialogue box. The prints are not centered left to right or top to bottom.
    This seems to be a problem since I upgraded to CS 6 extended and or newest print driver for my Canon Pro 9500.
    I believe that since I did one or both of these changes there is a border (consitst of slanted hash marks around the perimiter of the print dialogue picture) in the preview of the print.
    The border segments left and right are not equal and are very uneven in width. The top and bottom borders are closer but still not even in width.
    Can anyone help me with this issue?
    Thanks,
    Dennis

    Hi there! Because the forum you originally posted in is for beginners trying to learn the basics of Photoshop, I moved your question to the Photoshop General Discussion forum, where you'll get more specialized help.
    You will be able to continue your current conversation with PECourtejoie without inturruption.

  • Spaces and problems with windows on extended desktop (Cinema 20")

    I have got a MacBook connected to a Cinema Display 20". When I move a certain window (but this is happening maonly with Mail received messages windows) on a certain space, it should open the next messages always on the same display where the space is located (if you have the extended display the space is double) but on the contrary every message comes on the wrong side of the space. This was not happening till some days ago but now it is always like this. Is there any preference file that I can cancel so that the situation can be fixed as it was in the beginning? I hope I have explaind myself... Thanks

    Up please!

  • Problem with Photoshop CS6 Extended upgrade

    I have been using CS6 on both my desktop MacPro and my laptop Macbbok Pro.
    In the last few days, whenever I open photoshop on my desktop, it is the EXTENDED version and indicates that I am in a trial period for the next 30 days.
    I never purchased or requested this extended version.  I don't know where it came from.
    I want to get rid of it and go back to using my standard version of CS6.
    How do I do that?

    Install the latest 13.0.4 update or run the Creative Suite Cleaner Tool and reinstall from scratch. Look up the relevant detailed explanations in the various threads on the topic in the PS forum.
    Mylenium

  • Problems with Unicode in extending JCo with JNI/librfc

    Hello,
    Problem:
    We are using JCo for communication with a SAP-System. We have an extension written in C using JNI for handling callbacks. Let's call it cb.dll.
    This extension is not unicode enabled. Now we have to connect to an unicode SAP-System. We do it with JCo, so the connection is in unicode mode. The result is, that our cb.dll does not work.
    If you want to enable the dll to handle unicode, the last step beside reengineering the C-code, is to link it against the librfc32u.dll.
    But then the communication in the cb.dll with SAP does not work, because the initial connection was made with JCo an JCo is using librfc32.dll. The cb.dll uses the RFC-handle from JCo.
    Question:
    How communicates JCo with a unicode SAP-System using librfc32 (non unicode) ?
    How can I use this method for our own dll ?
    thanks in advance

    The current settings are
    select * from nls_database_parameters
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET UTF8
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.1.0.3.0
    20 rows selected
    I use NVARCHAR2 as Datatype.
    My problem is as follows ...
    I use the oracle Table as external Data Table in Access. When I copy a russian text from an Access Table in the oracle Table I see only ??????. In the Access Table I see the correct russian text.

  • Problems with starting PS6 extended

    I'm getting error 1 on starting up a registered Ps6 extended version.   I'm using win7 64 home premium.
    The programm worked fine the last days but suddenly this error come up when starting.
    The standrad trick ctrl-alt-start during start up didn't work
    An additional information. When I try to deinstall it, ther is a message, that it is already deinstalled
    I hope someone can help

    Do a search on adobe's site for the specs of cs5 and make sure your system will support it. Also see if your OS is listed as being supported. It is possible that cs5 is too old for your system.
    For  now all we can do is guess. Maybe someone else will have an idea.

  • Upgrade problem with Photoshop C6 extended

    Upgrade didn't perform correctly. In the "about screen", I get Version 13.0 x64 instead of heaving Version 13.0.5 x64.
    This seam to provoke crash when lauching from LR4.
    How can I correct this?
    Reinstall upgrade? And How can I? in fact now it's said that there is no upgrade!
    Thanks for help
    Michel

    Thanks for reply PECourtejoie!
    I see that I forgot to mention that I use a Mac Pro with Mountain Lion 10.8.4
    I did the upgrade on my MBP, I didn't got any problems!
    In the mean time, I went further, by simply killing the CS6 .app file. And reinstall, I got than the possibility to ugrade CS6 and CaméraRaw.
    But, I stil have crash when opening CS6 from LR4 or 5! More info, if in LR (4 or 5) I create a new external editor that is CS6, I can open the image in CS6 without any crash!
    After a long search, I think I will uninstall CS6, use CreativeSuiteCleaner and then reinstall. But, as I have read many comments on that tool, I don't feel very secure.
    What do you mean by "extreme caution"? Is this only about to follow precisely the procedure or does the tool have some time "strange behaviour"?
    Thanks by advance

Maybe you are looking for

  • Dreamweaver CC: Preview in Browser Not Working

    I am new to Dreamweaver CC, but I've used other versions of Dreamweaver extensively. Since I've installed CC, by Preview in Browser has not worked. When I click it, and choose my browser (this issue occurs with ANY browser I choose), it opens my chos

  • Auto levels on import preset

    I tried a search to see how you can get AP3 to do an "auto levels" adjustment during import, but I am not sure how to do it. If I do an "auto" adjust on an image and then create a preset, does AP3 apply the levels based on that particular file used,

  • Ques. about upgrade from FCP4 to FCPHD

    i need a article or something on the differences between FCP4 and FCP HD. I see a few but one thing that happened is when i go to capture i cant get the video to show up. i can control the device and my counter is moving but no picture. any info or a

  • Regarding Login session doesnt expire

    If i close the browser(presentation services) without logging out, the next time i click the url from history or from my favorites its loggin me into the application without asking my username and password. how do i end the session automatically when

  • BT Infinity 2,taking up the challenge.

    I have decided to take up the challenge to try  to fight the software and hardware that is used in the cabinet DLM that persists on lowering my profile and governing the throughput. I own everything that is connected on my side of the OR master socke