New to APEX, help with simple app please

Need to create a simple app based on 1 box with 4 buttons based to execute sql. Having hard time sifting throught the material need app fast. Sorry for being a block head. Can anyone help or suggest any books to point me in right direction. Need asap. Any help will be appreciated.
Simple app with one box where username is entered
--------------------- Enter new users name
Create user with with added synonyms A
Create user without synonyms B
Remove user C
ADD synonyms to existing user D
EXIT E
A = Executes create user command with additional lines of code to add the synonyms
B = Executes simple create user command
C = Executes delete user, (sys, system, ect will be excluded
D = Executes command to add 3 private synonyms
We are limiting the data they can see if they do not have a synonym.
Thanks a ton

Scott,
Thanks for your reply. This is a DBA create user tool, management wants to provide the application administrator ability to create DBA users only for this database. The application is built so users with certain private synonyms assigned can see data, those without do not. It is a customized COTS app, I would never design like that.
I do not agree with it, not my decision. I built a shell menu and scripts but that is not GUI enough for this boss. At first It looked like a simple APEX app. I am finding that APEX is more a reporting tool based on objects and I will continue to use it for that. I am learning lots about it so that is cool.
Andy

Similar Messages

  • Help with simple preloader- please

    hello,
    i'm trying to get a simple preloader and progress bar working
    for a swf file. The problem is the main swf. movie starts playing
    under preloader before the preloader is finished. So when the
    preloader has finished you are already well into the main movie.
    (After the movie loops you can see the first part that was missing
    during the preload.) This is the AS that i found from a web site
    (MonkeyFlash), it is AS 3. Below is the script.
    here is a link to the page with the movie:
    http://www.aquatichealings.com/new/
    Also is it not advisable to use AS3 because it will only work
    in Flash 9 and not below and most people may not have 9? Should i
    be starting over in AS2. I had built a AS2 in Flash CS3 but had the
    same problem.
    Please kindly advise on how to make it work correctly. I'd
    really appreciate some help, i've gotten books and scoured the web
    for different methods and i'm afraid i'm a bit of a numb skull with
    Flash and can not seem to get a simple preloader and progress bar
    working correctly. THANKS!
    gregory
    var myRequest:URLRequest = new URLRequest("aquatic-h.swf");
    var myLoader:Loader = new Loader();
    myLoader.load(myRequest);
    myLoader.contentLoaderInfo.addEventListener(Event.OPEN,showPreloader);
    myLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,showProgress);
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,showContent);
    var myPreloader:Preloader = new Preloader();
    function showPreloader(event:Event):void {
    addChild(myPreloader);
    myPreloader.x = stage.stageWidth/2;
    myPreloader.y = stage.stageHeight/1.2;
    function showProgress(event:ProgressEvent):void {
    var percentLoaded:Number =
    event.bytesLoaded/event.bytesTotal;
    myPreloader.loading_txt.text = "Loading - " +
    Math.round(percentLoaded * 100) + "%";
    myPreloader.bar_mc.width = 198 * percentLoaded;
    function showContent(event:Event):void {
    removeChild(myPreloader);
    addChild(myLoader);
    }

    ... the pre-loader clip must be accompanied by a "stop"
    perhaps a "stop all sounds", too ActionScript on the action layer
    of the main timeline.
    I keep it simple and ask my prloader to not let the main
    timeline play until the final frame of the movie has loaded. The
    final frame is accompanied by a frame labeled "End" on a layer of
    the main timeline of just labels.

  • HT2693 Need help with purchased App, Please :o(

    Hi,
    I've purchased the Jllian Michael's app. And for some reason when I go onto the app it kicks me out.
    How does once go about on getting it fix. I've try deleting and re installing the app didn't work, I've tried restarting my
    Iphone. I don't know what to do. Can I get my money back? Please help.
    Thanks
    Karen R

    Try this:
    1. Close all apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep and Home button down until you see the Apple Logo.

  • Help with simple animation please

    Hello all. I am writing a class and part of it is to make a stick figure walk across the screen. I have searched for tutorials and all I could seem to find is what I have already done. I have one leg moving on my guy now I am trying to get the whole body to move to the right and start again after it reaches the end of screen. I'll post what I have so far. I have started some new coordinates for the body part (the one long line). It didn't go so well in my applet. Before I go through all this trouble figuring out all these different coordinates trying to move each body part one at a time and keeping them aligned, can somebody tell me if I am on the right track or am I making it harder on myself? I can figure out the movement of a leg because I am only moving one end of it but when it comes to the entire (body) line and the circle, that's where I get a little confused. Is there an easier way of doing this? Am I declaring the variables correctly? Without my crazy body variables, the leg moves just fine, just wanted to show what I am trying to do. Thanks for any help on this.
    import java.applet.*;
    import java.awt.*;
    public class Exercise1 extends Applet
    private int index = 0;
    int[] horiz = {130,120,110,100,90,80,70,60,50};
    int[] vert = {310,310,310,310,310,310,310,310,310};
    int[] bu = {85,110,140,110,170,110}; //move upper body to right?
    int[] bl = {85,310,110,310,140,310};//move lower body to right?
    private int sleep = 200;
    public void start()
    index = 0;
    public void paint(Graphics gr)
    gr.drawOval(30,30,80,80);
    gr.drawLine(85,110,bu[index],bl[index]);
    gr.drawLine(0,310,260,310);
    ++index;
    if(index == horiz.length)
    index = 0;
    gr.setColor(Color.BLACK);
    gr.drawLine(85,210,horiz[index],vert[index]);
    try
    Thread.sleep(sleep);
    catch(InterruptedException e)
    repaint();
    }

    FWIW this is how I would approach this problem: I wouldn''t use hardcoded arrays, I would compute positions.
    1. Add an instance field increment of type int to represent the increment (by how many pixels movement is to be effected in the x-direction i.e. horizontally).
    2. Draw a vertical line to represent the body and move it by "increment" pixels at a time, multiplying increment by -1 each time "body" reached the boundaries of its container. Test that to oblivion.
    3. Add a line for a leg, the top end of which would be the lower end of "body" and the bottom end at the center of the baseline. Test that (the leg would stretch terribly, but there you have it, for the time being)
    4. Start to increment the x position of the bottom of the leg by 2 * increment as soon as the horizontal displacement of the bottom of the leg from the body exceeds a certain limit, and stop as soon as it again exceeds the sme linit in the opposite direction. Test that to oblivion.
    5. Add the other leg, making sure the two legs start ahead and behind the body, so that the partial stick figure appears to walk, not hop.
    6. Modify the condition to reverse the movement when any part of the figure, and not just the body, goes outside the boundaries of the container.
    Then, after getting that working, I would start to think about the head and then the arms. Later I would look into mdifying the routine to give the stick man knees and elbows, then maybe ankles and feet... raise a foot off the ground when taking a step... swing his arms as he walks...
    In a nutshell, do this one part at a time, visualizing where the rest will go, and test test test at each stage so you don't have to backtrack too much.
    A word of advice: don't hardcode movement increments into the body of your code, use variables declared and initialized at the top of the program, where it will be easy to find them and change the values.
    db

  • Help with simple program please!

    Hi. I am brand new to Java and pretty new to programming in general. I am writing a project for a class where we have to output the index at which a certain "target" string matches the "source" string. I'm stuck. I thought my code would make "compare" a string of length target.length()? Any help is greatly appreciated. Thanks!
    public static ArrayList<Integer> matches(String source, String target) {
    // check preconditions
    assert (source != null) && (source.length() > 0)
         && (target != null) && (target.length() > 0): "matches: violation of precondition";
    ArrayList<Integer> result = new ArrayList<Integer>();
    String compare = "";
    for (int i=0; i<source.length()-target.length()+1;i++){
         int count = 0;
         for (int k=i; k<i+target.length(); k++){
              compare = compare + source.charAt(k);
         for (int j=0; j<target.length(); j++){
              if (target.charAt(j) == compare.charAt(j)){
                   count ++;
         if (count == target.length()){
              result.add(i);
              return result;
    }

    I apologize, I am new to the forums and posted that code horribly. Here is the accurate code.
        public static ArrayList<Integer> matches(String source, String target) {
            // check preconditions
            assert (source != null) && (source.length() > 0)
                 && (target != null) && (target.length() > 0): "matches: violation of precondition";
            ArrayList<Integer> result = new ArrayList<Integer>();
            String compare = "";
            for (int i=0; i<source.length()-target.length()+1;i++){
                 int count = 0;
                 for (int k=i; k<i+target.length(); k++){
                      compare = compare + source.charAt(k);
                 for (int j=0; j<target.length(); j++){
                      if (target.charAt(j) == compare.charAt(j)){
                           count ++;
                 if (count == target.length()){
                      result.add(i);
              return result;
        }

  • Help with an app please....

    Anyone know what happened to iwonder surf support? I paid $30 for it and they seemed to have disappeared.

    Do these links help? -
    http://www.iwondersurf.com/
    https://itunes.apple.com/us/app/iwonder-pro/id393932990?mt=8

  • Help with simple jsp please

    Hi,
    I would like to know how to create a simple jsp to display some data from the database. I was able to create a bean to display the data from a table using the wizard. How do I put this bean's content into the jsp?
    Thanks,
    Charles Li

    Even better are the online tutorials that will take you step by step:
    http://www.oracle.com/technology/obe/obe9051jdev/index.htm
    Try the ADF Workshop one - it will show you most of what you need.

  • What's the new addition to reporting with simple finance?

    Hi, 1. Embedded BI reporting(BI queries) 2. Net Weaver Based reports 3. H reports (like FBL*H) 4. HANA live reporting All the above reporting options are available with HANA, but what’s new with simple finance; please correct me if my understanding is not correct. I can only see SAP Fiori Dashboard apps which are new with simple finance. I hope somebody can clarify my doubt Rgds Murali

    Hallo Murali,
    given to the architecture
    you have various UX option as described below. We provide various new Operational Reporting Applications e.g. for Manager(KPI Reporting) or Controller(Interactive Drill Down). In addition we have embeeded now reporting in our applications where its useful.
    Of course the classical GUI reporting is still working as well. For FBL*H we have Fiori applications in addition. e.g. Customer, Vendor and Account Line Items or Financial Statement. You find more information about the available applications here.
    Best regards,
    Christian

  • Need help with simple XML validation

    I am new to Spry and need some help creating a simple
    validation. There is a form field which must not contain a value
    already in the database. I have a script which accepts a parameter
    and returns a boolean result. Here is the XML:
    <samples>
    <sample>
    <ISFOUND>0</ISFOUND>
    </sample>
    </samples>
    1. How do I call this script when the form field changes and
    pass the form value as the parameter?
    2. How do I check the returned value in the XML and throw an
    error if true?
    I appreciate any help with this. Please let me know if there
    is a better way to achieve the same result.
    Thanks,
    Rich

    I enabled the call to the XML response. However, I am having
    trouble identifying when the call is complete so I can parse the
    result. How do I run my check after the data load and display the
    proper message?

  • Help with access control please

    So I'm trying to set up my brother's PSP to the wirless network through MAC address timed access. What I want to do is make it so that he can only access it through certain times in the day. I'm having troubles with actually getting it to work. Everytime I set it up, the PSP only show's up as a DHCP client and not a Wireless client. I tried the option panel with the add wireless clients through the first try access. Could I get some help with this issue please? Thanks!

    Just to calm your fears... There is no conspiracy. If someone had an answer or a suggestion they would post it.

  • Please help with simple Drag N Drop

    I’m desperate and need some help with this simple drag
    and drop. Here is the scenario…this animation is for a
    kindergarten course. I have 6 different colored teddy bears on the
    floor and the bears are to be placed on the middle shelf in the
    room, in no particular order. I have the code in place to drag the
    bears, and they return to their original location if dropped in the
    wrong area. Everything works, except I can’t make the bears
    stick to the target area. The target area has to be the same for
    all 6 bears. Can someone help me out with this?
    I have a feeling that the problem has something to do with my
    instance names, but I have tried everything I can think of and
    cannot get it to work. Is there some way I can post, send, or
    attach my .fla file for someone to look at? I’m desperate.
    PLEASE HELP!

    var startX3:Number;
    var startY3:Number;
    var counter3:Number=0;
    vf_A.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_A.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_E.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_E.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_I.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_I.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_O.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_O.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    vf_U.addEventListener(MouseEvent.MOUSE_DOWN, pickUp3);
    vf_U.addEventListener(MouseEvent.MOUSE_UP, dropIt3);
    function pickUp3(event:MouseEvent):void {
    event.target.startDrag(true);
    reply2_txt.text="";
    event.target.parent.addChild(event.target);
    startX2=event.target.x;
    startY2=event.target.y;
    function dropIt3(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String="target"+event.target.name;
    var myTarget:DisplayObject=getChildByName(myTargetName);
    if (event.target.dropTarget != null &&
    event.target.dropTarget.name == "instance112") {
    reply2_txt.text="Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN,
    pickUp3);
    event.target.removeEventListener(MouseEvent.MOUSE_UP,
    dropIt3);
    event.target.buttonMode=false;
    event.target.x=myTarget.x;
    event.target.y=myTarget.y;
    var mySound:Sound = new vowels_NAR_goodjob();
    mySound.play();
    counter3++;
    } else {
    reply2_txt.text="Try Again!";
    event.target.x=startX2;
    event.target.y=startY2;
    var mySound2:Sound = new vowel_NAR_nopetryagain();
    mySound2.play();
    if (counter2==5) {
    reply2_txt.text="Great Job! You did it!";
    gotoAndPlay(3300);
    vf_A.buttonMode=true;
    vf_E.buttonMode=true;
    vf_I.buttonMode=true;
    vf_O.buttonMode=true;
    vf_U.buttonMode=true;

  • Help with simple OS upgrade and backup questions for a dumb old previous PC user...?

    Ok...have mercy on me, please...
    I am not completely dumb, I know typical board etiquette, and I have searched for various answers (and found many)...but I just want to confirm my personal "research" and get all of this clear up before I proceed with this insanity.  I know I could probably search more, but this is taking hours, because of all my various questions, one leads to 10 more...
    I have an iMac with Mac OS X Version 10.5.8 (which, though not mentioned anywhere?...is apparently "Leopard", right?  Told you I was dumb...)
    Processor:  3.06 GHz Intel Core 2 Duo
    Memory: 2 GB 800 MHz DDR2 SDRAM
    My main goal:  install an app that was in the Mac App store.
    However, with Leopard, I can't access the Mac App store with Leopard, apparently. 
    I click on the Mac App store, and up pops up a Lion advertisement...telling me I should upgrade.  Ok, fine...probably a good idea, anyway...
    But how do you upgrade to Lion?  Apparently through the Mac App store!
    The web-redirects on the Apple site are amusing...taking me on an endless cycle...purchase Lion in the app store...click..."you need to upgrade to Lion"...OK...click..."you need Lion at the app store"...OK...click..."you need to upgrade to Lion to get to the app store"....etc.
    OK...fine...google searches...ahh, I need to upgrade to Snow Leopard first, apparently!  Yes?
    (Maybe the Apple redirects should detect that I have Leopard, and direct me to a screen that explains that I must upgrade to Snow Leopard...and then Lion!  Do you hear that, Apple?  Thanks.)
    Anyway...so here's my plan:
    1) Upgrade to Snow Leopard
    2) Access the Mac app store
    3) Upgrade to Lion
    Question A:  With my iMac (specs above), is it really advisable for me to do this?  Can my computer really handle Lion?  It seems I barely meet the minimum with my intel core 2 Duo and 2 GB ram...yes?  Is this a dumb idea, even if "OK"?  I know that "minimum requirements" on a PC often meant:  "Well, it will work...but it will be slower than a snail and crash if you run 5 programs at the same time" (which I usually do...)  I don't want to upgrade if the "minimum" is really not enough. 
    Question B:  If the answer to A is "not a good idea", then  do I just need a new computer (i.e. better processor)?  Or do I need more Ram?  And can I add Ram to this computer, and is it relatively easy?  I have added Ram to PCs tons of times, and you always have to determine type of Ram for your board, make sure they "match", or whatever, and then open up the machine and install.  Kind of a pain, but once I have the "right" type of Ram, opening the CPU and installing is within my abilities.  Will it be harder for a Mac?
    = = =
    Next:
    When upgrading an OS on a Windows, you pretty much format the harddrive and start all over.  Back in the day I was a PC user, there wasn't really a "great" way to back up programs and files, so this was a nightmare.  You could NOT just back-up software.  You typically had to re-purchase and install it all from scratch.  Is this the same with Macs?  Furthermore, personal files were scattered all over the hard-drive for the individual software...so trying to back all that up to get it back on the new system = nightmare!  I hate PCs.
    Anyway...so, my iMac has Time Machine.  I am pretty ignorant about this, and based on my previous PC backup program nightmares, I have a distrust for it...and don't really understand how it works.  But in any event, my external drive crashed a few months ago, and I haven't replaced it, yet.  So, I am replacing it soon and will get Time Machine back up and running...setting it up again, etc...leading to question C...
    Question C: When upgrading from Leopard to Snow Leopard to Lion, what is the best way to ensure I keep all my programs and files.  My wife and I both access the computer, so two user accounts.  Does Time Machine really do a good job backing up everything and all things?  Is it just a matter of upgrade to Snow Leopard...then immediately to Lion...and then some sort of "Restore" from Time Machine?  Anything for me to "watch out for"...or to do when I buy a new external hard-drive and setup up Time Machine for the first time on it, in order to make this work well?  Will I have to re-install all the various applications I have installed on this thing?  (like with PCs?)
    Thanks for any sincere help. 

    yachadhoo wrote:
    I have an iMac with Mac OS X Version 10.5.8 (which, though not mentioned anywhere?...is apparently "Leopard", right?  Told you I was dumb...)
    Processor:  3.06 GHz Intel Core 2 Duo
    Memory: 2 GB 800 MHz DDR2 SDRAM
    Apple has discontinued support for 10.5, it's a plaque of our platform that Apple only supports the last two operating systems in circulation.
    Where as on Windows you can run the same OS version for 10 years and get updates free (if not stolen), on a Mac we get one year, two tops now and if you don't upgrade and break all your third party software and hardware drivers in the process, then your denied security updates.
    On top of that, the OS X upgrades tend to break your older hardware too, or slow it down so much that it drives you to want to buy newer hardware.
    It's funny Apple places the AppStore on your OS X version along with iTunes and Safari updates, but then doens't supply necessary security updates, your machine may be compromised and here you enter vital credit card info, banking  etc. thinking you have a secure machine.
    My advice, since that's a 10.5 era Mac, is to upgrade to 10.6.3 via this disk, then use Software Update until clear. You'll get security updates and your present installed 10.5 software will work in 10.6 using Rosetta.
    http://store.apple.com/us/product/MC573Z/A
    Rosetta is not avaialble in 10.7 so it could be a lot of your software will no longer function
    http://roaringapps.com/apps:table
    I don't see the sense in you buying all new software for a machine that's at it's end of life stage.
    You can buy software in the AppStore with 10.6.
    Question A:  With my iMac (specs above), is it really advisable for me to do this?  Can my computer really handle Lion?  It seems I barely meet the minimum with my intel core 2 Duo and 2 GB ram...yes?
    You will need to buy 4GB of RAM to run Lion well, the 2GB is just a bare minimum, and your processor is a bit dated.
    Lion 10.7 is certainly slower than Snow Leopard 10.6, in fact so many wanted to go back to Snow Leopard and one of the resons was Lion was slow.
    So I wrote a User Tip, here, but the Tips were implemented only recently.
    How to revert your Mac to Snow Leopard
    Question B:  If the answer to A is "not a good idea", then  do I just need a new computer (i.e. better processor)?  Or do I need more Ram?  And can I add Ram to this computer, and is it relatively easy?  I have added Ram to PCs tons of times, and you always have to determine type of Ram for your board, make sure they "match", or whatever, and then open up the machine and install.  Kind of a pain, but once I have the "right" type of Ram, opening the CPU and installing is within my abilities.  Will it be harder for a Mac?
    RAM is easy, you can buy it at Otherworld Computing or Crucial.com and install it yourself, there is a little door under the monitor.
    Videos online at YouTube.
    When upgrading an OS on a Windows, you pretty much format the harddrive and start all over.  Back in the day I was a PC user, there wasn't really a "great" way to back up programs and files, so this was a nightmare.  You could NOT just back-up software.  You typically had to re-purchase and install it all from scratch.  Is this the same with Macs?  Furthermore, personal files were scattered all over the hard-drive for the individual software...so trying to back all that up to get it back on the new system = nightmare!  I hate PCs.
    Mac'soperaing system is seperate, it can be replaced or upgraded indepentantly of programs or user accounts on the machine.
    There are some programs that install a kernel extension file at boot into OS X, those get knocked out, but those can be replaced with a new install of the software.
    You should always backup your users files as those can't be repalced.
     Most commonly used backup methods explained
    Question C: When upgrading from Leopard to Snow Leopard to Lion, what is the best way to ensure I keep all my programs and files.
    OS X upgrades dont' affect User accounts but they can have a affect on programs installed, which most of your 10.5 programs likely will no longer work in 10.7
    However they will (with a slight update) work in 10.6 just like before.
    You need to backup regardless, I suggest a manual backup of users files to a storage drive, a 10.5 clone on another drive, the your ready to upgrade to 10.6
    10.5 to 10.6 upgrade is rather painless, also 10.6 gives accelerated video drivers, so your machine will appear faster.
    However once you install 10.7, you will slow down.
    Does Time Machine really do a good job backing up everything and all things? 
    No, you shouldn't rely upon TM, have a multiple backup stragedy, TM files are hard to access directly.
    Is it just a matter of upgrade to Snow Leopard...then immediately to Lion...and then some sort of "Restore" from Time Machine?
    No need to restore, OS X upgrades and leaves everything else in place, just some programs (with 10.6) or a lot (with 10.7) when you try to launch them they will fail.
    Also when you connect TM it will do a substancial change to reflect the new boot drive.
    If you were using TM as a "storage drive" thinking you can use the archived versions later, that wil change upon the new OS X  upgrade.
    But in any event, my external drive crashed a few months ago, and I haven't replaced it, yet.  So, I am replacing it soon and will get Time Machine back up and running...setting it up again, etc...leading to question C..
    You need not only TM drive, but a bootable clone and user files on a storage drive.
     Most commonly used backup methods explained
    Will I have to re-install all the various applications I have installed on this thing?  (like with PCs?)
    No, depending upon what OS X version you stop at depends how many programs no longer work.
    You will have to buy a lot of new or upgrade versions with 10.7, not so with 10.6 only updates mostly because of Rosetta on 10.6 and not on 10.7
    My opinion, since that machine is a bit dated, is to upgrade to 10.6, Software update to 10.6.8, and stay there.
    Later on 10.8 is being released after this summer, you may want to consider getting a new machine with 10.8 a few months later to ensure all the bugs are worked out of it.
    Your not a comptuer savvy person, you like most Apple users expect your machine to "just work" I think going to 10.7 will be a bad experience for you.
    10.6.8 will server your needs until 10.8 is released and on new hardware where Apple will hold your hand for free for three months, 3 years with AppleCare.
    Your not a "OS X upgrader type of a person" and Apple needs to get of thier collective assets and pay better attention to it's most common users.

  • Help with blackberry app world log ins

    hi,
    could someone help me with the blackberry log ins.
    I had registered all my details with the app world, and i was able to download apps for a while but now i am not able to access apps to download because my log ins are now invalid i have been told, i have tried to reset my password and it told me to enter my security question answer and i have tried to enter it but it will not refresh to let me answer the question.  Could someone please help me around the situation.  thanks in advance. 

    Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Now, try your BlackBerryID again.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • This iMac will be the death of me! Help with Kernel panics please

    Hi guys,
    Had my 27" iMac back from repair at only 5 months old , they installed Lion OSX , first its been freezing on me for so reason at all, just surfing the net , no video or flash, now i keep getting a kernel panic for some reason , can anyone help with this please......
    Interval Since Last Panic Report:  10 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7B31CF0B-CED9-4C93-87BA-9E4D36669DCE
    Sat Aug 13 19:47:12 2011
    panic(cpu 0 caller 0xffffff80002c268d): Kernel trap at 0xffffff8000210d57, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000291, CR3: 0x000000001753f000, CR4: 0x0000000000000660
    RAX: 0x0000000000000003, RBX: 0x0000000000000000, RCX: 0x000000000000db9b, RDX: 0xffffff80f148beb8
    RSP: 0xffffff80f148be78, RBP: 0xffffff80f148bef0, RSI: 0xffffff80f148bec0, RDI: 0x0000000000000291
    R8:  0x000000009b000000, R9:  0x000000009b000000, R10: 0x0000000000000003, R11: 0xffffff80d315d210
    R12: 0xffffff80f148bec0, R13: 0xffffff80f148beb8, R14: 0xffffff8014c4c228, R15: 0xffffff8014c4c230
    RFL: 0x0000000000010246, RIP: 0xffffff8000210d57, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000000000291, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80f148bb30 : 0xffffff8000220702
    0xffffff80f148bbb0 : 0xffffff80002c268d
    0xffffff80f148bd50 : 0xffffff80002d7a3d
    0xffffff80f148bd70 : 0xffffff8000210d57
    0xffffff80f148bef0 : 0xffffff8000213374
    0xffffff80f148bf20 : 0xffffff800021ba01
    0xffffff80f148bf90 : 0xffffff800021bcd1
    0xffffff80f148bfb0 : 0xffffff8000820057
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11A511
    Kernel version:
    Darwin Kernel Version 11.0.0: Sat Jun 18 12:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
    Kernel UUID: 24CC17EB-30B0-3F6C-907F-1A9B2057AF78
    System model name: iMac11,3 (Mac-F2238BAE)
    System uptime in nanoseconds: 265853876036
    last loaded kext at 24377516298: com.apple.filesystems.msdosfs          1.7 (addr 0xffffff7f81e83000, size 57344)
    loaded kexts:
    com.apple.filesystems.msdosfs          1.7
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.driver.AppleBluetoothMultitouch          66.3
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyDriver          2.1.1f11
    com.apple.driver.AppleHDA          2.1.1f11
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.kext.ATIFramebuffer          7.0.2
    com.apple.ATIRadeonX3000          7.0.2
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.12.40
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.AirPort.Atheros21          430.14.9
    com.apple.driver.AirPort.Atheros40          500.55.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.driver.AppleMuxControl          3.0.8
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.driver.AppleIRController          309
    com.apple.driver.AppleUSBCardReader          3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.iokit.AppleBCM5701Ethernet          3.0.6b9
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleUSBUHCI          4.4.0
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.driver.AppleMultitouchDriver          220.62
    com.apple.driver.IOBluetoothHIDDriver          2.5f17
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleHDAHardwareConfigDriver          2.1.1f11
    com.apple.driver.DspFuncLib          2.1.1f11
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.ATI5000Controller          7.0.2
    com.apple.kext.ATISupport          7.0.2
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.1.1f11
    com.apple.iokit.IOHDAFamily          2.1.1f11
    com.apple.iokit.IO80211Family          400.40
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.8
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.driver.AppleFileSystemDriver          13
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac11,3, BootROM IM112.0057.B00, 4 processors, Intel Core i7, 2.93 GHz, 8 GB, SMC 1.59f2
    Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x0702, 0x32353636344D313333490000000000000000
    Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR3, 1333 MHz, 0x0702, 0x32353636344D313333490000000000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.55.4-P2P
    Bluetooth: Version 2.5.0f17, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 5
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

    Serious? Man , i have only just got it back! its had a new logic board fitted and also a new led display board and its only 5 months old!
    I really don't want to take this back if its something simple, but if you guys think something is not right then i will.
    issues are intermit freezing when just surfing the net ( hard reset needed )
    And also now these intermit kernel panics for no reason, again just surfing the net. ( hard reset needed )
    Apple are lucky i have a sense of humour!

  • I need help with this script please ASAP

    So I need this to work properly, but when ran and the correct answer is chosen the app quits but when the wrong answer is chosen the app goes on to the next question. I need help with this ASAP, it is due tommorow. Thank you so much for the help if you can.
    The script (Sorry if it's a bit long):
    #------------Startup-------------
    display dialog "Social Studies Exchange Trviva Game by Justin Parzik" buttons {"Take the Quiz", "Cyaaaa"} default button 1
    set Lolz to (button returned of the result)
    if Lolz is "Cyaaaa" then
    killapp()
    else if Lolz is "Take the Quiz" then
              do shell script "say -v samantha Ok starting in 3…2…1…GO!"
    #------------Question 1-----------
              display dialog "Around age 11, many boys left their fathers to become…" buttons {"Scholars", "Warriors", "Apprentices"}
              set A1 to (button returned of the result)
              if A1 is "Apprentices" then
                        do shell script "say -v samantha Correct Answer"
              else
                        do shell script "say -v samantha Wrong Answer"
      #----------Question 2--------
                        display dialog "Most children were taught
    to read so that they could understand the…" buttons {"Music of Mozart", "Bible", "art of cooking"}
                        set A2 to (button returned of the result)
                        if A2 is "Bible" then
                                  do shell script "say -v samantha Correct Answer"
                        else
                                  do shell script "say -v samantha Wrong Answer"
      #------------Question 3---------
                                  display dialog "In the 1730s and 1740s, a religious movement called the_______swept through the colonies." buttons {"Glorius Revolution", "Great Awakening", "The Enlightenment"}
                                  set A3 to (button returned of the result)
                                  if A3 is "Great Awakening" then
                                            do shell script "say -v samantha Correct Answer"
                                  else
                                            do shell script "say -v samantha Wrong Answer"
      #-----------Question 4--------
                                            display dialog "_______ was
    a famous American Enlightenment figure." buttons {"Ben Franklin", "George Washington", "Jesus"}
                                            set A4 to (button returned of the result)
                                            if A4 is "Ben Franklin" then
                                                      do shell script "say -v samantha Correct Answer"
                                            else
                                                      do shell script "say -v samantha Wrong Answer"
      #----------Question 5-------
                                                      display dialog "______ ownership gave colonists political rights as well as prosperity." buttons {"Land", "Dog", "Slave"}
                                                      set A5 to (button returned of the result)
                                                      if A5 is "Land" then
                                                                do shell script "say -v samantha Correct Answer"
                                                      else
                                                                do shell script "say -v samantha Wrong Answer"
      #---------Question 6--------
                                                                display dialog "The first step toward guaranteeing these rights came in 1215. That
    year, a group of English noblemen forced King John to accept the…" buttons {"Declaration of Independence", "Magna Carta", "Constitution"}
                                                                set A6 to (button returned of the result)
                                                                if A6 is "Magna Carta" then
                                                                          do shell script "say -v samantha Correct Answer"
                                                                else
                                                                          do shell script "say -v samantha Wrong Answer"
      #----------Question 7--------
                                                                          display dialog "England's cheif lawmaking body was" buttons {"the Senate", "Parliament", "King George"}
                                                                          set A7 to (button returned of the result)
                                                                          if A7 is "Parliament" then
                                                                                    do shell script "say -v samantha Correct Answer"
                                                                          else
                                                                                    do shell script "say -v samantha Wrong Answer"
      #--------Question 8-----
                                                                                    display dialog "Pariliament decided to overthrow _______ for not respecting their rights" buttons {"King James II", "King George", "King Elizabeth"}
                                                                                    set A8 to (button returned of the result)
                                                                                    if A8 is "King James II" then
                                                                                              do shell script "say -v samantha Correct Answer"
                                                                                    else
                                                                                              do shell script "say -v samantha Wrong Answer"
      #--------Question 9------
                                                                                              display dialog "Parliament named ___ and ___ as England's new monarchs in something called ____." buttons {"William/Mary/Glorius Revolution", "Adam/Eve/Great Awakening", "Johhny/Mr.Laphalm/Burning of the hand ceremony"}
                                                                                              set A9 to (button returned of the result)
                                                                                              if A9 is "William/Mary/Glorius Revolution" then
                                                                                                        do shell script "say -v samantha Correct Answer"
                                                                                              else
                                                                                                        do shell script "say -v samantha Wrong Answer"
      #---------Question 10-----
                                                                                                        display dialog "After accepting the throne William and Mary agreed in 1689 to uphold the English Bill of _____." buttons {"Money", "Colonies", "Rights"}
                                                                                                        set A10 to (button returned of the result)
                                                                                                        if A10 is "Rights" then
                                                                                                                  do shell script "say -v samantha Correct Answer"
                                                                                                        else
                                                                                                                  do shell script "say -v samantha Wrong Answer"
      #---------Question 11------
                                                                                                                  display dialog "By the late 1600s French explorers had claimed the ___ River Valey" buttons {"Mississippi", "Ohio", "Hudson"}
                                                                                                                  set A11 to (button returned of the result)
                                                                                                                  if A11 is "Ohio" then
                                                                                                                            do shell script "say -v samantha Correct Answer"
                                                                                                                  else
                                                                                                                            do shell script "say -v samantha Wrong Answer"
      #------Question 12---------
                                                                                                                            display dialog "______ was sent to ask the French to leave 'English Land'." buttons {"Johhny Tremain", "George Washington", "Paul Revere"}
                                                                                                                            set A12 to (button returned of the result)
                                                                                                                            if A12 is "George Washington" then
                                                                                                                                      do shell script "say -v samantha Correct Answer"
                                                                                                                            else
                                                                                                                                      do shell script "say -v samantha Wrong Answer"
      #---------Question 13-------
                                                                                                                                      display dialog "_____ proposed the Albany Plan of Union" buttons {"George Washingon", "Ben Franklin", "John Hancock"}
                                                                                                                                      set A13 to (button returned of the result)
                                                                                                                                      if A13 is "Ben Franklin" then
                                                                                                                                                do shell script "say -v samantha Correct Answer"
                                                                                                                                      else
                                                                                                                                                do shell script "say -v samantha Wrong Answer"
      #--------Question 14------
                                                                                                                                                display dialog "The __________ declared that England owned all of North America east of the Mississippi" buttons {"Proclomation of England", "Treaty of Paris", "Pontiac Treaty"}
                                                                                                                                                set A14 to (button returned of the result)
                                                                                                                                                if A14 is "" then
                                                                                                                                                          do shell script "say -v samantha Correct Answer"
                                                                                                                                                else
                                                                                                                                                          do shell script "say -v samantha Wrong Answer"
      #-------Question 15-------
                                                                                                                                                          display dialog "Braddock was sent to New England so he could ______" buttons {"Command an attack against French", "Scalp the French", "Kill the colonists"}
                                                                                                                                                          set A15 to (button returned of the result)
                                                                                                                                                          if A15 is "Command an attack against French" then
                                                                                                                                                                    do shell script "say -v samantha Correct Answer"
                                                                                                                                                          else
                                                                                                                                                                    do shell script "say -v samantha Wrong Answer"
      #------TheLolQuestion-----
                                                                                                                                                                    display dialog "____ is the name of the teacher who runs this class." buttons {"Mr.White", "Mr.John", "Paul Revere"} default button 1
                                                                                                                                                                    set LOOL to (button returned of the result)
                                                                                                                                                                    if LOOL is "Mr.White" then
                                                                                                                                                                              do shell script "say -v samantha Congratulations…you…have…common…sense"
                                                                                                                                                                    else
                                                                                                                                                                              do shell script "say -v alex Do…you…have…eyes?"
                                                                                                                                                                              #------END------
                                                                                                                                                                              display dialog "I hope you enjoyed the quiz!" buttons {"I did!", "It was horrible"}
                                                                                                                                                                              set endmenu to (button returned of the result)
                                                                                                                                                                              if endmenu is "I did!" then
                                                                                                                                                                                        do shell script "say -v samantha Your awesome"
                                                                                                                                                                              else
                                                                                                                                                                                        do shell script "say -v alex Go outside and run a lap"
                                                                                                                                                                              end if
                                                                                                                                                                    end if
                                                                                                                                                          end if
                                                                                                                                                end if
                                                                                                                                      end if
                                                                                                                            end if
                                                                                                                  end if
                                                                                                        end if
                                                                                              end if
                                                                                    end if
                                                                          end if
                                                                end if
                                                      end if
                                            end if
                                  end if
                        end if
              end if
    end if

    Use code such as:
    display dialog "Around age 11, many boys left their fathers to become…" buttons {"Scholars", "Warriors", "Apprentices"}
    set A1 to (button returned of the result)
    if A1 is "Apprentices" then
    do shell script "say -v samantha Correct Answer"
    else
    do shell script "say -v samantha Wrong Answer"
    return
    end if
    #----------Question 2--------
    display dialog "Most children were taught to read so that they could understand the…" buttons {"Music of Mozart", "Bible", "art of cooking"}
    set A2 to (button returned of the result)
    if A2 is "Bible" then
    do shell script "say -v samantha Correct Answer"
    else
    do shell script "say -v samantha Wrong Answer"
    return
    end if
    (90444)

Maybe you are looking for

  • Updates don't appear in mac app store

    Hi, I have a problem with the mac app store. I enter to it and in updates it says that I haven't updates. But I have a lot of apps to update... I had this problem time before but with the terminal and some codes I could repair. But now I can't find t

  • Itunes crashes when i try to play a tv show

    Yesterday I set up my nice brand new macbook pro, imported my programs and itunes library from my old Mac and everything went fairly smoothly (had to re-register Photoshop and Illustrator and redownload paralells) The main problem has been itunes whi

  • Opinion: new Package for every new custom Component?

    Hi there, I am just thinking of some possibilities to structurize my Components I made. I wonder if it is useful/good programming to define a new package for each new custom Component? So if I define a new MyComponent class extending JFrame should I

  • Strange character in sqlplus

    hi all, i've find a very strange problem: if i run this query in plsql developer: select ascii(substr(ds_esito_mef,1,1)),substr(ds_esito_mef,1,1) from ESITI_MEF_IAER0_RD where key_id_ds_nota=1885212127 i get: ASCII(SUBSTR(DS_ESITO_MEF,1,1)     SUBSTR

  • Best approach to reduce size of 400GB PO (yikes!)

    Hi fellow Groupwise gurus, Am taking a position with a new company that has just informed me they have a 400GB PO message store. I informed them that, uh yea, this is a bit of a problem. So, I am starting to consider best way(s) to deal with this. Th