What make's java different from other kinds of programming?![/b]

How is it different from the other programs like the turbo programming and all those other stuff?!

you jut can't copare Java to every other programming language. each language are designed differently. an answer to your question ccould well be 100,000+ pages (single space). There are many programming languages..most of which..you and i have never heard of.
Many programming languages are created to target a specific domain (intentionally or unintentionally).
1. procedural language (c, c++, fortran, basic, pascal)
2. object oriented (java, small talk, c#, c++) - although c++ and Java are hybrid
3. metalanguage (HTML)
4. recursive (ML)
5. logic (Prolog)
6. forgot the category) (Schema, LiSP)
Shema and Lisp are more suited for writing artifical inteligence. Java is more toward solving buisness problem. Choosing the right language culd means ease of development and saving in cost, and possibly performance.

Similar Messages

  • What's manageddisabledrole different from other role?

    I tried to understand what exactly the manageddisabledrole is different from other custom role? Maybe some ACL controls this role? How does the users got disabled by being a member of this role?
    So if i don't like the manageddisabledrole, can i create a new role and make it function just like manageddisabledrole?
    Anyone here gives me an insight to this? I cannot find any docs that explains about this.
    Thanks

    Thanks for your reply, but I'm still confuse. I still
    have few more questions to be clarify.
    1. By definition, CoS allows you to share attributes
    between entries. In this case, the
    nsAccountInactivation_cos shares the nsaccountlock
    attribute between entries. Is this correct?Correct.
    2. If so, where do I find the template entry? If it
    works right, the template entry must have the
    atttribute nsaccountlock with the value = true in it.
    How do I locate this template entry in the
    directory?CoS and Role definition and template entries usually have objectclass ldapSubentry - this is a special objectclass used to create administrative entries (like operational attributes, only entries). In order to do a search to find these entries, you must include the filter (objectclass=ldapSubentry) in your search request. So, if you wanted to find these definitions under your suffix, do a search like this:
    ldapsearch -s one -b dc=yoursuffix,dc=com -D "cn=directory manager" -w password "objectclass=ldapSubentry"
    The CoS template entry is as specified in the CoS definition entry:
              cn="cn=nsDisabledRole,<your suffix>",cn=nsAccountInactivationTmp,<your suffix>"
    3. How does this nsAccountInactivation_cos CoS
    related with the nsManagedDisabledRole role? I don't
    see any relationship between these two. Maybe I
    still don't understand well about Cos and Role.They are not easy to understand, but then, many powerful features are not easy to understand at first.
    >
    Thanks alot

  • SAP BO different from other products

    Hi All,
    Just wanted to know how is business Objects different from other products and why it is a niche technology ?
    Thanks,
    Anupam

    Thats a nice query Anupam I have often wondered about this query, however the only conclusion I could come up with is SAP BO is being largely used for web based analytics which is a great benefit for everyone. It can be integrated with various web servers and with other products and third party product tools easily.
    I do not have any expertise on oracle BI, but I believe it works in similar lines with SAP BO.
    What matters to end - users and top management is the result irrespective of software being used
    The only result they look forward to is get real time analysis of data in any manner or reports. The security of data are other aspects as well, after all confidentiality is very important at current times. They are not worried whether we use Java or .net SDKs
    I guess you are working on some projection of BO implementation over other products.
    The best projection can be made would be with records retrieved, speed of analysis, formats available, visualization and scheduled data retrieval

  • What does "Easily import photos from other applications" really mean?

    What does "Easily import photos from other applications" really mean in the Lightroom 4 features list? I also see it stated as "...from other software" as well. Yes, I understand the LR can import from Elements libraries but can't find any reference to other applications anywhere, not in the online help, not in the user guide, not in any videos on Adobe TV. It would be nice if LR could see into iPhoto or Aperture libraries but that doesn't appear to be the case. Is that assumption correct? What other applications can LR import from?

    Hello bbb34vball,
    Since that article didn't help, I would suggest trying the steps in this article next:
    iOS: Unable to import photos to computer - Apple Support
    If that doesn't resolve your issue, you may find more information by using another one of Apple's support resources - https://getsupport.apple.com/GetproductgroupList.action.
    Regards,
    Jeff D. 

  • How do I limit number of characters in a JTextField?(different from others)

    Hi,
    I know this question has been posted several times on this forum, but my question is actually a different one. So please read.
    I have the following code that puts two JTextFields in a JFrame. I want to limit the number of characters in the first JTextField to three characters. What's different about my question from other solutions provided, is that I don't want to be able to type more than three characters in the JTextField, and then not be able to get out of JTextField unless I have three or less characters. What I do want, is to have maximum of three characters, not be able to type the fourth, and have access to the other JTextField at all times.
    I have tried the following solution of setting an InputVerifier to my JTextField, but it hasn't worked, since I can still type the fourth character.
    Looking forward to your help!
    Thanks.
    import java.awt.Dimension;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import javax.swing.InputVerifier;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    public class TextFieldVerifier {
         public TextFieldVerifier()
              JFrame frame = new JFrame("My TextVerifier");
              JPanel panel = new JPanel();
              JLabel firstTextFieldLabel = new JLabel("First: ");
              JLabel secondTextFieldLabel = new JLabel("Second: ");
              final JTextField myTextField = new JTextField();
              myTextField.setPreferredSize(new Dimension(100,20));
              myTextField.setInputVerifier(new InputVerifier()
                   public boolean verify(JComponent input) {
                        if(myTextField.getText().length()<=3)
                             return true;
                        else
                            return false;     
              myTextField.addKeyListener(new KeyAdapter()
                   public void keyTyped(KeyEvent e)
                        if(!myTextField.getInputVerifier().verify(myTextField))
                             myTextField.setText(myTextField.getText().substring(0, myTextField.getText().length()-1));
              JTextField secondTextField = new JTextField();
              secondTextField.setPreferredSize(new Dimension(100,20));
              panel.add(firstTextFieldLabel);
              panel.add(myTextField);
              panel.add(secondTextFieldLabel);
              panel.add(secondTextField);
              frame.getContentPane().add(panel);
              frame.setSize(new Dimension(200,100));
              frame.setVisible(true);
         public static void main (String [] args)
              TextFieldVerifier v = new TextFieldVerifier();
    }

    Thanks, JayDS! Your suggestion worked. And I've come up with the following code with help of your suggestion. However, I'm not happy with the fact that I see empty spaces in my JFormattedTextField when I don't have anything entered in it, or when my textfield has focus and I click it again. Also, I'd like the text alignment to always stay on the right, even if I have less than 3 digits.
    Could you please help me out with that?
    Thanks!
    import java.awt.Dimension;
    import java.text.ParseException;
    import javax.swing.JFormattedTextField;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.text.MaskFormatter;
    public class TextFieldVerifier {
         public TextFieldVerifier()
              JFrame frame = new JFrame("My TextVerifier");
              JPanel panel = new JPanel();
              JLabel firstTextFieldLabel = new JLabel("First: ");
              JLabel secondTextFieldLabel = new JLabel("Second: ");
              try{
                   VariableLengthMaskFormatter formatter = new VariableLengthMaskFormatter("###");
                   final JFormattedTextField myTextField = new JFormattedTextField(formatter);
                   myTextField.setHorizontalAlignment(JTextField.RIGHT);
                   myTextField.setPreferredSize(new Dimension(100,20));
                   panel.add(firstTextFieldLabel);
                   panel.add(myTextField);
              } catch (ParseException ex) {
                   ex.printStackTrace();
              JTextField secondTextField = new JTextField();
              secondTextField.setPreferredSize(new Dimension(100,20));
              panel.add(secondTextFieldLabel);
              panel.add(secondTextField);
              frame.getContentPane().add(panel);
              frame.setSize(new Dimension(200,100));
              frame.setVisible(true);
         protected MaskFormatter createFormatter(String s) {
             MaskFormatter formatter = null;
             try {
                  formatter = new MaskFormatter(s);
             } catch (java.text.ParseException exc) {
                 System.err.println("formatter is bad: " + exc.getMessage());
                 System.exit(-1);
             return formatter;
         public static void main (String [] args)
              TextFieldVerifier v = new TextFieldVerifier();
    }Edited by: programmer_girl on Mar 10, 2008 11:10 PM

  • What makes my iMac different?  Part# MB323LL/A

    I was curious what made this particular model of iMac different from the other 20" Alum. models?? I ask this because when I went to price some RAM memory on Crucial.com, they differentiated this model from the rest and recommended a different model of RAM for it. I did notice on the box that my machine what made in the USA.

    Hi Timmeh: Yours is the most recent generation of iMac. It uses 800mHz RAM. All the previous Intel iMacs used 667mHz RAM.
    Hope this helps
    Stedman

  • ITunes window behaves different from others?

    I've always been wondering why the iTunes window behaves much differently than other windows. Taking Firefox for example, when I maximize it to the screen, I can't shift it left/right/up/down, so I can't accidentally move it. iTunes, however, doesn't have the same maximize options, changing from the 'big' mode to the 'mini' player. And when it's in the big mode, I constantly have to re-stretch and proportion it to my screen, and it frequently drops below the dock and outside the screen. Is there any way to get this changed or fixed? Thanks!

    Fixed

  • Ep6.0 How to differentiate a Java Iview  from other Iview

    Hi,
      I would like to know how to recognize a Java Iview in the PCD? I would like to open up an Iview and want to understand whether it's and Java iview or others, I know about bsp, urs, wingui etc..
      Also once I know that, how do I get to see the code behind that Iview, if I need to change etc..
      Also is changing the "cache level" to 'Shared' for bringing in efficiency in the memory use is considered a modification? Currently the 'Cache Level' of some of the iview for one perticular apps is set as 'None'  Is there any other way to do it ?
    Arunava

    Hi Arunava,
    still, the answer stays the same: <i>You cannot determine if the content is provided in Java or in fact in some backend system <b>generically</b> by looking at the properties.</i>
    What does that mean: If you know for some special case that the existance of a certain property means that this iView is served by a BSP for example, then you know this. But in general, a property is a property is a property, and all properties are in first place used by the java implementation - maybe to be passed through to a backend system.
    In my first answer in this thread, I gave complete instructions hwo to find out which java class is called when calling an iView. Always it's in first place a java class.
    Hope it helps to understand why it's impossible to generically determine by properties where the business logic in fact is implemented.
    Best regards
    Detlev

  • Why co-pa extraction is different from other extraction

    any one could u tell me about the copa extraction

    Most extraction from SAP are different from each other -:)
    But more so with COPA becuase SAP does not provide any delivered tables for COPA.
    All tables in COPA is created by the company implementing it. They are similar to the tables created when you create a cube in BW. Hence there are no per say standard datasource; though you can create one using a procedure.
    Hope this helps.

  • What makes Spry different from other JS/CSS technologies?

    I've been seeing a lot of Spry questions here and have used the widgets myself. But for menus, I use CSS Menu Writer from WebAssist. It used ul and li tags in the markup, or an include, JavaScript for functionality and CSS for styling. Basically, this is much the same as the Spry menu, so what's the difference? Then one could add some sort of animation effect and call it AJAX. I suspect a lot of these terms are interchangeable, or perhaps incorrectly used that way. But Spry seems to stand out as something more specific.  Another example is the Accordion. I have used the Spry widget, plus another version that uses jQuery and/or scriptaculous. Again, although it's not the same code but it's still JS and provides the same functionality.

    Hi
    Spry is a javascript framework developed by Adobe similar to jQuery, (specifically the UI and ajax) but not as comprehensive. You could also use a number of other frameworks such as YUI, or prototype.
    The difference between menu writer and a framework, is that a framework is only the 'starting' point' and other features, (such as menu or accordion) must be added to it via separate code, whereas menu writer is complete and self contained and written with for specific function, (a menu).
    PZ

  • When I sync my iPad and iPod is there a way to limit what goes on one, different from the other?

    I have an 8 Gb iPod and a 16 Gb iPad.  I'd like to be able to decide what not to sync to my iPod but would want on my iPad.  Is there any way to do this?

    in itunes,  once your device is conected it will appear on the right hand side. click on it and then on the main window you can select at the top, apps, music movies, etc..
    that's where you can customize you sync for that device, by checking unchecking boxes.
    and this is only for that device. plug another and do the same. and another, and another, as many as you want.
    hope it helped

  • Starting Java application from other Java application..

    Hi all,
    I was wondering if it is possible to start a Java program from an other Java program.
    In Java program 1, I have this code to execute the other application:
    try {
        Process p = Runtime.getRuntime().exec("cmd /c java -cp JavaApp2.jar com.test.TestFrame");
    } catch (IOException e) {
    }I tried this code, but unfortunately I couldn't opened the other (JavaApp2.jar) Java Application. Is there a way to open the other application anyways?
    I really hope someone can help me. Help would be greatly appreciated! Thanks in advance.
    Tongue78.

    What if there is no JAR file?Then you can make it out of the .class files. And to anticipate your next question, if there are no .class files there is no application at all, so you can't exec() it or call the main() method directly. Your point?
    And JAR isn't part of the Java language.It is a major part of the Java platform.
    This means you can only get access to a JAR file via the OS. Wrong again. CLASSPATH. URLClassLoader.
    In short you cannot just shout main() in a Java program and hope some other Java program will hear you and start.Absolute rubbish. If the required classes are on the CLASSPATH you just call com.company2.app2.main(args) and off you go. Or you can load the main class and invoke its main() reflectively.
    No source code required, or 'source code merge' either.

  • Another error -8, different from others

    I am the Desktop Support person for a faculty member at a large University. She has been using iChat for over a year now to communicate and collaborate with a colleague at another University. About two weeks ago she started getting the error -8 issue when she tried to video chat with her colleague. Video chat had always worked flawlessly up to that point. She can still text chat with this person and she can video chat with other people on campus. Other computers on campus can video chat with her off-campus colleague as well. I have checked her QT Streaming settings, Bandwidth settings in iChat and made sure she is not connected to wireless and wired at the same time, and still it doesn't work. I do not have access to any of the network gear involved as that's a different part of IT but I believe everything is configured correctly as other iChat users (including myself) can video chat with people off-campus including the person she is having problems with. I really think it has to be something on her computer. Both users are running iChat 3.1.9 and OS X 10.4.11. I have included the error report below. Any suggestions from the gurus? Thanks!
    Date/Time: 2008-02-26 14:53:42.052 -0600
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3546761864.
    jeanmgrow1: State change from AVChatNoState to AVChatStateWaiting.
    0x15a668c0: State change from AVChatNoState to AVChatStateInvited.
    0x15a668c0: State change from AVChatStateInvited to AVChatStateConnecting.
    jeanmgrow1: State change from AVChatStateWaiting to AVChatStateConnecting.
    jeanmgrow1: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x15a668c0: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17efff com.apple.iChat 3.1.9 (446) /Applications/iChat.app/Contents/MacOS/iChat
    0x5d2000 - 0x5d3fff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.4 (1.0.4) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x5d8000 - 0x5effff com.ecamm.ConferenceRecorder v2.0.2 (2.0.2) /Library/InputManagers/Ecamm/Plugins/ConferenceRecorder.plugin/Contents/MacOS/C onferenceRecorder
    0x14c0b000 - 0x14c14fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14c2b000 - 0x14c30fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14c6f000 - 0x14cabfff com.apple.QuickTimeFireWireDV.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14cb7000 - 0x14ce7fff com.apple.QuickTimeIIDCDigitizer 7.4.1 (14) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14cf1000 - 0x14d3afff com.apple.QuickTimeUSBVDCDigitizer 2.0.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14d64000 - 0x14ebdfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14ee9000 - 0x14f42fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.58 (4.5.8) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x14f49000 - 0x14f65fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x14f6c000 - 0x14f90fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x151bb000 - 0x151befff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x151da000 - 0x15204fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x1627c000 - 0x1627ffff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff com.apple.ApplicationServices.ATS 2.0.9 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.9 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7dfff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b81000 - 0x91bbefff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc4000 - 0x91bdefff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be3000 - 0x91be5fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be7000 - 0x91cc5fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ce2000 - 0x91ce2fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce4000 - 0x91d72fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d79000 - 0x91d79fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d7b000 - 0x91dd4fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddd000 - 0x91e01fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e09000 - 0x92212fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224c000 - 0x92600fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262d000 - 0x9271afff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271c000 - 0x9279afff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927db000 - 0x92a0bfff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b25000 - 0x92b3cfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b47000 - 0x92b9ffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb3000 - 0x92bb3fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb5000 - 0x92bc5fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd4000 - 0x92bdcfff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be2000 - 0x92be8fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bee000 - 0x92c7ffff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c93000 - 0x92c97fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c9a000 - 0x92cb8fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cca000 - 0x92cd0fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd6000 - 0x92d39fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d60000 - 0x92da1fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc8000 - 0x92dd6fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ddd000 - 0x92de2fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de7000 - 0x930dcfff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e2000 - 0x931edfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931f2000 - 0x9320dfff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9325d000 - 0x9325dfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9325f000 - 0x93915fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c96000 - 0x93d11fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4a000 - 0x93e03fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e46000 - 0x93e46fff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e48000 - 0x94009fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9404f000 - 0x94090fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94098000 - 0x940d2fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d7000 - 0x940edfff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94134000 - 0x9417cfff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94186000 - 0x941c4fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94208000 - 0x94219fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94227000 - 0x94265fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94281000 - 0x94290fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94297000 - 0x942a2fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942ee000 - 0x94308fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9430e000 - 0x94625fff com.apple.QuickTime 7.4.1 (14) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947aa000 - 0x948f0fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9497c000 - 0x9498bfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94992000 - 0x949bbfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949c1000 - 0x949d0fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949d4000 - 0x949f9fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94a05000 - 0x94a22fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a29000 - 0x94a8ffff com.apple.Bluetooth 1.9.5 (1.9.5f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94d4e000 - 0x94dfefff com.apple.WebKit 523.12.2 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e64000 - 0x94f07fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94f2f000 - 0x953f4fff com.apple.WebCore 523.12.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x967cc000 - 0x967ccfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96cb3000 - 0x96cd5fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96d46000 - 0x96e1dfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96e38000 - 0x96e39fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96e3b000 - 0x96e40fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96f97000 - 0x96f97fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x976fa000 - 0x977e4fff com.apple.viceroy.framework 278.3.11 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97f28000 - 0x97f2afff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98157000 - 0x98fd7fff com.apple.QuickTimeComponents.component 7.4.1 (14) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99b1f000 - 0x99b2afff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99b34000 - 0x99ca0fff com.apple.MessageFramework 2.1.2 (753) /System/Library/Frameworks/Message.framework/Versions/B/Message

    Ok one or two last thoughts.
    1) Shut down the computer and disconnect from the router (Shut down the Airport card before hand if Wireless).
    Restart the computer
    Restart iChat
    Reconnect to the router.
    Login to AIM.
    Don't ask me why this works for iChat 2 and 3 but it does.
    It maybe something somewhere things it has a chat still connected.
    1a) Related to that is running the Cron Scripts
    I am sure you are familiar with this but I will post the link for others
    http://discussions.apple.com/thread.jspa?messageID=607640&#607640
    2) Is a bit more extreme but somewhat related to the idea of maintenance and repair and that is to run the combo version of the OS level this computer is at
    http://www.apple.com/downloads/macosx/apple/macosx_updates/ Make sure with 10.4.11 updates that this is the right computer type as there are two in the List (One Intel, One PPC)
    3) IS there any chance that iChat thinks this computer is sitting in two networks ?
    iChat 4 reports this as Error 4 but iChat 3 and before seem to report error 8 leading you to look elsewhere.
    In iChat 4/Leopard it can be caused by Parallels sharing the Mac IP (this seems to be a Leopard/Parallels issue)
    But it is caused by the use of two VPNs that this app sets up.
    Wired and wireless connections at the same time will do it as will two DHCP servers on the LAN or in Leopard, Sharing the Internet Connection also gets an Error 4
    At this sort of stage with a domestic set up I would be suggesting 1) through 2) to do to basically reset the the System and know where we were starting from.
    Item 3) is info gained from increased info in iChat 4 that may be related.
    9:17 PM Wednesday; March 5, 2008

  • Classic 120gb - is the speaker connection different from other ipods?

    I purchased my first iPod at the airport in October. As I was paying the guy said "do you want to buy any accessories?" I said I'd look when I got home from my holiday. He then said "you do know that the new Classic has a different docking thingy (he used a technical term I can't remember and said something about an extra pin) so most speakers will not work don't you?". He then added "wait until everyone brings out new speakers before buying anything".
    I've tried looking but no one says anything about a new "docking thingy" was he pulling my leg? Did he see an over 40 year old buying a new gadget and think let's confuse her (it's working)?
    Does anyone out there know what he was talking about?
    Any suggestions on a lightweight speaker to take on holidays abroad and a more decent one for at home?
    Thanks

    The answer to this may solve my problem. This week I replaced my knackered original IPod classic with the 12ok Classic. Great until I tried to connect it to the input jack in my car's stereo (A new Mazda) and found no output. I had used the Belking leads (not cheap) for the pst 6 montths to connect on various cars at home and on vacation in the US and no problems.
    Tried son's Ipod classic - bought 4 months ago - and it worked in my car so contacted Ipod telephone support who said the connections are different and the cable would not work with my new.
    He said the explanation was a ocmplicated one but that I would have to get an alternative cable and mentioned getting support in an Apple store.
    I went on the Apple Store website - where I bought the Ipod - and found no mention of Apple recommended accessories and the "vies" of people who had had similar problems - but no definite answer.
    Looks like a drive to nofth London to the nearest Apple store then!!

  • Pantone different from other apps.

    Hello people, I'm designing a 1-colour flyer using Pantone 2602. The file contains a mono-tone image created in Photoshop and an eps logo generated in Corel Draw, both using 2602. Paper-coloured text is placed over a rectangle filled with 2602.
    However, when the image and logo are brought into InDesign (CS3) they appear to be quite different colours from the rectangle. Still purple, but a differet shade. I opened the eps in Illustrator and re-saved it as an .ai file, placing that in the ID, and same problem, making me think there is a setting in ID that needs to be tweaked.
    I've tried to find the setting in Bridge to synchronise settings across all Adobe products but the help file tells me to set this through Edit/Prefs/Advanced but there is no option to select colour synchronisation.
    To be honest, I'm not too concerned if the colours look dfferent, as it all looks fine in Acrobat, but if there was a way to get the colour synchronised within all Adobe products that would be helpful.
    Thanks in advance for advice,
    Jo

    Embedded profiles that differ from your ID working space, can result in different appearances on screen for the same color when you import. Turn on Overprint Preview in the View Menu and the appearance should match if that's the cause.
    Another possible reason for this could be different names (and different definitions) for the same color. For example, InDesign would consider Pantone 2602, Pantone 2602 C, Pantone 2602 CV, Pantone 2602 CVC, Pantone 2602 CVU and Pantone 2602 U to be different colors even though they refer to the same ink, and would generate a separate plate for each. Do you see more than one named swatch for the color?
    You can use the Ink Manager (accessible from the Swatches Panel menu) to alias all the variants (or any other color) to a single definition of your spot color. Use the Separations Preview Panel to verify that all areas  will be on the same plate.
    But I wonder why you are going to so much trouble for a one-color job unless you need to show the client a color-simulated proof. Setting up using grayscale graphics is much less complicated, and you can output in any color you tell the printer to use.
    Peter

Maybe you are looking for