Do help me to find the right macbook for me?

i am a chemical engineering students. works lot on stuff like AUTOCAD, AUTODESK, MATLab, Solidwork, ChemCAD, Hysys and other chemical engineering softwares. Thank you

Raj,
Please post (to this forum) your entire error message and stack trace, as well as the part of your code that you think is causing the error.
Good Luck,
Avi.

Similar Messages

  • Help me in finding the right JRE for encryption

    HI ,
    I have developed and tested Encryption using Ciphers and SecretKey , i used the JRE1.4 .But other components are being developed using JRE1.3.If i try to run my code in JRE1.3 i get many errors.
    Is there anything i need to do before i integrate with other components on a diff JRE..
    Thanks in anticipation...
    Santosh

    Hi Mark,
    We are developing a big product and everything is in JRE1.3 ,we have no plans of upgrading to 1.4 for a mere security component.My question is
    1.If i have to use JCE should i have JRE1.4.
    2.The runtime error which i get is 'Algorithm DES not found'.Does DES only ship with JRE1.4
    3.Can u suggest any step which can be useful for configuring it with JRE1.3
    4.JRE1.4 is still in Beta right?
    Thanks in anticipation...
    Santosh

  • Cant find the right forum for this but can i restore my hd from time mch to a year ago and then restore individual files such as logic lprojects that are on same time mchne backup from last week?

    cant find the right forum for this but as i am having problems booting my macbook pro, keep having to reser pram etc and now wont boot at all.....
    aill this theoretically work?
    a. Restore entire macpro hard drive from time machine to a time over a year ago before problems started
    b. Restore more recent individual files such as logic projects individually from same time machine backup
    c. install any programs manually again only couple of vsts
    please answer direct question as i have tried everything else and nonhardware problems just will no longer boot after months of reseting each time
    cheers

    oops.  typo:  "I went ahead and befored the restore."  should be... I went ahead and performed the restore.

  • Trying to Find the Right Phone for Me

    Hello,
    I'm thinking of switching to a BlackBerry, and could use a bit of help finding the right phone for me. I've browsed through them, but so far haven't been able to find what I'm looking for (and I'm not able to find out which phones have UMA or not in the compare section).
    Provider isn't important, as I'm fine changing my service.
    I'm looking for a phone that is:
    * Both WiFi and UMA compatible
    * GPS compatible
    * Preferably with a Camera
    Thanks for the help!

    This link may be useful to you:
    http://na.blackberry.com/eng/ataglance/networks/#t​ab_ddetail_subtab_wifi
    corrected url
    Message Edited by DigitalFrog on 06-26-2008 11:33 AM
    posted by DigitalFrog
    WARNING: May contain traces of nuts.

  • I did not find the right place for my question but Is Apple's products are shipped to the Gulf States by a company Aramex ?

    I did not find the right place for my question but Is Apple's products are shipped to the Gulf States by  Aramex ?

    An absolute URL will be a complete URL, it traces from the abosulte root of a file's location on a server...
    http://www.thesite.com/assets/images/Front_Page_Rotating_Banner/banners.xml
    A relative URL is anything short of including the http://domain..., and is read relative to wherever the file using it exists
    assets/images/Front_Page_Rotating_Banner/banners.xml
    In Flash files though, relative links need to be specified relative to the HTML page that embeds the swf.  So if the swf is in a different folder than the html page that embeds it, the swf's targeting must be adjusted as if it were actually in the html file's folder.

  • Help me to find the right function Module

    Hi
    Can anybody help me out to find the function module that creates the public ABAPlogon group
    I have to do a task which is as mentioned below:
    Our BI configuration assumes that an ABAP logon group with the name “PUBLIC” exists. However,after A1S installation no such logon group is present. So, my  task is to find out, how we can create such a logon group (this means finding the right ABAP Function Module or BAPI)
    Kindly reply as soon as possible
    Thanks and Regards
    Neeta

    Hi san
    I have gone to se38 then typed LogonGroup* and pressed f4,then I got a Transaction INST_LOGONGROUP but that sets a logon value ALL-IN-ONE <sid> as the name of the logon group .its hard coded in it.
    What I need is a generalized function module that accepta the logon name as parameter and sets the value
    When we go to the transaction smlg we can see a screen where we set the logon group value.Whatever value we give it sets that value.How to find out what is the function module corresponding to that?
    I have debugged it but unable to track the function module.:-((
    Kindly help me out if you can..

  • Pls help me to find the smartform name for RMA REQUEST(RMA)

    Hi Experts,
    Pls Tell me how too find the smartform name for RMA REQUEST(RMA)
    Pls help
    Thanks and regards
    Jaya

    WHat is RMA REQUEST form please ellobrate your query
    the smrat form tcode is SMARTFORMS.....you can try

  • Where can I find the right doc for SunStudio For Linux ?

    I can find the docs for SunStudio here, http://docs.sun.com/app/docs/doc/819-5265/6n7c29ck9?a=view
    but it seems that it doesn't right on linux platform.
    #include <stdio.h>
    int main(void)
    #if defined(sun)
            printf("sun defined \n");
    #else
            printf("sun undefined \n");
    #endif
    #if defined(unix)
            printf("unix defined \n");
    #else
            printf("unix undefined \n");
    #endif
    #if defined(sparc)
            printf("sparc defined \n");
    #else
            printf("sparc undefined \n");
    #endif
    #if defined(i386)
            printf("i386 defined \n");
    #else
            printf("i386 undefined \n");
    #endif
    #if defined(__sun)
            printf("__sun defined \n");
    #else
            printf("__sun undefined \n");
    #endif
    #if defined(__unix)
            printf("__unix defined \n");
    #else
            printf("__unix undefined \n");
    #endif
    #if defined(__SUNPRO_C)
            printf("__SUNPRO_C defined \n");
    #else
            printf("__SUNPRO_C undefined \n");
    #endif
    #if defined(__sparc)
            printf("__sparc defined \n");
    #else
            printf("__sparc undefined \n");
    #endif
    #if defined(__i386)
            printf("__i386 defined \n");
    #else
            printf("__i386 undefined \n");
    #endif
    #if defined(__SVR4)
            printf("__SVR4 defined \n");
    #else
            printf("__SVR4 undefined \n");
    #endif
            return 0;
    }[luoyi@qpd06 test]$ suncc -o test test.c
    [luoyi@qpd06 test]$ ./test
    sun undefined
    unix defined
    sparc undefined
    i386 undefined
    __sun undefined
    __unix defined
    __SUNPRO_C defined
    __sparc undefined
    __i386 undefined
    __SVR4 undefined
    where can I found the correct docs for SunStudio For Linux ?

    You can refer to cc man pages. Here is about predefinitions:
    Predefinitions:unix
    sparc (SPARC)
    i386 (x86)
    sun
    The above are not predefined in -Xc mode.
    These predefinitions are valid in all modes:
    __BUILTIN_VA_ARG_INCR
    __SUNPRO_C=0x590
    __SVR4(SPARC)
    __SunOS(Solaris)
    __SunOS_OSN.N(Solaris)
    __amd64(x86 with-m64)
    __gnu__linux(linux)
    __i386(x86)
    __linux(linux)
    __linux__(linux)
    __sparc(SPARC)
    __sparcv9(with-m64)
    __sun(Solaris)
    __unix
    __�uname -s�_�uname -r�
    __x86_64(x86)
    linux(x86,linux)
    The following is predefined in -Xa and -Xt modes only:
    __RESTRICT
    The compiler also predefines the object-like macro
    __PRAGMA_REDEFINE_EXTNAME,
    to indicate the pragma will be recognized.
    ...

  • Finding the right resolution for MBP to projector

    Hi there,
    I have a lecturer who uses a MBP 15" to project powerpoint slides and him using circuit modelling software.
    What I've noticed is the whole setup is quite cumbersome:
    eg:
    The projected image is not wide screen like the MBP (i am guessing the projector is at 1024x768)
    This means when he runs a simulation for eg. the output pops up in it's own window, and usually off the visible screen on the projector.
    needless to say, he spends alot of time awkwardly resizing windows and shifting them around just to illustrate a basic point.
    My question is, if I help him resize the resolution so his MBP matches the projector, will the MBP switch back to native when he unplugs it? Will the MBP remember the projector settings next time, and resize automatically when he plugs it in, or will he have to fiddle with resolutions everytime he plugs it in? ( if so, shame on you apple!)
    If so, does anyone know of a utility out there that would make this process easier? ie Detect that the projector is connected/disconnected and change the resolution accordingly.
    Thanks for your help - it's difficult watching him fiddle as the proj screen is behind him and he has to turn around to see what's acutally visible to the class! It should be easier than that - it's an Apple!
    Mac Book Pro Mac OS X (10.4)

    Hi
    I have the same issue - when I'm presenting, most of the time I use the customer's projector, so I have no idea what resolution it will be. My MBP 17" widescreen generally offers me different resolutions after the autodetect, but they're either larger than the projector display, or half the slides are missing on the right hand side.
    Is there a way to choose other resolutions?
    Regards
    Shaun

  • Please help me with selecting the right institute for me

    HI All,
    Please help me which institute I should select for my SAP SD training?
    ONE INSTITUTE COVERING THE FOLLOWING TOPICS:
    Sales overview
    Enterprise structure related to SD
    Master data, like Customer master data, material master data, condition master data and Output master data.
    Partner determination
    Sales document types
    Item categories
    Schedule line categories
    Pricing: Condition table, access sequence, Condition type, pricing procedure
    Stock Posting
    Free goods
    Bills of Material
    Material determination
    Material Listing and Exclusion
    Incompletion logs
    Revenue account determination
    Credit management
    Outline agreements like quantity contract, value contract and scheduling agreements
    Shipping process like Shipping point determination, Route determination, Shipping conditions picking ,PGI
    Delivery types
    Delivery item categories
    Invoice process
    Billing types
    Special sales processes like cash sales, rush orders ,consignment process and Third party process
    Return sales process
    Credit memo process
    Debit memo process
    Availability check
    Rebate processing
    Intercompany sales
    Output determination
    Copy control
    Integration with MM,FI
    Technical topics like ABAP tables, user exits and IDOC’s
    Real time scenario’s
                   OR
    OTHER INSTITUTE COVERING THE FOLLOWING TOPICS:
    1. Introduction to Supply chain management
    2. Introduction to SAP ERP package
    3. Introduction to ASAP implementation methodology
    4. Lecture Demo on Basic navigation skills in SAP R/3
    5. SAP landscape. Tips and tricks
    6. Introduction to Enterprise structure in SD
    7. Overview of Material master records
    8. Demo on ROH, HAL and FERT creation
    9. Hands on exercise on creation of material mastesr records in SAP
    10. Introduction to SD master data (Business partners, conditions and outputs)
    11. Introduction to order processing and Demo
    12. Hands on exercises on sales order processing
    13. Introduction to delivery process, picking and post goods issue process
    14. Introduction to stock transport orders and inter-company stock transport Orders
    15. Exercises on delivery with respect to sales orders
    16. Introduction to billing process (Customer billing, Inter-company, Proforma, Credit memo and Debit memo)
    17. Introduction pricing procedure, condition records, condition tables and access sequence.
    18. Configuration on SD sales order types, delivery and billing
    19. Warehouse management overview
    20. Introduction to SAP WM configuration
    21. Demo by instructor on configuration
    22. Develop configuration scripts
    23. Introduction to develop BPP
    24. Hands on exercises to students
    25. Introduction to WM master data
    26. Introduction to transaction data in WM
    27. Hands on exercises on creation of master data elements in WM
    28. Hands on exercises to students on WM transaction data
    29. Introduction to CTS process (SE10, SCC1)
    30. Demo on WM business scenarios and integration points
    31. Introduction to develop integration test scenarios. Develop test scripts
    32. Introduction to OSS notes and SAP Help
    33. Introduction to EAI tools, FID, RF Gun, MDE, SAP console and hand held devices
    34. Introduction to SAP bold on tools (SRM, CRM, BW, SEM, GTS, CIC, FSCM, DP, SNP, PP/DS, GATP, CIF and Plug in)
    35. Introduction to quick reference guides, cheat sheet, FAQ, work instructions, job aides, transaction aides, work instructions and change management
    36.Interface between SD & FI
    37.C forms, H forms
    38.Excise Related Invoices
    39.CIN configuration (taxes)
    40. Debugging with help of ABAP Tool
    41.Excise Returns Process with pricing details
    42.Order, Delivery, Billing, exicise, Output types configuration

    You should talk to various institute.

  • Please help me to find the drivers/software for SB Surround

    Hi all!
    Does anyone know how to find the drivers fo the SB Surround 5. external sound card?
    Since the HW looks quite similiar to the LIVE 24bit external I tried to install the drivers for it but they didnt work.
    I can not find the SB Surround 5. card in the auto update section.
    Thanks in advance/Bartek

    Here is the link
    http://support.creative.com/downloads/download.aspx?nDownloadId=0588
    The driver suite gives you all the software, plus the newest driver.
    Unfortunately, creative still hasnt listened to us and has not given us DDL. There was no real need to waste 60 bucks on this thing, if all it does is increase sound quality a tiny amount. When I saw the device I, along with many other customers, came to believe that it would allow for surround sound music. However, the device only outputs media that is already in surround sound, as 5. . I have tried AC3 filter, kx driver (wont work) , rednoreck (no asio) , and tons of random plugins for winamp. I have no idea how to get stereo upmixed to 5. with the spdif out on this card. I am going nuts because of this. If anyone knows how to do that please let me know !?

  • Can anyone help me to find the page list for my site?

    I cannot seem to find the icon which will lead me to the page list for my site. I need it to retrieve a lost page

    Do you mean that you can't find the "Choose" button on the top left of Adobe Contribute? I gues I'm not sure exactly what you mean by "Page list".
    If you are talking about something else, please give us more details as well as let us know what version of Adobe Contribute you are referring to.

  • Can Anyone can help me to find the right solutions?

    How can I solve this problem?
    Process:         Adobe Illustrator [843]
    Path:            /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         ???
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [145]
    Responsible:     Adobe Illustrator [843]
    User ID:         501
    Date/Time:       2014-08-08 22:19:02.603 +0200
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  8722A45D-6A10-3163-FAC5-7588D879B59F
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: @executable_path/../Frameworks/amtlib.framework/Versions/A/amtlib
      Referenced from: /Applications/Adobe Illustrator CC 2014/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
      Reason: image not found
    Binary Images:
        0x7fff61cfd000 -     0x7fff61d30817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8cccd000 -     0x7fff8cd39fff  com.apple.framework.IOKit (2.0.1 - 907.100.12) <9C518309-DB33-3636-B1CE-416CECB633A8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8f04e000 -     0x7fff8fbc4ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94afd000 -     0x7fff94afdfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff94f6a000 -     0x7fff94f6afff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff95a5c000 -     0x7fff95d5afff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9632d000 -     0x7fff9632dfff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff96e4a000 -     0x7fff96e4afff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9a3d0000 -     0x7fff9a524ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff9a8cb000 -     0x7fff9a92effb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <9910E760-B2B0-3C66-9494-3C8072EDB61C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    Model: iMac14,4, BootROM IM144.0179.B03, 2 processors, Intel Core i5, 1.4 GHz, 8 GB, SMC 2.21f88
    Graphics: Intel HD Graphics 5000, Intel HD Graphics 5000, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS545050A7E362, 500,11 GB
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: FaceTime HD Camera (Built-in)
    Thunderbolt Bus: iMac, Apple Inc., 30.8

    Hi san
    I have gone to se38 then typed LogonGroup* and pressed f4,then I got a Transaction INST_LOGONGROUP but that sets a logon value ALL-IN-ONE <sid> as the name of the logon group .its hard coded in it.
    What I need is a generalized function module that accepta the logon name as parameter and sets the value
    When we go to the transaction smlg we can see a screen where we set the logon group value.Whatever value we give it sets that value.How to find out what is the function module corresponding to that?
    I have debugged it but unable to track the function module.:-((
    Kindly help me out if you can..

  • Help me find the right processor for my HP Laptop

    I have an Hp dv7-6111sz (LZ664EA) All info are here : pavilion_dv7_6111sz_lz664ea
    I want to upgrade the stock cpu, everythung seems good in my Laptop but the CPU... im using the laptop for gaming, tested things and realized that my CPU is overnecking my GPU, So please what do you advice me? should I upgrade my cpu? if yes how and where to find better CPU? if no.... hmm why not? what are disadvantages other than over heating??... 
    And another thing, im not sure but is my hardware looks for gaming? I'm playing high-end games like Watch dogs and Assassin's Creed 4... hmm 20fps on medium settings, I think those games are poorly optimized,  idk. What do you recommend,  should I buy a new Laptop? I want it for gaming so what do you advice? thanks

    Hi,
    Page #1 of the first manual on the following link may help. There is a list of CPU's supported around that time:
         http://h10025.www1.hp.com/ewfrf/wc/manualCategory?cc=us&lc=en&product=5144913
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I have Firefox 3.0.10 and cannot seem to find the right plugin for reading pdfs. I've installed Adobe Reader but it doesn't work. Help.

    I cannot seem to find or install a plug in for reading pdfs in the browser window. I get that yellow bar telling me I need a plug in and click to install but nothing happens or changes

    You're going to need an '''older version''' of that extension from here: <br />
    https://addons.mozilla.org/en-US/firefox/addon/7518/versions/
    Firefox PDF Plugin version 1.1.2 = for 3.0.x and 3.5.x versions <br />
    The latest is only for Firefox 3.6.x versions.
    '''Or''', you could upgrade to a newer version of Firefox!

Maybe you are looking for

  • Why does Flash add points when I "Undo"?

    I converted a bitmap to vector.  I am removing all the useless extra points which get created in that process.  Occasionally I will mis-click and end up moving or deleting a shape.  When that happens I want to use "undo".  But ctrl-z and undo from th

  • Swing applet

    I've been trying to get my browser (Netscape 4.77 on Windows NT) to run swing applets. I've got jre 1.3.1 installed and it said it got the plugin, but when i try to run the test applet at the url www.java.com/products/jfc/tsc/articles/getting_started

  • How do I erase a toolbar I created?

    I created a toolbar that I don't need anymore, but I can't find a way to erase it, how can I do this? Thanks.

  • How to block unwanted calls

    Is there anyone advice me please how to block unwanted calls ? I will be really appreciate and thanks full for that 

  • ORA-20876 error Message

    We are observing below mentioned error message at application login process. Could you please let me know how to debug this issue. ORA-20876: Message 20876 not found; Error in reading message file for product=RDBMS, facility=ORA Environment: Oracle 1