Answer my some questions

Hi!
i need answer of some my Questions...
What is difference between
<%!
int i =0;
%>
<%
int i=0;
%>
In what format ResultSet store Data?
Can interface contains variables?
flow of struts
Diff between == & equals?
Diff between String str1="abc" & String Str2=new String("abc")
Please Help
Bunty

Can interface contains variables?Yes. Google for an interface tutorial.
Diff between == & equals?Yes, they are different. Google again or search the forum. This question is asked at least once a day.
Diff between String str1="abc" & String Str2=new String("abc")Yes, they are different. Google again or search the forum. This question is also asked at least once a day.
Don't ask so many unrelated questions in one thread. And don't ask questions whose answers are readily available by searching Google or the forum. You'll get answers faster if you search for yourself instead of waiting.

Similar Messages

  • HT5312 I cant remember the answer to some questions and they blocked my account. I've been sending requests for them to send it to my mail like 20 times and nothing. What can I do?

    I cant remember the answer to some questions and they blocked my account. I've been sending requests for them to send it to my mail like 20 times and nothing. What can I do?

    Click here, phone Apple, and ask for the Account Security team.
    (87657)

  • Some Question Please answer I am a beginner

    Hello Friends
    I have some question
    1. what is the difference between forms and report
    2. what is the difference between simple report and xml publisher report
    3. what are the types of Database Types in Oracle
    4. what are the types of SQL Loader
    In Advance Thanks

    1) Oracle form: acts like an user interface between data base and user input. User can Query the data and view the under lying data.Basically Oracle forms are front end tools for user interaction and application setup.
    Oracle Report: is the reporting component in EBS, where in when the user gets the data based on the parameters provided.
    refer to the developer Guides for more information.
    http://www.oracle.com/technetwork/developer-tools/forms/index.html
    2) template will be used in the XML publisher which can be developed by a RTF file, and registration of the report in EBS has a separate process. Check the below link for more information
    http://docs.oracle.com/cd/B34956_01/current/acrobat/120xdoig.pdf
    3) Oracle data types are similar like other languages, these are used for handling the data.There are several built-in data types, check the below link.
    http://docs.oracle.com/cd/B28359_01/server.111/b28318/datatype.htm
    4) SQL loader is basically used to load the data from flat file to data base table by using a control file. Please go through the below link for more information and concepts.
    http://docs.oracle.com/cd/B19306_01/server.102/b14215/ldr_concepts.htm
    Regards,
    -

  • I have solved some questions, please check if my answers are correct

    Hi every Java aces,
    I have solved some programming questions, please check if my answers are correct. Thanks
    Here are the questions and the answers to each question
    (a) Write a method called add that takes three integers as parameters and returns an
    integer that is the sum of the three parameters.
    (b) Write a method called max that takes three integers as parameters and returns the
    largest of the three integers.
    (c) Write a method called printMax that takes three integers as parameters and prints
    the maximum value to the screen. The method should return nothing. The method
    should print the words \The maximum value is " followed by the maximum value,
    followed by a new-line character. You should try to use the max method that you
    wrote earlier.
    (d) Write a method called min that takes three integers as parameters and returns the
    smallest of the three integers.
    (f) Write a method called ticketPrice that takes one integer parameter representing
    the age of a person, and returns the price of a movie ticket in dollars (as a
    oating
    point value). Children under 6 get in for free (0.00), people that are 18 or under
    pay 8.50, senior citizens (65 or older) pay 6.50, and all other people pay 10.00.
    (g) Write a method called isDivisor that takes two integers as parameters and returns
    true if the rst parameter is a divisor of the second parameter or false otherwise.
    We say that m is a divisor of n, or that m divides n, if there is an integer k such
    that n = k m. Note that 1 divides every integer, and every integer divides i
    itself .
    here are my codes
    public class Methods
    // This is method (a)
    public static int add (int a, int b, int c)
    int sum = a + b + c;
    return sum;
    // This is method (b)
    public static int max (int a, int b, int c)
    int largest;
    if (a > b)
    if (a > c)
    { largest = a; }
    else
    { largest = c;}
    else
    if (b < c)
    { largest = c; }
    else
    { largest = b;}
    return largest;
    // This is method (c)
    public static void printMax (int d, int e, int f)
    int maxValue;
    maxValue = max (d, e, f);
    System.out.println ("The maximum value is " + maxValue);
    // This is method (d)
    public static int min (int a, int b, int c)
    int smallest;
    if ( a < b )
    if ( a < c )
    { smallest = a; }
    else
    { smallest = c; }
    else
    if ( b > c )
    { smallest = c; }
    else
    { smallest = b; }
    return smallest;
    // This is method (f)
    public static double ticketPrice (int age)
    double price;
    if ( age < 6 )
    { price = 0.00; }
    else
    if ( age <= 18 )
    { price = 8.50; }
    else
    if ( age < 65 )
    { price = 10.00; }
    else
    { price = 6.50; }
    return price;
    // This is method (g)
    public static boolean isDivisor ( int m, int n )
    boolean result;
    int check1;
    double check2;
    check1 = n / m;
    check2 = (double)n / m;
    if ( check2 == check1 )
    { result = true; }
    else
    { result = false; }
    return result;
    }

    Here are my codes
    // This is method (a)
      public static int add (int a, int b, int c)
        int sum = a + b + c;
        return sum;
      // This is method (b)
      public static int max (int a, int b, int c)
        int largest;
        if (a > b)
          if (a > c)
          { largest = a; }
          else
          { largest = c;}
        else
          if (b < c)
          { largest = c; }
          else
          { largest = b;}
        return largest;   
      // This is method (c) ?
      public static void printMax (int d, int e, int f)
        int maxValue;
        maxValue = max (d, e, f);
        System.out.println ("The maximum value is " + maxValue);
      // This is method (d)
      public static int min (int a, int b, int c)
        int smallest;
        if ( a < b )
           if ( a < c )
           { smallest = a; }
           else
           { smallest = c; }
        else
          if ( b > c )
          { smallest = c; }
          else
          { smallest = b; }
        return smallest;
    // This is method (f)
      public static double ticketPrice (int age)
        double price;
        if ( age < 6 )
        { price = 0.00; }
        else
          if ( age <= 18 )
          { price = 8.50; }
          else
            if ( age < 65 )
            { price = 10.00; }
            else
            { price = 6.50; }
        return price;
      // This is method (g)
      public static boolean isDivisor ( int m, int n )
        boolean result;
        int check1;
        double check2;
        check1 = n / m;
        check2 = (double)n / m;
        if ( check2 == check1 )
        { result = true; }
        else
        { result = false; }
        return result;
       // This is method (h)
      public static boolean isProduct ( double a, double b, double c )
        boolean result;
        if ( a == b*c )
        { result = true;}
        else
        { result = false;}
        return result;
         

  • HT5312 Hi,I want to buy some apps today. While I was ready to purchase , the store ask me to answer my security questions. But I had already forgot my answer ! Now I can't purchase any app, help ! Thanks!

    Hi,I want to buy some apps today.
    While I was ready to purchase , the store ask me to answer my security questions.
    But I had already forgot my answer !
    Now I can't purchase any app, help ! Thanks!

    The HT5312 page that you posted from has instructions for how to reset them i.e. if you have a rescue email address (which is not the same thing as an alternate email address) on your account then steps 1 to 5 half-way down that page should give you a reset link.
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset (these are user-to-user forums).
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • Hi,I want to buy some apps today. While I was ready to purchase , the store ask me to answer my security questions. But I had already forgot my answer ! Now I can't purchase any app, help ! Thanks!

    Hi,I want to buy some apps today.
    While I was ready to purchase , the store ask me to answer my security questions.
    But I had already forgot my answer !
    Now I can't purchase any app, help !  Thanks!

    The HT5312 page that you posted from has instructions for how to reset them i.e. if you have a rescue email address (which is not the same thing as an alternate email address) on your account then steps 1 to 5 half-way down that page should give you a reset link.
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will need to contact Support in your country to get the questions reset (these are user-to-user forums).
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • I want to buy some music and It is asking some question that I do not have any idea the answer

    When I am trying to buy some music iTunes is asking me about some questions that I do not have any idea....

    Hello Brandy,
    Unfortunately, you can't change or etrieve them by yourself as you forgot the original ones. You may contact iTunes store support though. Here's what you can do:
    https://expresslane.apple.com/
    Follow these steps:
    All Products and Services > iTunes > iTunes Store > Account Management > iTunes Store account security
    Answer the questions and if required sign in with your Apple ID and password - same one you used to log in on this support forum.
    You will find an option to send an email to Apple on that page. Indicate that you forgot the answers to your security questions and wait for iTunes support to reply.
    I hope this helps.

  • Want to buy something Ap Store and I came to buy I have the answers to the questions of safety, now I forgot them, I went to MY ACCOUNT MANAGER website and there was no reset was some other reset but it asked for the answers to Secure

    Want to buy something Ap Store and I came to buy I have the answers to the questions of safety, now I forgot them, I went to MY ACCOUNT MANAGER website and there was no reset was some other reset but it asked for the answers to Secure

    Morning AndreD86,
    Thanks for using Apple Support Communities.
    These articles explain exactly what is backed up by using their method.
    iTunes: About iOS backups
    http://support.apple.com/kb/ht4946
    and
    iCloud: Backup and restore overview
    http://support.apple.com/kb/ht4859
    Also we want to double-click the Home button and swipe the Task Bar to the right.
    Then make sure the button on the far left of Task Bar is not muted.
    Best of luck,
    Mario

  • Thinking about purchasing a Macbook, but I need some questions answered

    Hey everybody,
    I got a response to my Craigslist ad, so it's looking like selling my iMac G5 and buying a new Macbook might actually happen. My only problem is that I have some questions about what to do with my money. I'm not a power user, or someone who really plays games (other than my Nintendo emulators) so I already know that a Macbook is the right computer for me.
    (1) I don't have external storage, so how should I go about transferring my stuff? Buying the Macbook before selling my iMac is not an option because I just don't have that much money. I've read that some people buy the Macbook and then upgrade the HD, using the 60 Gig that comes with it as their external storage by buying a $20 case for it. I have about 50 GB taken up on my iMac, so I'm going to probably need around 100 GB at least. I know upgrading the memory doesn't, but does upgrading the HD void the warranty? Any brand recommendations for HD's? Heat and noise are very important to me. (7200 RPM is out)
    (2) I never really used the Superdrive on my iMac, but it was nice to know it was there. Is the performance difference from 1.83 to 2Ghz noticeable? I hear it's not, but I also read that under Rosetta it matters. Since Office isn't universal yet, I'd like to know. Can anyone verify this?
    (3) I read on MacOSRumors that Leopard is probably going to do some nice little graphic effects when it's released, and that the next revision of the Macbook Core Duo will probably still have integrated graphics. Since I don't plan on doing this again for at least another year, do you think the Intel graphics will be enough to keep up for a little while?
    (4) Anybody have some experience with selling a computer on Craigslist? I'm smart enough to request cash, local buyers only, and have them meet me at my house to try the computer out. Any advice on how to make sure this runs smoothly? I might end up leaving some things on the computer for the buyer. Anything that I should make sure to delete (i.e. preferences, passwords, etc.?) A checklist of what I should remember to do would really help.
    I think that about covers all of it...Thanks in advance.

    I sold my computer on Craigslist. No problems. I think it's only really dodgy if you are buying one from there - then you should be very careful!
    I'm not sure exactly the best way to go about deleting your stuff, but you have the right idea: get rid of your preferences and passwords, and your internet history as well.
    I'm not sure how to look at 'Keychain', but you might want to make sure that this is empty.
    In terms of processor speed, I can't help you: I have just got the 2Ghz, but partly because not having a DVD burner isn't an option for me. As file sizes and your storage needs increase, your need for a DVD burner will probably increase as well.
    Leopard is not far away now, and I would guess that Apple would make sure that their new OS will work adequately on their new computers. I would be surprised if there is much of a noticeable difference in anything but the most graphics heavy applications. Could be wrong about this, but I think that the basic GUI will perform well on any MacBook.
    In terms of moving info from your iMac... the cheapest thing apart from buying the MacBook before you sell is borrowing a HD or iPod from a friend. 50G isn't THAT much info, you could always burn it to DVD-Rs in a pinch.

  • Okay I got a new apple  ID not to long ago and answered some security questions and i got an iTunes card and it said it was my first purchase and asked me to answer the security questions and I do not remember them

    Okay so I have had apple for a while and I got a new apple ID not to long ago and then answered the security questions and it said that it was the first purchase with the apple ID and I have to answer them and now I don't remember the answers

    From an older post by King_Penguin:
    If you can't remember them then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Security' and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox) - but some recent posts are saying that Apple have temporarily suspended the reseting of security question/answers whilst account security processes are improved, so it may take longer.

  • Some questions about 4s the answers which i can`t find at now.

    Hi all! I seen the manual, but have some questions.
    Important for me:
    Fonts notes - change except three in the settings?
    The dialing buttons with one touch? Except now - "Phone - buttons"
    Is there a group of contacts? On the sim card, I do not keep contact.
    Can i rate a song in a standard player?
    Can you give the name of the best player for FLAC format?
    Sync photos in Itunes, indicates one folder, and you can specify all that are nested inside? so?
    How do I know whether the information is sent (hidden) or packages gprs without my permission? At now I turned off not needed for me apps.
    Can I change the capital letters on the keyboard in the messages to the normal small?
    "Reminder" of the event calendar. Options: No, at the time of the event, for 5, 15, 30, for 1 hour, 2 hour .... 1 day, 2 days. Wow!? And where is the option for 3-4-5 hours? If I need it.
    Too conglomeration and confusing menu Itunes. Intricate synchronization. I can not understand where to get my photos from my phone to PC (Win7 x64).
    The battery is not recommended to fully discharge, right? It is better to charge when it near 20% or it`s don`t care?
    Not quite clear things:
    The maximum volume of the music can really mess up a rumor, it's amazing, you can limit the maximum mode in the settings, check with the monitor Senheiser HD215.
    Free Appstore often not free or demo, ask for a fee, why mislead people is not clear!
    Thank for answers!

    Lawrence Finch Thank you very much for answers!
    1-2. I am really forgot about apps in store. ))
    3. It is strange that there are no groups in the phone, it's still a phone in the first place ))
    4. I meant in the iphone. )) On the computer I have many years using a different program for music.
    5. Hmm... flac is not video format.
    6-7. Ok
    8. I am talking about standart letters on the keyboard in the messages. Visually, they look like big letters, that I first met in the phone. In small letters ordinary phone as long as you do not choose a large and they vary in height.
    9-10.  Ok
    11. ???
    The battery is not recommended to fully discharge, right? It is better to charge when it near 20% or it`s don`t care?
    Not quite clear things:
    12. I checked the maximum volume with my Senheiser HD215 and it`s a very very loud. What is strange that you can limit the maximum volume mode in the settings. This maximum volume limit seems to me strange.
    13. Ok. But I was faced with a situation where there is an update itunes says, and as detailed a description of the program, but not a change in her. Strange.

  • Hi team , I have some questions/Problem for my product apple (iPad,iPhone) , I want to employee speak and type thai language

    Hi team , I have some questions/Problem for my product apple (iPad,) , I want to employee that can  speak  or response me in thai language
    1. ผม อาคเนย์  พำนักอยู่ประเทศไทย กรุงเทพฯ  มีปัญหาสอบถาม ดังต่อไปนี้
       - กระผมได้ทำการตัดบัตร เครดิต เพื่อซื้อเกมส์ผ่าน itune store ผ่าน apple itune ID : misskor.yaprom@*** เพื่อซื้อเกมส์ Eleves Realm ในวันที่18 ก.ค. 56 เวลา 17.07น. ซึ่งทางบัตรเครดิตได้แจ้งเรียกเก็บเงินมายอดเงิน 39.99$ ซึ่งในระบบจริงๆ ทางกระผมต้องการตัดในยอด 99.99$ แต่พอได้ประสานงานไปยังธนาคาร ได้รับการแจ้งกลับมาว่า ได้ทำการตัดบัตรในยอดเงิน 39.99$ ซึ่งในความเป็นจริงนั้น กระผมไม่ได้สั่งซื้อเกมส์ในยอด 39.99$ ซึ่งในยอด 99.99$ นั้นพยายามตัดในระบบบัตรเครดิตอยู่ แต่ทางกระผมได้ยืนยันกลับไปว่าไม่ให้ระบบตัดนะครับ เพราะว่าเนื่องจากมีปัญหาในการชำระเงินระหว่าง Apple itune store อยู่
       - ทั้งนี้ขอให้ทางเจ้าหน้าที่ประสานงานตรวจสอบ apple itune ID : misskor.yaprom@*** เพื่อซื้อเกมส์ Eleves Realm ตามที่ได้ให้รายละเอียดโดยด่วนว่าเป็นเพราะว่าระบบมีปัญหาหรือว่ามีอะไรเกิดขึ้นในข ั้นตอนการชำระเงินครับ
    รบกวนประสานงานกลับมายังกระผม อาคเนย์ ที่หมายเลขโทรศัพท์มือถือ +**** / reply feedback  email : lekod1@*** โดยด่วน ในวันศุกร์ที่ 19 ก.ค. 2556 ครับ
    ขอบคุณครับ
    อาคเนย์  อุดปิน
    กด
    <Edited By Host>

    Google translation:
    พนักงานของ iTunes Store จะไม่ได้อ่านข้อความในเว็บบอร์ดนี้ ถ้าคุณต้องการความช่วยเหลือสำหรับปัญหาที่มีใน iTunes Store, คุณจะต้องติดต่อกับพวกเขาผ่านทางแบบฟอร์มเว็บนี้:
    http://www.apple.com/emea/support/itunes/contact.html

  • HT5714 my itunes wont let me download songs because it says its my first time purchasing something from this account which isnt true and it wants me to answer my security question which i forgot, what do i do?

    My computer wont let me download songs from itunes because when i try to purchase one it makes me type in my password, then it says that since its my first time purchasing some thing from this account (which isnt true) i have to answer my security question which i forgot, what do i do?

    bmr1296 wrote:
    i have to answer my security question which i forgot, what do i do?
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact

  • I have some questions regarding setting up a software RAID 0 on a Mac Pro

    I have some questions regarding setting up a software RAID 0 on a Mac pro (early 2009).
    These questions might seem stupid to many of you, but, as my last, in fact my one and only, computer before the Mac Pro was a IICX/4/80 running System 7.5, I am a complete novice regarding this particular matter.
    A few days ago I installed a WD3000HLFS VelociRaptor 300GB in bay 1, and moved the original 640GB HD to bay 2. I now have 2 bootable internal drives, and currently I am using the VR300 as my startup disk. Instead of cloning from the original drive, I have reinstalled the Mac OS, and all my applications & software onto the VR300. Everything is backed up onto a WD SE II 2TB external drive, using Time Machine. The original 640GB has an eDrive partition, which was created some time ago using TechTool Pro 5.
    The system will be used primarily for photo editing, digital imaging, and to produce colour prints up to A2 size. Some of the image files, from scanned imports of film negatives & transparencies, will be 40MB or larger. Next year I hope to buy a high resolution full frame digital SLR, which will also generate large files.
    Currently I am using Apple's bundled iPhoto, Aperture 2, Photoshop Elements 8, Silverfast Ai, ColorMunki Photo, EZcolor and other applications/software. I will also be using Photoshop CS5, when it becomes available, and I will probably change over to Lightroom 3, which is currently in Beta, because I have had problems with Aperture, which, until recent upgrades (HD, RAM & graphics card) to my system, would not even load images for print. All I had was a blank preview page, and a constant, frozen "loading" message - the symbol underneath remained static, instead of revolving!
    It is now possible to print images from within Aperture 2, but I am not happy with the colour fidelity, whereas it is possible to produce excellent, natural colour prints using its "minnow" sibling, iPhoto!
    My intention is to buy another 3 VR300s to form a 4 drive Raid 0 array for optimum performance, and to store the original 640GB drive as an emergency bootable back-up. I would have ordered the additional VR300s already, but for the fact that there appears to have been a run on them, and currently they are out of stock at all, but the more expensive, UK resellers.
    I should be most grateful to receive advice regarding the following questions:
    QUESTION 1:
    I have had a look at the RAID setting up facility in Disk Utility and it states: "To create a RAID set, drag disks or partitions into the list below".
    If I install another 3 VR300s, can I drag all 4 of them into the "list below" box, without any risk of losing everything I have already installed on the existing VR300?
    Or would I have to reinstall the OS, applications and software again?
    I mention this, because one of the applications, Personal accountz, has a label on its CD wallet stating that the Licence Key can only be used once, and I have already used it when I installed it on the existing VR300.
    QUESTION 2:
    I understand that the failure of just one drive will result in all the data in a Raid 0 array being lost.
    Does this mean that I would not be able to boot up from the 4 drive array in that scenario?
    Even so, it would be worth the risk to gain the optimum performance provide by Raid 0 over the other RAID setup options, and, in addition to the SE II, I will probably back up all my image files onto a portable drive as an additional precaution.
    QUESTION 3:
    Is it possible to create an eDrive partition, using TechTool Pro 5, on the VR300 in bay !?
    Or would this not be of any use anyway, in the event of a single drive failure?
    QUESTION 4:
    Would there be a significant increase in performance using a 4 x VR300 drive RAID 0 array, compared to only 2 or 3 drives?
    QUESTION 5:
    If I used a 3 x VR300 RAID 0 array, and installed either a cloned VR300 or the original 640GB HD in bay 4, and I left the Startup Disk in System Preferences unlocked, would the system boot up automatically from the 4th. drive in the event of a single drive failure in the 3 drive RAID 0 array which had been selected for startup?
    Apologies if these seem stupid questions, but I am trying to determine the best option without foregoing optimum performance.

    Well said.
    Steps to set up RAID
    Setting up a RAID array in Mac OS X is part of the installation process. This procedure assumes that you have already installed Mac OS 10.1 and the hard drive subsystem (two hard drives and a PCI controller card, for example) that RAID will be implemented on. Follow these steps:
    1. Open Disk Utility (/Applications/Utilities).
    2. When the disks appear in the pane on the left, select the disks you wish to be in the array and drag them to the disk panel.
    3. Choose Stripe or Mirror from the RAID Scheme pop-up menu.
    4. Name the RAID set.
    5. Choose a volume format. The size of the array will be automatically determined based on what you selected.
    6. Click Create.
    Recovering from a hard drive failure on a mirrored array
    1. Open Disk Utility in (/Applications/Utilities).
    2. Click the RAID tab. If an issue has occurred, a dialog box will appear that describes it.
    3. If an issue with the disk is indicated, click Rebuild.
    4. If Rebuild does not work, shut down the computer and replace the damaged hard disk.
    5. Repeat steps 1 and 2.
    6. Drag the icon of the new disk on top of that of the removed disk.
    7. Click Rebuild.
    http://support.apple.com/kb/HT2559
    Drive A + B = VOLUME ONE
    Drive C + D = VOLUME TWO
    What you put on those volumes is of course up to you and easy to do.
    A system really only needs to be backed up "as needed" like before you add or update or install anything.
    /Users can be backed up hourly, daily, weekly schedule
    Media files as needed.
    Things that hurt performance:
    Page outs
    Spotlight - disable this for boot drive and 'scratch'
    SCRATCH: Temporary space; erased between projects and steps.
    http://en.wikipedia.org/wiki/StandardRAIDlevels
    (normally I'd link to Wikipedia but I can't load right now)
    Disk drives are the slowest component, so tackling that has always made sense. Easy way to make a difference. More RAM only if it will be of value and used. Same with more/faster processors, or graphic card.
    To help understand and configure your 2009 Nehalem Mac Pro:
    http://arstechnica.com/apple/reviews/2009/04/266ghz-8-core-mac-pro-review.ars/1
    http://macperformanceguide.com/
    http://www.macgurus.com/guides/storageaccelguide.php
    http://www.macintouch.com/readerreports/harddrives/index.html
    http://macperformanceguide.com/OptimizingPhotoshop-Configuration.html
    http://kb2.adobe.com/cps/404/kb404440.html

  • Some questions about configuration in MAX.

    Hello,everyone!
    I have some questions about configuration in MAX(I am a jackaroo for motion control development),I hope I can get your help.
    I use PCI-7344+UMI-7764+Servo amplifier+Servo motor,my MAX version is 4.2 and I use NI-Motion7.5
    My question as following:
    1,In Axis Configuration,for motor type,why I must select stepper but not servo?my motor is servo motor!If I select Servo,my motor can't run,I don't know why.
     If I select stepper,though motor can work but I can't test encoder in MAX.
    2,In Stepper settings,for stepper loop mode,why I must select open-loop but not close-loop?If I select close-loop,the servo motor doesn't work too.
    3,If I want my two servo motors run at different velocity,How shoud I do?It seems I just can set the same velocity in MAX for my two servo motors.
     My English is poor,Pls pardon me!I come from China.
    Thank you for your help!
    EnquanLi
    Striving is without limit!

    Hi,Jochen,
    Thank you for your kindly help!
    The manufacturer of the drive and motor that I am using now is Japan SANYO DENKI,drive type is RS1A01AA,motor type is R2AA06020FXP00.
    And I use position control mode,thehe encoder's counts per revolution is 131072.I set the electronic gear ratio to 1:1 for drive.
    Now,I can use Close-Loop to control the motor but still has some problems.When I configure it to run in closed loop mode, the motors behave strangely and never move to the target position.When I configure it to run in closed loop mode, the motors behave strangely and never move to the target position.The detail situation is as following
    1,Motor can't run.
    2, Or motor moves to a position, then moves in the same direction agian and eventually stops.
    Except for the  two points mentioned above,"Following Error" is  occured frequently,I don't know why.
    I am still not clear why I must set the motor type be stepper in MAX .
    And I have another question:what the relationship between the steps and the counts?They have the proportion relations?I notice that there are a section said like this in help document: For proper closed-loop and p-command operation, steps per revolution/counts per revolution must be in the range of 1/32,767 < steps/counts < 32,767. An incorrect counts to steps ratio can result in failure to reach the target position and erroneous closed-loop stepper operation.
    I am verry sorry I have too many questions!
    I am very appreciate for your kingly help!Thanks again!
    EnquanLi
    China
    Striving is without limit!

Maybe you are looking for