Itemrenderer access to parent app variables

I have a custom datagrid component with an itemrenderer and I
don't know how to get the itemrenderer to access variables in the
parent applications. Any help would be much appreciated.

You need to make sure of 2 things:
1) The variable you're trying to access is public
2) You refer to it as parentDocument.variableName
If your item renderer is for some kind of collection based
element, like a list or a combobox, and you're trying to access the
data for the current row, you can access it via the "data"
keyword.

Similar Messages

  • How to access the parent class variable or object in java

    Hi Gurus,
    I encounter an issue when try to refer to parent class variable or object instance in java.
    The issue is when the child class reside in different location from the parent class as shown below.
    - ClassA and ClassB are reside in xxx.oracle.apps.inv.mo.server;
    - Derived is reside in xxx.oracle.apps.inv.mo.server.test;
    Let say ClassA and ClassB are the base / seeded class and can not be modified. How can i refer to the variable or object instance of ClassA and ClassB inside Derived class.
    package xxx.oracle.apps.inv.mo.server;
    public class ClassA {
        public int i=10;
    package xxx.oracle.apps.inv.mo.server;
    public class ClassB extends ClassA{
        int i=20;   
    package xxx.oracle.apps.inv.mo.server.test;
    import xxx.oracle.apps.inv.mo.server.ClassA;
    import xxx.oracle.apps.inv.mo.server.ClassB;
    public class Derived extends ClassB {
        int i=30;
        public Derived() {
           System.out.println(this.i);                  // this will print 30
           System.out.println(((ClassB)this).i);  // error, but this will print 20 if Derived class located in the same location as ClassB
           System.out.println(((ClassA)this).i);  // error, but this will print 20 if Derived class located in the same location as ClassA
        public static void main(String[] args) { 
            Derived d = new Derived(); 
    Many thanks in advance,
    Fendy

    Hi ,
    You cannot  access the controller attribute instead create an instance of the controller class and access the attribute in the set method
    OR create a static method X in the controller class and store the value in that method. and you can access the attribute by 
    Call method class=>X
    OR if the attribute is static you can access by classname=>attribute.
    Regards,
    Gangadhar.S
    Edited by: gangadhar rao on Mar 10, 2011 6:56 AM

  • Not able to access parent instance variable in outside of methods in child

    Hi,
    I am not getting why i am not able to access parent class instance variable outside the child class intance methods.
    class Parent
         int a;
    class Child extends Parent
         a = 1; // Here i am getting a compilation error that Syntax error on token "a", VariableDeclaratorId expected after this token
         void someMethod()
              a = 1;  // Here i am not getting any compilation error while accessing parent class variable
    }Can any one please let me know exact reason for this and what is the error talks about?
    Thanks,
    Uday
    Edited by: Udaya Shankara Gandhi on Jun 13, 2012 3:30 AM

    You can only put assignments or expressions inside methods, constructors or class initializors, or when declaring a variable.
    It has nothing to the with Child extending Parent.
    class Parent {
        int a = 1;
        { a = 1; }
        public Parent() {
            a = 1;
       public void method() {
           a = 1;
    }

  • Talking to Parent app is not possable

    All I want to do is communicate by having my child app talk
    to my parent application. I cannot get this to work, and getting
    extremely frustrated with this. I cannot find good examples on this
    scenerio. Documentation does not seem to provide the details, or I
    just don't understand everything within the docs. I have my parent
    application talking to my child application, but not the other way
    around.
    My Main App Has
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script >
    <![CDATA[
    import mx.managers.SystemManager;
    private var loadedSM:SystemManager;
    private function allowInteraction() : void {
    loadedSM = SystemManager(swfChild.content);
    private function sendData():void {
    ChildApp(loadedSM.application).fromMain.text = toChild.text;
    ]]>
    </mx:Script>
    <mx:SWFLoader id="swfChild" source="ChildApp.swf"
    init="allowInteraction()" y="60" width="261"/>
    <mx:Canvas width="278" height="150" id="owner">
    <mx:TextInput id="toChild" width="200" height="20"/>
    <mx:Button click="sendData();" label="Submit" y="22"
    />
    </mx:Canvas>
    </mx:Application>
    My Child App Has
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    public function toParent(): void {
    //MainApp(owner).toChild.text = "123";
    parentApplication(owner).toChild.text = "123";
    //parentApplication.valueOf(toChild.text) = "123"
    //local2(owner).fromChild.text = toMain.text;
    ]]>
    </mx:Script>
    <mx:Canvas width="204" height="98" x="10" y="10">
    <mx:TextArea id="fromMain" width="200" />
    <mx:TextInput id="toMain" width="200" y="32" />
    <mx:Button label="submit" x="10" y="62"
    click="toParent();" />
    </mx:Canvas>
    </mx:Application>
    All I want to do is have each app communicate with each
    other? Why is that so hard? What is it that I am missing?
    Thanks

    Hmm, it is saying that I cannot access the parent item. Is
    there something that I need to declare in the parent or child
    applications?
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at ChildApp/toParent()
    at ChildApp/___Button1_click()

  • Hi All, Can I access Adobe reader internal variables in my pdf? for example location, file size, creator etc.

    Hi All, Can I access Adobe reader internal variables in my pdf? for example location, file size, creator etc. I want to create a hyperlink in my pdf $Location/another.pdf?

    Thanks Gilad.
    let me rephrase my requirement. I have a group of pdf files where one pdf has hyperlinks to the other pdfs
    parent.pdf
    -- child1.pdf
    -- child2.pdf
    when I click on the child hyperlink I want the child.pdf to be displayed in another window/reader
    If I have the hyperlink as file:./child1.pdf it does not work. It needs a complete path.
    So when I create this file in MSWord first, Can I artificially create a placeholder for the directory and append the child.pdf?
    suppose the properties say Location = /tmp/pdfs/
    can I have in the hyperlink something like file:/$Location/child.pdf and when reader is used it substitutes the url
    so I get file:/tmp/pdfs/child.pdf
    Hope I explained this.
    thanks
    -Francis
    OK, let me have a very simple requirement. Can I create a pdf and when I open it
    there is one line that says - This File is in xxx directory.
    where xxx is the directory name where the file is. If I have the file in /tmp then it should say This file is in /tmp directory
    and if I copy it to /other then open it, it should say This file is in /other directory.

  • ORA-20001: Unauthorized access (security group package variable not set).

    I'm creating an app that uses APEX authentication and features self-registration (working) and forgot password (not working) forms.
    My forgot password is public (requires no authentication). The user provides username and secret answer, which are validated, then provides the new password. I attempt to use htmldb_util.reset_pw to reset the user's password, but it's not working.
    I have a process on the new password page calling a PL/SQL anonymous block that looks like this (see below), where P16_ITEM1 = username and P18_ITEM1 = new password.
    BEGIN
    apex_040000.htmldb_util.reset_pw( V('P16_ITEM1'), V('P18_ITEM1') );
    END;
    I also don't know how to send accurate success/failure messages from such PL/SQL block back to APEX, but that's a separate issue I guess.
    Anyway, when testing via SQL Developer as the user with APEX_ADMINISTRATOR_ROLE, I get the following error:
    ORA-20001: Unauthorized access (security group package variable not set).
    ORA-06512: at "APEX_040000.WWV_FLOW_FND_USER_API", line 22
    ORA-06512: at "APEX_040000.WWV_FLOW_FND_USER_API", line 1220
    ORA-06512: at "APEX_040000.HTMLDB_UTIL", line 1253
    ORA-06512: at line 8
    I've searched previous threads and tried different suggestions with no luck.
    I'm on Oracle DB XE 11g and APEX 4.x.
    Any help will be appreciated. Thanks,
    Alex.

    Anyway, when testing via SQL Developer as the user with APEX_ADMINISTRATOR_ROLE, I get the following error:
    ORA-20001: Unauthorized access (security group package variable not set).When running code outside Apex that depends on the Apex security group being set, run the following before your own code:
    wwv_flow_api.set_security_group_id(apex_util.find_security_group_id('YOUR_SCHEMA_NAME'));Google "wwv_flow_api.set_security_group_id" for more details, such as this blog post:
    http://www.easyapex.com/index.php?p=502
    - Morten
    http://ora-00001.blogspot.com

  • Running 10.6.8, I can't access the Mac App store. WHy not?

    Running 10.6.8, I can't access the Mac App store. WHy not?
    Thanks,
    Ty Ford

    Apparently, 10.6.8 can't access the app store. How weird is that?
    When I get to the front door and try to get in, I get this..the app quits.
    Process: App Store [20498]
    Path: /Applications/App Store.app/Contents/MacOS/App Store
    Identifier: com.apple.appstore
    Version: 1.0.2 (63.1)
    Build Info: Firenze-630100~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [95]
    Date/Time: 2012-06-27 10:13:00.711 -0400
    OS Version: Mac OS X 10.6.8 (10K549)
    Report Version: 6
    Interval Since Last Report: 3924860 sec
    Crashes Since Last Report: 8
    Per-App Interval Since Last Report: 12 sec
    Per-App Crashes Since Last Report: 8
    Anonymous UUID: 420C741C-8E1D-477C-8A9B-BBCFB0D59A0F
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSImageCacheException', reason: 'Cannot lock focus on image , because it is size zero.'
    *** Call stack at first throw:
    0 CoreFoundation 0x00007fff82904784 __exceptionPreprocess + 180
    1 libobjc.A.dylib 0x00007fff894f8f03 objc_exception_throw + 45
    2 CoreFoundation 0x00007fff829045a7 +[NSException raise:format:arguments:] + 103
    3 CoreFoundation 0x00007fff82904534 +[NSException raise:format:] + 148
    4 AppKit 0x00007fff8531b9cc -[NSImage _lockFocusOnRepresentation:rect:context:hints:flipped:] + 319
    5 AppKit 0x00007fff8531b883 __-[NSImage lockFocusWithRect:context:hints:flipped:]_block_invoke_1 + 100
    6 AppKit 0x00007fff852afc1d -[NSImage _usingBestRepresentationForRect:context:hints:body:] + 178
    7 AppKit 0x00007fff8531b809 -[NSImage lockFocusWithRect:context:hints:flipped:] + 289
    8 AppKit 0x00007fff8531b6d3 -[NSImage lockFocusFlipped:] + 142
    9 App Store 0x000000010001c840 0x0 + 4295084096
    10 AppKit 0x00007fff852a4444 -[NSControl drawRect:] + 405
    11 AppKit 0x00007fff8529ccc5 -[NSView _drawRect:clip:] + 3390
    12 AppKit 0x00007fff8529b938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    13 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    14 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    15 AppKit 0x00007fff852c0c5a -[NSToolbarItemViewer _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 301
    16 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    17 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    18 AppKit 0x00007fff8529bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    19 AppKit 0x00007fff8529a00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    20 AppKit 0x00007fff85299b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    21 AppKit 0x00007fff852963de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    22 AppKit 0x00007fff8520fc0e -[NSView displayIfNeeded] + 969
    23 AppKit 0x00007fff851d7c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    24 AppKit 0x00007fff851d77d2 -[NSWindow orderWindow:relativeTo:] + 94
    25 AppKit 0x00007fff851a3974 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1726
    26 AppKit 0x00007fff851a1a91 loadNib + 226
    27 AppKit 0x00007fff851a11a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    28 AppKit 0x00007fff851a0dd9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    29 AppKit 0x00007fff8519e35b NSApplicationMain + 279
    30 App Store 0x00000001000013f4 0x0 + 4294972404
    31 ??? 0x0000000000000002 0x0 + 2
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff8882c0b6 __kill + 10
    1 libSystem.B.dylib 0x00007fff888cc9f6 abort + 83
    2 libstdc++.6.dylib 0x00007fff83f0a5d2 __tcf_0 + 0
    3 libobjc.A.dylib 0x00007fff894fcb39 _objc_terminate + 100
    4 libstdc++.6.dylib 0x00007fff83f08ae1 __cxxabiv1::__terminate(void (*)()) + 11
    5 libstdc++.6.dylib 0x00007fff83f08b16 __cxxabiv1::__unexpected(void (*)()) + 0
    6 libstdc++.6.dylib 0x00007fff83f08bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    7 libobjc.A.dylib 0x00007fff894f8fa2 object_getIvar + 0
    8 com.apple.CoreFoundation 0x00007fff8295c969 -[NSException raise] + 9
    9 com.apple.AppKit 0x00007fff85296924 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4033
    10 com.apple.AppKit 0x00007fff8520fc0e -[NSView displayIfNeeded] + 969
    11 com.apple.AppKit 0x00007fff851d7c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    12 com.apple.AppKit 0x00007fff851d77d2 -[NSWindow orderWindow:relativeTo:] + 94
    13 com.apple.AppKit 0x00007fff851a3974 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1726
    14 com.apple.AppKit 0x00007fff851a1a91 loadNib + 226
    15 com.apple.AppKit 0x00007fff851a11a4 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 763
    16 com.apple.AppKit 0x00007fff851a0dd9 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 326
    17 com.apple.AppKit 0x00007fff8519e35b NSApplicationMain + 279
    18 com.apple.appstore 0x00000001000013f4 0x100000000 + 5108
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff887f6c0a kevent + 10
    1 libSystem.B.dylib 0x00007fff887f8add _dispatch_mgr_invoke + 154
    2 libSystem.B.dylib 0x00007fff887f87b4 _dispatch_queue_invoke + 185
    3 libSystem.B.dylib 0x00007fff887f82de _dispatch_worker_thread2 + 252
    4 libSystem.B.dylib 0x00007fff887f7c08 _pthread_wqthread + 353
    5 libSystem.B.dylib 0x00007fff887f7aa5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff887f7a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff887f7e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff887f7aa5 start_wqthread + 13
    Thread 3: WebCore: LocalStorage
    0 libSystem.B.dylib 0x00007fff88818a6a __semwait_signal + 10
    1 libSystem.B.dylib 0x00007fff8881c881 _pthread_cond_wait + 1286
    2 com.apple.JavaScriptCore 0x00007fff80fbf3b0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.WebCore 0x00007fff862a9a91 WebCore::LocalStorageThread::threadEntryPoint() + 177
    4 libSystem.B.dylib 0x00007fff88816fd6 _pthread_start + 331
    5 libSystem.B.dylib 0x00007fff88816e89 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff887ddd7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff887de3ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff8289f902 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff8289ed8f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff808c914f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff8084a114 __NSThread__main__ + 1429
    6 libSystem.B.dylib 0x00007fff88816fd6 _pthread_start + 331
    7 libSystem.B.dylib 0x00007fff88816e89 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff887f7a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff887f7e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff887f7aa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x00007fff710e32f8 rcx: 0x00007fff5fbff2e8 rdx: 0x0000000000000000
    rdi: 0x0000000000005012 rsi: 0x0000000000000006 rbp: 0x00007fff5fbff300 rsp: 0x00007fff5fbff2e8
    r8: 0x00007fff710e6a60 r9: 0x0000000000000063 r10: 0x00007fff888280fa r11: 0x0000000000000206
    r12: 0x00007fff82989b09 r13: 0x0000000000000000 r14: 0x00000001003468f0 r15: 0x00007fff70a31190
    rip: 0x00007fff8882c0b6 rfl: 0x0000000000000206 cr2: 0x00007fff70727fd0
    Binary Images:
    0x100000000 - 0x100044fff com.apple.appstore 1.0.2 (63.1) /Applications/App Store.app/Contents/MacOS/App Store
    0x100065000 - 0x10018eff7 com.apple.CommerceKit 1.0 (60.8) /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) /usr/lib/dyld
    0x7fff80003000 - 0x7fff80446fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff80478000 - 0x7fff80518fff com.apple.LaunchServices 362.3 (362.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff80839000 - 0x7fff80abbfff com.apple.Foundation 6.6.8 (751.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff80c1d000 - 0x7fff80c31fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff80c32000 - 0x7fff80c43ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) /usr/lib/libz.1.dylib
    0x7fff80cbb000 - 0x7fff80cf2ff7 com.apple.DiskManagement 3.6 (358) /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff80f13000 - 0x7fff80f7dfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff80fb5000 - 0x7fff812d8fe7 com.apple.JavaScriptCore 6534.57 (6534.57.3) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff812d9000 - 0x7fff812ddff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff812de000 - 0x7fff8149dfff com.apple.ImageIO.framework 3.0.5 (3.0.5) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff8149e000 - 0x7fff814f1ff7 com.apple.HIServices 1.8.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff81580000 - 0x7fff81680fef com.apple.DiskImagesFramework 10.6.8 (289.1) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff81681000 - 0x7fff816acff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
    0x7fff816ad000 - 0x7fff816f6fef libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff816f7000 - 0x7fff81775ff7 com.apple.CoreText 151.12 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff81776000 - 0x7fff8177dfff com.apple.OpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8177e000 - 0x7fff81780fff com.apple.print.framework.Print 6.1 (237.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff819c4000 - 0x7fff819d1fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff819d2000 - 0x7fff819d3ff7 libScreenReader.dylib ??? (???) /usr/lib/libScreenReader.dylib
    0x7fff819d4000 - 0x7fff819d4ff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff819d5000 - 0x7fff81a8efff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) /usr/lib/libsqlite3.dylib
    0x7fff81b11000 - 0x7fff81b16fff libGIF.dylib ??? (???) <3FD1157B-C002-5268-DEF4-70DDC40E6EDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff81b17000 - 0x7fff81b52fff com.apple.AE 496.5 (496.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff81b53000 - 0x7fff81b54ff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff81b55000 - 0x7fff81b55ff7 com.apple.Carbon 150 (152) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff81b56000 - 0x7fff81b90fff com.apple.bom 10.0 (164) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff81ba7000 - 0x7fff81be1fff libcups.2.dylib 2.8.0 (compatibility 2.0.0) /usr/lib/libcups.2.dylib
    0x7fff81be2000 - 0x7fff81c24fe7 com.apple.MediaKit 10.5.1 (490) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff81cf8000 - 0x7fff81dddfef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff81e5b000 - 0x7fff81e8afff com.apple.framework.Admin 4.6 (4.6) <376BC531-CE46-A147-9AF5-4D8F8E1522C5> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x7fff81e97000 - 0x7fff81eb0fff com.apple.CFOpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff81eb1000 - 0x7fff81eb1ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff81eee000 - 0x7fff81f0ffff libresolv.9.dylib 41.1.0 (compatibility 1.0.0) /usr/lib/libresolv.9.dylib
    0x7fff81f1b000 - 0x7fff81f2fff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff81f31000 - 0x7fff81f54fff com.apple.opencl 12.3.6 (12.3.6) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff81f71000 - 0x7fff8277bfe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8277c000 - 0x7fff8277fff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff82780000 - 0x7fff8281afff com.apple.ApplicationServices.ATS 275.19 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8281b000 - 0x7fff8282afef com.apple.opengl 1.6.14 (1.6.14) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff82853000 - 0x7fff829cafe7 com.apple.CoreFoundation 6.6.6 (550.44) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff829cb000 - 0x7fff82a0cfff com.apple.SystemConfiguration 1.10.8 (1.10.2) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff82a0d000 - 0x7fff82c96ff7 com.apple.security 6.1.2 (55002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff82fcf000 - 0x7fff836cbff7 com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83722000 - 0x7fff83722ff7 com.apple.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff83753000 - 0x7fff83810fff com.apple.CoreServices.OSServices 359.2 (359.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff83874000 - 0x7fff83924fff edu.mit.Kerberos 6.5.11 (6.5.11) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff83925000 - 0x7fff83946fe7 libPng.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff83947000 - 0x7fff83953fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) /usr/lib/libbz2.1.0.dylib
    0x7fff83954000 - 0x7fff83962ff7 libkxld.dylib ??? (???) /usr/lib/system/libkxld.dylib
    0x7fff83963000 - 0x7fff839b8ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff839b9000 - 0x7fff839c8fff libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
    0x7fff83c03000 - 0x7fff83c52ff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff83c53000 - 0x7fff83c5eff7 com.apple.bsd.ServiceManagement 1.3 (1.3) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff83c5f000 - 0x7fff83d9dfff com.apple.CoreData 102.1 (251) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff83d9e000 - 0x7fff83ebdfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) /usr/lib/libcrypto.0.9.8.dylib
    0x7fff83ebe000 - 0x7fff83f3bfef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff83f3c000 - 0x7fff84019fff com.apple.vImage 4.1 (4.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff84076000 - 0x7fff8408cfe7 com.apple.MultitouchSupport.framework 207.11 (207.11) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8408d000 - 0x7fff84090ff7 com.apple.securityhi 4.0 (36638) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff840ac000 - 0x7fff841e1fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff841e2000 - 0x7fff84383fe7 com.apple.WebKit 6534.57 (6534.57.2) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff843ca000 - 0x7fff84414ff7 com.apple.Metadata 10.6.3 (507.15) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff844a1000 - 0x7fff847d5fef com.apple.CoreServices.CarbonCore 861.39 (861.39) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff847d6000 - 0x7fff84822fff libauto.dylib ??? (???) /usr/lib/libauto.dylib
    0x7fff84823000 - 0x7fff84824ff7 com.apple.TrustEvaluationAgent 1.1 (1) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff84825000 - 0x7fff8482afff libGFXShared.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff84bb1000 - 0x7fff84cc7ff7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
    0x7fff84cd6000 - 0x7fff84d12fe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) /usr/lib/libcurl.4.dylib
    0x7fff84d86000 - 0x7fff84dc3ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) /usr/lib/libssl.0.9.8.dylib
    0x7fff84dc4000 - 0x7fff84e05fef com.apple.QD 3.36 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff84e06000 - 0x7fff84ed2fff com.apple.installframework 596 (596.1) /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    0x7fff84ef8000 - 0x7fff84f40ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84f41000 - 0x7fff84f69fff com.apple.DictionaryServices 1.1.2 (1.1.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84f6a000 - 0x7fff84fcafe7 com.apple.framework.IOKit 2.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff85034000 - 0x7fff8507dff7 com.apple.securityinterface 4.0.1 (40418.0.1) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8507e000 - 0x7fff8509eff7 com.apple.DirectoryService.Framework 3.6 (621.14) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8509f000 - 0x7fff85161fe7 libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8519c000 - 0x7fff85b96ff7 com.apple.AppKit 6.6.8 (1038.36) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff85b97000 - 0x7fff85c4cfe7 com.apple.ink.framework 1.3.3 (107) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff85eb7000 - 0x7fff85ec6fff com.apple.NetFS 3.2.2 (3.2.2) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff86082000 - 0x7fff8615aff7 com.apple.DiscRecording 5.0.9 (5090.4.2) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff861d9000 - 0x7fff861dfff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff861e0000 - 0x7fff861fbff7 com.apple.openscripting 1.3.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff861fc000 - 0x7fff86288fef SecurityFoundation ??? (???) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff86289000 - 0x7fff872f3fef com.apple.WebCore 6534.57 (6534.57.2) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff872f4000 - 0x7fff872ffff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff87319000 - 0x7fff8731bfff libRadiance.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8786e000 - 0x7fff87880fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) /usr/lib/libsasl2.2.dylib
    0x7fff8798c000 - 0x7fff879e2fff libTIFF.dylib ??? (???) <31FA0318-105B-9E11-B4D4-246BFD5B18E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff879e3000 - 0x7fff87a20fff com.apple.LDAPFramework 2.0 (120.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff87a21000 - 0x7fff87aa6ff7 com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff87b0d000 - 0x7fff87b0dff7 com.apple.ApplicationServices 38 (38) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff87b0e000 - 0x7fff87b13ff7 com.apple.CommonPanels 1.2.4 (91) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff87b14000 - 0x7fff87e12fff com.apple.HIToolbox 1.6.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff87e96000 - 0x7fff87ed4fe7 libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff87f15000 - 0x7fff883b2fff com.apple.RawCamera.bundle 3.8.0 (577) <38481531-657E-DFFA-1EF4-ADFCA15DAC49> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff88403000 - 0x7fff88406fff com.apple.help 1.3.2 (41.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff88407000 - 0x7fff884dbfe7 com.apple.CFNetwork 454.12.4 (454.12.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff884dc000 - 0x7fff8855bfe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff88578000 - 0x7fff88583fff com.apple.CrashReporterSupport 10.6.7 (258) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff88783000 - 0x7fff887dcfe7 com.apple.PackageKit 1.1.4 (93) /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff887dd000 - 0x7fff8899efef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) /usr/lib/libSystem.B.dylib
    0x7fff8899f000 - 0x7fff889a5ff7 com.apple.DiskArbitration 2.3 (2.3) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff889a6000 - 0x7fff889a7fff liblangid.dylib ??? (???) /usr/lib/liblangid.dylib
    0x7fff889a8000 - 0x7fff889bdff7 com.apple.LangAnalysis 1.6.6 (1.6.6) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff889ca000 - 0x7fff889f1ff7 libJPEG.dylib ??? (???) <32EDAB18-08ED-B31A-D2BD-12EFFE60D83C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff88b1a000 - 0x7fff88b61ff7 com.apple.coreui 2 (114) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff88b64000 - 0x7fff88b95fff libGLImage.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff88b96000 - 0x7fff88badfff com.apple.ImageCapture 6.1 (6.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff88bae000 - 0x7fff88baeff7 com.apple.Cocoa 6.6 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff88c21000 - 0x7fff88c64ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff88c65000 - 0x7fff88d26fef com.apple.ColorSync 4.6.8 (4.6.8) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff88d57000 - 0x7fff88d5bff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) /usr/lib/system/libmathCommon.A.dylib
    0x7fff88d5c000 - 0x7fff88f1afff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) /usr/lib/libicucore.A.dylib
    0x7fff88f1b000 - 0x7fff88f28ff7 com.apple.AppleFSCompression 24.4 (1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff88f31000 - 0x7fff88f47fef libbsm.0.dylib ??? (???) /usr/lib/libbsm.0.dylib
    0x7fff88f48000 - 0x7fff88f6dff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff89151000 - 0x7fff894eefe7 com.apple.QuartzCore 1.6.3 (227.37) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff894ef000 - 0x7fff895a5ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) /usr/lib/libobjc.A.dylib
    0x7fff895a6000 - 0x7fff895a6ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff895a7000 - 0x7fff896c1fff libGLProgrammability.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff89736000 - 0x7fff89769ff7 libTrueTypeScaler.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff897b4000 - 0x7fff897baff7 com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8a783000 - 0x7fff8a813fff com.apple.SearchKit 1.3.0 (1.3.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Model: MacBook3,1, BootROM MB31.008E.B02, 2 processors, Intel Core 2 Duo, 2.2 GHz, 2 GB, SMC 1.24f3
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2120BH, 111.79 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0229, 0x5d200000 / 3
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000 / 2

  • Help! I have a new iPhone 5s. My husband just lost his 4s, so I want to give him mine. Want to use same Apple ID so we both have access to itunes/apps purchases. Want to separate contacts, messages, mail, etc. I cannot change iCloud address.

    Help! I have a new iPhone 5s. My husband just lost his 4s, so I want to give him my 4s. We want to use same Apple ID so we both have access to itunes/apps purchases. Want to separate contacts, messages, mail, etc. I cannot change iCloud address on 4s iPhone. Also, when I tried to change iMessage I got a message that if I deleted my id (which seemed to be the only way to get my husband's I'd there), I would not be able to receive iMessages on any device.
    Would someone kindly tell me how to set up th 4s for my husband so that we can keep our info separate? It would be most appreciated! Thanks!!

    Hey Fagen!
    You will want to see the following article for guidance on achieving the result you wish to achieve:
    What to do before selling or giving away your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/ht5661
    I would just follow the instructions from this article to give your unused 4s to your spouse. Since you have already started using your 5s, you will still be receiving iMessages on that phone and will have no need to receive them on a device that has been replaced. Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

  • Can't Edit Data in Access 2013 Web App

    I have an Office 365 P1 account that I have been using to create apps in Access 2010. I tried Access 2013. But when I launch an app, it loads in my Office 365, but editing data is not enabled (the Add and Edit buttons are displayed, but not enabled).
    I have tried creating a new custom web app with one simple table and a view, as well as creating one using a Microsoft pre-built template, and simply creating the app and launching it. In both cases, the app displays, but I cannot add or edit data.
    Is there something with my Office 365 account that is limiting my ability to work with Access 2013 web apps?
    Thank you!

    Hi KrisMarshall7,
    In regarding of the issue, please provide us more information to assist you better.
    What the file format is your Access 2007 file? MDB or ACCDB?
    Where do you want to add the columns? Table, form or query?
    As far as I know,
    the limitation of columns in a table is 250. Thus, I suppose that the database had some hidden columns. Please try to check it. Steps:
    Right-click any field title, then select Unhide Fields. A dialog box will appear. Click the check boxes of any fields you would like to be visible again, then click Close.
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Help!Can't access iCloud (pics apps) even with correct password. Won't download my stored info on my new phone

    Help!Can't access iCloud (pics apps) even with correct password. Won't download my stored info on my new phone

    That happens because photo stream photos only remain in iCloud for 30 days, even though your last 1000 photo stream photos remain on your devices until deleted.  When you enabled photo stream on your iPod 4, you only received photo stream photos from the last 30 days as older photos are no longer in iCloud.  If you want to stream these older photos to your new iPod, you will have to create a shared photo stream on your old one that contains these photos (requires iOS 6 or higher) and invite yourself as a subscriber, as explained here: http://help.apple.com/icloud/#/mmc0cd7e99.

  • How do you access updates to apps from the App store after changing to a new ID because the password on the old ID was changed and you don't know what it is now?

    How do you access updates to apps from the App store after changing to a new ID because the password on the old ID was changed by the former husband and you don't know what it is now?  And you set up your own new ID and account but can NOT access the updates, from the App store for the many apps that you already have, because they require that you sign in with that former now inaccessible ID and account and password?  Call it a problem of modern times and changing relationships, if you want to be charitable.

    So I guess it will only be new apps that I download that are allowed to give me their updates while 13 updates wait for me on an ID I can no longer access.
    Yes...  sorry.
    In the future, if need be, you can re download your purchases for free  >  Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Good rule of thumb is to back up your purchases regardless  >  Mac App Store: Backing up your app purchases

  • I have a question. For the past week I have not been able to access my iTunes app it always kicks me out. I've turned it off and on and still nothing. I was wondering how can I get it to work or what should I do. Thank you

    I have a question. For the past week I have not been able to access my iTunes app it always kicks me out. I've turned it off and on and still nothing. I was wondering how can I get it to work or what should I do. Thank you

    You need a computer with iTunes and an internet connection
    Try:
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                                                              

  • My husband and I have the same Apple ID number so that we can both have access to an app we use.  I don't like the fact that our calendar, notes and email is also shared.  Is there a way to separate the things we want separate yet keep access to the cloud

    My husband and I share the same Apple ID number because we both need access to an app that has a subscription and would be expensive for us to do separately.  We don't like that this shared ID number means we also share our calendar, note pages, email, etc....Is there a way to separate the things we don't want to share?

    That would be my suggestion.  Just keep using the common one for purchases in the stores.  Then each get another AppleID using a free gmail, AOL, hotmail, MS Live or whatever email account.
    Delete your current iCloud account and login with the new AppleID, and logout of Messaging and then backin with the new AppleID.  Now you have a shared iTunes/App store account, but completely separate, independent iCloud and iMessage accounts.
    You can still share calendars if you wish to, even across separate accounts - http://support.apple.com/kb/ph2690

  • I have two iPads and giving one to my grandson. Using my Apple id for both, can we use different passwords to access our "own" apps. Also I don't want the downloaded App to go to both iPads. Been looking for hours for an explanation! Thanks for any help.

    I have two iPads and giving 1st gen. to my grandson. Using my Apple idI for both... can we use different passwords to access our "own" apps. Also I don't want the downloaded App to go to both iPads. Been looking for hours for an explanation! Thanks for any help.

    Look at this link.
    Giving your former iPad to a spouse or family member: the quick guide
    http://www.tuaw.com/2012/03/17/giving-your-former-ipad-to-a-spouse-or-family-mem ber-the-quick/
    How to Share a Family iPad
    http://www.macworld.com/article/1163347/how_to_share_a_family_ipad.html
    Using iPhone, iPad, or iPod with multiple computers
    http://support.apple.com/kb/ht1202
    iOS & iCloud Tips: Sharing an Apple ID With Your Family
    http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/
    How To Best Use and Share Apple IDs across iPhones, iPads and iPods
    http://www.nerdsonsite.com/blog/2012/06/07/help-im-appleid-confused/
     Cheers, Tom

  • How can I access my parents iCloud account remotely to assist with photo management and printing?

    How can I access my parents iCloud account remotely to assist with photo management and printing?

    I tried that without any luck. I was hoping I could get Apple to reset it for me or delete the account so I could recreate it or at least tell me what is listed as my birth date, the security question answer.

Maybe you are looking for

  • A little help with rutorrent

    Hi comrades, I use rtorrent in terminal without problems but recently I got interested in rutorrent. I've been following the rtorrent wiki and rutorrent wiki to get to this point. First of all rtorrent is working fine in terminal, but with rutorrent

  • Can't drag files. Help!

    Hoping someone can help me. I came the other day to find that none of the files on our iMac G5 could be dragged. Stuff on the desktop couldn't be moved, re-arranged, etc. Even in iTunes, files couldn't be dragged to new playlists. I'm not sure what h

  • External Antenna for WRT300N

    I have the WRT300N Router and want to install an external antenna to increase my range. I cannot find a method of unscrewing one of the three existing antennas so I can hook up the extending cable. Do I have to break open the case and hardwire it? Wh

  • How to use print functionality in Java Studio Creator

    Hi, I am working on one JSF project using Java Studio Creator. I have requirement where I have one table and print button. By clicking the print button, I want the contents of table to be printed. I have configured all the required properties of this

  • How To find Changes in Excise Group Configurations??

    Dear All, Can you please help me how to Find the Changes done at the Configuration level at Excise Groups(Log-General>>Tax on Goods Movement>>India>>Basic Settings>>Excise Groups) I need to find the user involved in Changing the Field""Excise Invoice